Updated links for translation to Weblate

This commit is contained in:
nobody 2020-06-14 21:45:51 +02:00
parent 4f3d9dda74
commit e279362439
No known key found for this signature in database
GPG Key ID: 8F6DE3D614FCFD7A
3 changed files with 6 additions and 4 deletions

View File

@ -82,6 +82,8 @@ Please read this [developer guide](https://developer.mozilla.org/en-US/Add-ons/W
Just open an issue with your question or write an [email](https://localcdn.de/contact/) (PGP possible!).
## Submitting Translations
The language you want is not completely translated or you are a language talent? Please help us by translating this add-on on [Weblate](https://hosted.weblate.org/projects/localcdn/).
## Donations

View File

@ -193,8 +193,8 @@
</div>
<a class="button button-notice button-warning" href="https://localcdn.de/translation/" target="_blank">
Help Translate
<a class="button button-notice button-warning" href="https://hosted.weblate.org/projects/localcdn/" target="_blank">
Please help out by translating this add-on on Weblate.
</a>
</div>

View File

@ -436,7 +436,7 @@ popup._renderLocaleNotice = function () {
localeNoticeElement.setAttribute('class', 'notice notice-default');
localeNoticeElement.addEventListener('mouseup', popup._onIncompleteTranslation);
nameTextNode = document.createTextNode('Translation is incomplete. You want to help?');
nameTextNode = document.createTextNode('Translation is incomplete. You want to help on Weblate?');
localeNoticeElement.appendChild(nameTextNode);
localeNoticeElement.addEventListener('mouseup', popup._onIncompleteTranslation);
@ -557,7 +557,7 @@ popup._onIncompleteTranslation = function () {
if (event.button === 0 || event.button === 1) {
chrome.tabs.create({
'url': 'https://localcdn.de/translation/',
'url': 'https://hosted.weblate.org/projects/localcdn/',
'active': (event.button === 0)
});
}