1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-24 08:12:24 +02:00

Fixed Catalan flag

This commit is contained in:
Laurent Cozic 2018-06-15 18:14:31 +01:00
parent f599ae065a
commit e54f9934b5
3 changed files with 8 additions and 7 deletions

View File

@ -158,11 +158,12 @@ On the **terminal application**, to initiate the synchronisation process, type `
Select the "WebDAV" synchronisation target and follow the same instructions as for Nextcloud above.
WebDAV-compatible services that are known to work with Joplin.
WebDAV-compatible services that are known to work with Joplin:
- [Box.com](https://www.box.com/)
- [DriveHQ](https://www.drivehq.com)
- [HiDrive](https://www.strato.fr/stockage-en-ligne/) from Strato. [Setup help](https://github.com/laurent22/joplin/issues/309)
- [Nginx WebDAV Module](https://nginx.org/en/docs/http/ngx_http_dav_module.html)
- [OwnCloud](https://owncloud.org/)
- [Seafile](https://www.seafile.com/)
- [Stack](https://www.transip.nl/stack/)

View File

@ -155,11 +155,10 @@ async function translationStatus(isDefault, poFile) {
}
function flagImageUrl(locale) {
if (locale === 'eu') {
return 'https://joplin.cozic.net/images/flags/es/basque_country.png';
} else {
return 'https://joplin.cozic.net/images/flags/country-4x3/' + countryCodeOnly(locale).toLowerCase() + '.png'
}
if (locale === 'eu') return 'https://joplin.cozic.net/images/flags/es/basque_country.png';
if (locale === 'gl_ES') return 'https://joplin.cozic.net/images/flags/es/galicia.png';
if (locale === 'ca') return 'https://joplin.cozic.net/images/flags/es/catalonia.png';
return 'https://joplin.cozic.net/images/flags/country-4x3/' + countryCodeOnly(locale).toLowerCase() + '.png'
}
function poFileUrl(locale) {

View File

@ -392,11 +392,12 @@
<pre><code>*/30 * * * * /path/to/joplin sync
</code></pre><h2 id="webdav-synchronisation">WebDAV synchronisation</h2>
<p>Select the &quot;WebDAV&quot; synchronisation target and follow the same instructions as for Nextcloud above.</p>
<p>WebDAV-compatible services that are known to work with Joplin.</p>
<p>WebDAV-compatible services that are known to work with Joplin:</p>
<ul>
<li><a href="https://www.box.com/">Box.com</a></li>
<li><a href="https://www.drivehq.com">DriveHQ</a></li>
<li><a href="https://www.strato.fr/stockage-en-ligne/">HiDrive</a> from Strato. <a href="https://github.com/laurent22/joplin/issues/309">Setup help</a></li>
<li><a href="https://nginx.org/en/docs/http/ngx_http_dav_module.html">Nginx WebDAV Module</a></li>
<li><a href="https://owncloud.org/">OwnCloud</a></li>
<li><a href="https://www.seafile.com/">Seafile</a></li>
<li><a href="https://www.transip.nl/stack/">Stack</a></li>