Commit graph

9744 commits

Author SHA1 Message Date
ansuz
525d9fc3dc don't warn for ENOENT errors when checking account information 2022-08-23 16:10:11 +05:30
ansuz
183fae6948 Merge branch 'soon' into 5.1-candidate 2022-08-22 15:53:18 +05:30
ansuz
db5cb8df3d guard against type errors when admin db queries fail 2022-08-22 15:51:46 +05:30
Weblate
b3efbe4bd3 Translated using Weblate (German)
Currently translated at 100.0% (1439 of 1439 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/de/
2022-08-19 22:42:57 +02:00
Weblate
c6f3bd9a31 Translated using Weblate (Italian)
Currently translated at 75.2% (1083 of 1439 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/it/

Translated using Weblate (Italian)

Currently translated at 68.3% (983 of 1439 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/it/
2022-08-19 22:42:57 +02:00
Maxime Cesson
06a8e7c866 Improve transition from outer placeholder to inner one 2022-08-19 16:39:20 +02:00
yflory
fa43731b18 Fix missing data in spreadsheets #950 2022-08-18 11:51:03 +02:00
yflory
1227fceba5 Merge remote-tracking branch 'origin/db-insight' into 5.1-candidate 2022-08-17 11:17:18 +02:00
yflory
9b33202cbe Merge branch 'placeholder-slow-connection' into staging 2022-08-17 11:15:16 +02:00
yflory
d5272874fb Add version string to placeholder .js and .css files 2022-08-17 11:14:51 +02:00
ansuz
6f81f68498 include block public key in login-block info table 2022-08-12 13:17:06 +05:30
ansuz
f47f0db136 correct overly strict blockLocation validation 2022-08-12 13:14:18 +05:30
ansuz
31f61c7f1d refactor admin database tab 2022-08-11 18:30:19 +05:30
ansuz
60e58e8f7a first version of admin 'database' tab 2022-08-11 11:53:03 +05:30
ansuz
673420e3fe add a tooltip to the 'copy link' button on admin support tickets 2022-08-10 12:06:40 +05:30
ansuz
d94a110105 accept channel and file ids in admin archival form 2022-08-09 16:29:10 +05:30
Weblate
e87410ce7e Translated using Weblate (English)
Currently translated at 100.0% (1439 of 1439 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/en/
2022-08-05 12:34:47 +02:00
Weblate
3c3f8cd30c Translated using Weblate (French)
Currently translated at 100.0% (1439 of 1439 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/fr/
2022-08-05 12:34:46 +02:00
Maxime Cesson
0d75a2a92a Load pre-loading script and stylesheet before every others 2022-08-02 16:19:38 +02:00
ansuz
6942cdcf4b display correct count of support tickets per category 2022-08-02 17:01:47 +05:30
Maxime Cesson
38719347c8 Add AsciiDoc to highlighted languages #264 2022-08-01 17:04:16 +02:00
ansuz
82c3ebe696 treat relative URLs for terms, privacy, etc. as relative to the main domain in the 'about cryptpad' menu 2022-08-01 15:42:32 +05:30
ansuz
dd5f4a2e7b link from checkup page directly to instance policy configuration docs 2022-07-26 16:29:08 +05:30
ansuz
c0b53884e7 Merge branch 'placeholder-slow-connection' into main 2022-07-26 16:16:36 +05:30
Weblate
8ae3343529 Translated using Weblate (Portuguese (Portugal))
Currently translated at 95.2% (1370 of 1439 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/pt_PT/
2022-07-25 12:36:12 +02:00
ansuz
faf682131f Merge branch 'soon' into main 2022-07-20 13:53:56 +05:30
Weblate
a99c2e4553 Translated using Weblate (Portuguese (Portugal))
Currently translated at 95.2% (1371 of 1439 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/pt_PT/
2022-07-20 10:22:28 +02:00
Weblate
f972e96779 Translated using Weblate (Portuguese (Portugal))
Currently translated at 95.4% (1374 of 1439 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/pt_PT/
2022-07-14 18:10:56 +02:00
ansuz
96a12d12a9 guard against possible type error, lint compliance 2022-07-13 19:28:59 +05:30
ansuz
e4e1ba75db Merge remote-tracking branch 'origin/make-spellcheck-default' into main 2022-07-13 17:39:43 +05:30
ansuz
05f8a9c02b Merge remote-tracking branch 'origin/fix-kanban-item-title-edit' into main 2022-07-13 17:39:38 +05:30
Maxime Cesson
24ccb6d9e7 Apply placeholder to all relevant applications on a slow connection #865
Made with the following command from the cryptpad/ root directory:

$ patternStatic='(<link href=\"\/customize\/src\/outer\.css.*$|<script async data-bootload=\"\/customize\/template\.js\".*$)';
$ pattern2='<style>$';
$ js='<script src=\"\/customize\/pre-loading\.js\"><\/script>';
$ css='<link href=\"\/customize\/src\/pre-loading\.css\" rel=\"stylesheet\" type=\"text\/css\">';
$ find . -name 'index.html' | grep -v -E '(onlyoffice|bower_components|node_modules)' | while read x; \
do if [ `grep -cE "$pattern" $x` -gt 0 ]; then sed -E "s/($pattern)/$js\n    \1\n    $css/" $x > tmp; \
mv tmp $x; y=`echo $x | sed 's/index\.html/inner\.html/'`; if [ -f "$y" ]; then \
sed -E "s/($pattern2)/$js\n    $css\n    \1/" $y > tmp; mv tmp $y; fi; fi; done
2022-07-13 13:21:38 +02:00
Maxime Cesson
80fad70404 Prepare to apply placeholder to all needed apps 2022-07-13 12:46:04 +02:00
Maxime Cesson
edaa8e1d9e Redo placeholder before loading screens for inner and outer 2022-07-12 13:07:58 +02:00
Weblate
75649a22c5 Translated using Weblate (Spanish)
Currently translated at 46.1% (664 of 1439 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/es/

Translated using Weblate (Spanish)

Currently translated at 45.9% (661 of 1439 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/es/

Translated using Weblate (Spanish)

Currently translated at 45.2% (651 of 1439 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/es/
2022-07-11 22:49:39 +02:00
Weblate
791819bbb9 Translated using Weblate (Portuguese (Portugal))
Currently translated at 95.6% (1377 of 1439 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/pt_PT/
2022-07-11 22:49:39 +02:00
Maxime Cesson
4b7e1b0757 Add a placeholder before loading screens for slow connection 2022-07-11 10:21:00 +02:00
Maxime Cesson
162bd50f6c Fix kanban item title editing #921 2022-07-05 16:02:14 +02:00
Maxime Cesson
3e7b76c785 Make spellcheck default for rich text document #887 2022-07-05 14:29:42 +02:00
Weblate
93bb668733 Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (1439 of 1439 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/zh_Hans/

Translated using Weblate (Chinese (Simplified))

Currently translated at 100.0% (1439 of 1439 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/zh_Hans/
2022-06-30 10:43:58 +02:00
Weblate
d405f36461 Translated using Weblate (Portuguese (Portugal))
Currently translated at 95.6% (1376 of 1439 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/pt_PT/

Translated using Weblate (Portuguese (Portugal))

Currently translated at 96.1% (1384 of 1439 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/pt_PT/

Translated using Weblate (Portuguese (Portugal))

Currently translated at 96.1% (1384 of 1439 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/pt_PT/
2022-06-30 10:43:58 +02:00
ansuz
183d388049 trying again 2022-06-16 22:10:21 +05:30
ansuz
81cde8c4d5 add European Portuguese translation file 2022-06-16 22:07:09 +05:30
ansuz
3841e8f0b2 Merge branch 'soon' into staging 2022-06-16 16:35:56 +05:30
ansuz
df67acc11e Merge branch 'main' into soon 2022-06-16 16:35:41 +05:30
yflory
af99f94747 Fix dropdown menus when entries contain quotes 2022-06-14 13:44:54 +02:00
Weblate
fab3b4c5d4 Translated using Weblate (Arabic)
Currently translated at 0.6% (10 of 1439 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/ar/

Translated using Weblate (Arabic)

Currently translated at 0.4% (7 of 1439 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/ar/
2022-06-10 10:59:23 +02:00
David Benque
ff43da48a8 Remove padding on cards when dragging 2022-06-08 16:13:49 +01:00
ansuz
7e567617d9 autocomplete brackets in form code editors 2022-06-08 13:29:01 +05:30
Weblate
49b19c307a Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (1439 of 1439 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/zh_Hans/
2022-06-07 15:25:37 +02:00
David Benque
43b8d8ed0a Reduce margin for kanban cards 2022-06-07 12:37:39 +01:00
Weblate
70e2f826fc Translated using Weblate (Czech)
Currently translated at 99.5% (1432 of 1439 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/cs/
2022-06-05 19:35:23 +02:00
Weblate
41193491a3 Translated using Weblate (Japanese)
Currently translated at 99.6% (1434 of 1439 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/ja/
2022-06-05 19:35:23 +02:00
Weblate
101ace7d21 Translated using Weblate (German)
Currently translated at 100.0% (1439 of 1439 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/de/
2022-06-05 19:35:23 +02:00
Weblate
c2220cb94c Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (1439 of 1439 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/zh_Hans/
2022-06-05 19:35:22 +02:00
ansuz
01e3012b62 fix poor text contrast for date range indicator in calendar dark mode 2022-06-02 16:21:41 +05:30
ansuz
3fc7c4a6cd bugfix: some kanban tags were parsed as numbers and didn't work correctly 2022-06-02 15:01:49 +05:30
ansuz
b457bdd50a Merge branch 'staging' into soon 2022-06-01 16:45:59 +05:30
ansuz
d23cdb333c hide the code preview button when in present mode 2022-06-01 16:42:10 +05:30
ansuz
663768e147 Merge branch 'upload-size-error' into soon 2022-05-31 20:00:44 +05:30
ansuz
0e9a9ddfe0 preserve multi-line formatting of team invite messages 2022-05-31 19:30:32 +05:30
ansuz
58dc2285b3 remove hardcoded translation and fix accidental reformatting 2022-05-31 18:04:31 +05:30
ansuz
019d2f0f16 Merge branch 'soon' into upload-size-error 2022-05-31 17:58:32 +05:30
Weblate
0df76ed64e Translated using Weblate (English)
Currently translated at 100.0% (1439 of 1439 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/en/
2022-05-31 14:27:48 +02:00
Weblate
4b08f68dce Translated using Weblate (French)
Currently translated at 100.0% (1439 of 1439 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/fr/
2022-05-31 14:27:48 +02:00
ansuz
104a04597c flag a hardcoded translation 2022-05-31 17:52:01 +05:30
ansuz
2dd6cf7b5c correctly report the relevant file size limit
...when a file exceeds the current user/teams's max size
2022-05-31 17:51:05 +05:30
David Benqué
11c2d8b3bf Fix team invite message 2022-05-31 10:39:58 +01:00
David Benqué
3d8832095b Fix markdown preview width in Code 2022-05-31 09:29:06 +01:00
ansuz
05f8378da5 flag some hardcoded alt text 2022-05-30 17:20:22 +05:30
ansuz
8a7c35ceb8 Merge remote-tracking branch 'origin/oo' into soon-oo 2022-05-30 16:53:46 +05:30
ansuz
dbf63621e5 catch failed page loads due to absent trailing slashes
...on instances with missing redirect rules
2022-05-30 16:01:09 +05:30
ansuz
0d50a698ac guard against type error when pinning channels of shared folders 2022-05-30 15:36:13 +05:30
ansuz
feefd9bff0 avoid duplicate warning about /api/instance on checkup 2022-05-30 15:34:02 +05:30
ansuz
066cb2377c fix double-margin on admin panel input 2022-05-30 15:33:15 +05:30
Weblate
f3ea7360d9 Translated using Weblate (Chinese (Simplified))
Currently translated at 100.0% (1439 of 1439 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/zh_Hans/

Translated using Weblate (Chinese (Simplified))

Currently translated at 100.0% (1439 of 1439 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/zh_Hans/

Translated using Weblate (Chinese (Simplified))

Currently translated at 69.7% (1003 of 1439 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/zh_Hans/

Translated using Weblate (Chinese (Simplified))

Currently translated at 61.1% (880 of 1439 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/zh_Hans/

Translated using Weblate (Chinese (Simplified))

Currently translated at 45.3% (652 of 1439 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/zh_Hans/
2022-05-28 15:25:28 +02:00
Weblate
e330800a1b Translated using Weblate (Chinese (Simplified))
Currently translated at 40.3% (581 of 1439 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/zh_Hans/
2022-05-24 06:13:37 +02:00
ansuz
cb10ef0d79 round corners 2022-05-20 20:58:18 +05:30
Weblate
ef16693009 Translated using Weblate (Swedish)
Currently translated at 10.2% (148 of 1439 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/sv/
2022-05-18 17:34:07 +02:00
yflory
eba1f9c949 Fix OO import with unsupported characters in file name 2022-05-18 15:58:12 +02:00
Weblate
ff4453ea09 Translated using Weblate (French)
Currently translated at 100.0% (1439 of 1439 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/fr/
2022-05-16 16:36:35 +02:00
Weblate
22892a30e1 Translated using Weblate (German)
Currently translated at 100.0% (1439 of 1439 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/de/
2022-05-16 00:02:59 +02:00
Weblate
b63221be49 Translated using Weblate (Basque)
Currently translated at 100.0% (1439 of 1439 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/eu/
2022-05-16 00:02:59 +02:00
Weblate
fcc75125ab Update translation files
Updated by "Cleanup translation files" hook in Weblate.

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/
2022-05-13 15:49:31 +02:00
ansuz
f77fa5f892 remove some unused translations 2022-05-13 19:18:57 +05:30
ansuz
cc141ebee8 improve translation linting 2022-05-13 19:18:26 +05:30
ansuz
3288dd984f unify 'terms' and 'footer_terms' translation keys 2022-05-13 18:56:49 +05:30
ansuz
48f4ee1dca Merge branch '4.15-candidate' into soon 2022-05-13 18:38:06 +05:30
Weblate
ba2ff4db31 Translated using Weblate (English)
Currently translated at 100.0% (1470 of 1470 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/en/
2022-05-13 14:41:01 +02:00
ansuz
8028df1306 Merge branch 'soon' into 4.15-candidate 2022-05-13 15:53:17 +05:30
Weblate
ba337f38c6 Translated using Weblate (Greek)
Currently translated at 20.4% (300 of 1470 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/el/
2022-05-13 12:22:45 +02:00
ansuz
958b3e4376 remove references to removed pages and notes that have been addressed 2022-05-13 15:50:38 +05:30
ansuz
633b8e062f lint compliance 2022-05-13 15:20:48 +05:30
ansuz
b6541c3034 do not display a terms page by default 2022-05-13 14:25:19 +05:30
David Benqué
3f6afcd3fb Remove hard-coded translation keys 2022-05-13 09:38:27 +01:00
David Benqué
f92b0a36c7 Merge branch 'soon' into 4.15-candidate 2022-05-13 09:33:44 +01:00
Weblate
d7e8ecc211 Translated using Weblate (English)
Currently translated at 100.0% (1470 of 1470 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/en/
2022-05-13 10:11:45 +02:00
Weblate
61d6aa3fed Translated using Weblate (English)
Currently translated at 100.0% (1470 of 1470 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/en/

Translated using Weblate (English)

Currently translated at 100.0% (1469 of 1469 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/en/

Translated using Weblate (English)

Currently translated at 100.0% (1468 of 1468 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/en/

Translated using Weblate (English)

Currently translated at 100.0% (1467 of 1467 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/en/

Translated using Weblate (English)

Currently translated at 100.0% (1466 of 1466 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/en/

Translated using Weblate (English)

Currently translated at 100.0% (1465 of 1465 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/en/

Translated using Weblate (English)

Currently translated at 100.0% (1464 of 1464 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/en/
2022-05-12 22:41:13 +02:00
David Benqué
ab137ef175 Revert color of tick in colorpicker 2022-05-12 14:37:28 +01:00
yflory
aae87e7518 Fix color picker in kanban 2022-05-12 15:25:10 +02:00
David Benqué
0679ed6833 Use dark palette for Kanban cards in dark theme 2022-05-12 09:55:11 +01:00
David Benqué
db3e7aa5de Use light theme colors in dark theme for more highlight 2022-05-11 15:43:34 +01:00
David Benqué
312d030bef Merge remote-tracking branch 'origin/4.15-candidate' into 4.15-candidate 2022-05-11 13:45:50 +01:00
David Benqué
74af6629e3 Use variable for UI drop shadow 2022-05-11 13:45:27 +01:00
ansuz
0be64ac958 simplify accounts configuration on dev instances 2022-05-11 13:12:12 +05:30
ansuz
7c29741497 give media-tag progress bars rounded corners 2022-05-10 13:33:34 +05:30
ansuz
c81525ffc4 checkup: complain if public instance don't provide description & location 2022-05-10 13:13:02 +05:30
ansuz
071c9706af accept both new and old data format for server info on admin panel 2022-05-10 13:11:53 +05:30
ansuz
1b2c6de355 Merge branch '4.15-candidate' of github.com:xwiki-labs/cryptpad into 4.15-candidate 2022-05-10 13:09:24 +05:30
David Benqué
6098890910 Apply rounded corners to filepicker modal 2022-05-09 16:43:36 +01:00
David Benqué
cf01bd8215 Clean up and lint 2022-05-09 13:53:39 +01:00
David Benqué
e22de3f699 Add icon for Accounts app 2022-05-09 13:41:27 +01:00
ansuz
cfa4776c81 round off some more corners 2022-05-06 17:30:35 +05:30
ansuz
a2731c44b0 assorted home page fixes/improvements
* link to home page from other static pages
* home notice
  * moved to the top of the home page
  * configured via server API instead of application_config.js
  * WIP admin panel UI
* more debugging info for unsupported decrees
* lint compliance probably
2022-05-06 13:55:00 +05:30
yflory
333e135b04 Fix spellcheck and image issues in OnlyOffice 2022-05-03 16:37:37 +02:00
ansuz
6ae4446036 Merge branch 'custom-home-page' into 4.15-candidate 2022-05-03 18:32:33 +05:30
ansuz
916c0dd322 Merge branch 'sandpaper-static' into 4.15-candidate 2022-05-03 18:31:56 +05:30
ansuz
8adeeb21ec display instance info on the home page
* implements /api/instance
* updates recommended NGINX config
* adds a test on /checkup/
2022-05-03 18:20:34 +05:30
David Benqué
3be11e01cf Style drive splitter 2022-05-03 10:23:18 +01:00
yflory
b25a38e13c Add resizer to the drive 2022-05-02 16:23:06 +02:00
ansuz
bbd914b88d Merge branch 'soon' into 4.15-candidate 2022-04-28 15:08:11 +05:30
ansuz
502d3b91a8 lint compliance 2022-04-28 15:07:58 +05:30
ansuz
702f0ee7b8 Merge branch 'soon' of github.com:xwiki-labs/cryptpad into 4.15-candidate 2022-04-28 14:52:04 +05:30
yflory
f0e5128b3c Add fonts to OnlyOffice apps 2022-04-27 15:54:47 +02:00
ansuz
4d4ae261f3 always close the user admin menu after you've executed one of its actions
for some reason some browsers seem to do it implicitly, while others don't
2022-04-27 14:22:03 +05:30
Weblate
bba57a48e2 Translated using Weblate (Ukrainian)
Currently translated at 81.5% (1193 of 1463 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/uk/
2022-04-27 00:00:07 +02:00
Weblate
bb34a97189 Translated using Weblate (German)
Currently translated at 100.0% (1463 of 1463 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/de/
2022-04-21 10:32:16 +02:00
ansuz
93a9c44b6e Merge branch 'main' into 4.15-candidate 2022-04-20 15:32:46 +05:30
ansuz
3cce982fd9 use modern or internal APIs for some UI code 2022-04-19 14:37:23 +05:30
Weblate
726349aeff Translated using Weblate (Ukrainian)
Currently translated at 66.0% (966 of 1463 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/uk/
2022-04-14 07:13:10 +02:00
ansuz
c6e22ca217 Merge branch 'drive-history-fixes' into soon 2022-04-13 16:08:30 +05:30
Weblate
b3d109f9db Translated using Weblate (Ukrainian)
Currently translated at 38.4% (562 of 1463 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/uk/
2022-04-13 12:38:07 +02:00
ansuz
a562bbc2e1 fixes related to ownership in modals opened from the drive 2022-04-13 16:07:00 +05:30
ansuz
d9d3859a30 Merge branch 'soon' into drive-history-fixes 2022-04-13 15:06:20 +05:30
ansuz
3d40ed1002 redirect to docs automatically from cryptpad.fr domains 2022-04-13 14:08:37 +05:30
Weblate
6cbe13856d Translated using Weblate (Ukrainian)
Currently translated at 37.8% (554 of 1463 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/uk/
2022-04-13 07:27:16 +02:00
ansuz
183db941b8 set tab title for file app 2022-04-12 13:14:31 +05:30
Weblate
fe43f43d1b Translated using Weblate (Ukrainian)
Currently translated at 36.5% (534 of 1463 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/uk/
2022-04-12 06:37:05 +02:00
ansuz
58b98a77e2 set titles for pages which still used the default 2022-04-11 17:49:13 +05:30
Weblate
58a55d43d9 Translated using Weblate (Ukrainian)
Currently translated at 31.1% (456 of 1463 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/uk/
2022-04-11 12:28:20 +02:00
Weblate
7b6457af40 Translated using Weblate (English)
Currently translated at 100.0% (1463 of 1463 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/en/
2022-04-11 12:28:20 +02:00
Weblate
f8c6d127e2 Translated using Weblate (French)
Currently translated at 100.0% (1463 of 1463 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/fr/
2022-04-11 12:28:20 +02:00
ansuz
86e76bdbd7 update mermaid to 9.0.0 and enable gitGraph diagrams 2022-04-11 12:10:57 +05:30
Weblate
c92917e697 Translated using Weblate (Ukrainian)
Currently translated at 28.3% (414 of 1462 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/uk/

Added translation using Weblate (Ukrainian)
2022-04-11 01:01:36 +02:00
Weblate
2e1b88ef98 Translated using Weblate (Portuguese (Brazil))
Currently translated at 96.5% (1411 of 1462 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/pt_BR/

Translated using Weblate (Portuguese (Brazil))

Currently translated at 96.5% (1411 of 1462 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/pt_BR/

Translated using Weblate (Portuguese (Brazil))

Currently translated at 96.5% (1411 of 1462 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/pt_BR/
2022-04-11 01:01:36 +02:00
ansuz
08d9745a61 Merge branch 'main' into soon 2022-04-07 15:12:34 +05:30
Weblate
033e15b8d8 Translated using Weblate (Portuguese (Brazil))
Currently translated at 96.5% (1411 of 1462 strings)

Translation: CryptPad/App
Translate-URL: http://weblate.cryptpad.fr/projects/cryptpad/app/pt_BR/
2022-04-07 11:07:35 +02:00
ansuz
6516b1ec48 use historical shared folder data when viewing drive history 2022-04-06 16:36:54 +05:30
ansuz
fce63af2c1 always show the markdown toolbar in the kanban editor 2022-04-05 15:21:02 +05:30
ansuz
6bc1c24608 fix incorrectly concatenated assertion messages 2022-04-04 20:56:07 +05:30