From d0a4ac134263e610be2c8bd589432e76014bf619 Mon Sep 17 00:00:00 2001 From: Roland Geider Date: Tue, 24 May 2016 23:54:32 +0200 Subject: [PATCH] Change github project URL The code was moved to an organisation, the URLs were changed to reflect this change. --- README.rst | 6 +- docs/development.rst | 2 +- docs/index.rst | 6 +- docs/production.rst | 2 +- extras/docker/apache/Dockerfile | 2 +- extras/docker/apache/README.md | 4 +- extras/docker/base/README.md | 4 +- extras/docker/development-fedora/Dockerfile | 2 +- extras/docker/development-fedora/README.md | 4 +- extras/docker/development/README.md | 4 +- wger/core/templates/manifest.webapp | 2 +- wger/core/templates/navigation.html | 2 +- wger/core/templates/template.html | 2 +- wger/core/templates/template_features.html | 2 +- wger/locale/bg/LC_MESSAGES/django.po | 4 +- wger/locale/cs/LC_MESSAGES/django.po | 6 +- wger/locale/da/LC_MESSAGES/django.po | 4 +- wger/locale/de/LC_MESSAGES/django.po | 6 +- wger/locale/el/LC_MESSAGES/django.po | 6 +- wger/locale/en/LC_MESSAGES/django.po | 4 +- wger/locale/es/LC_MESSAGES/django.po | 6 +- wger/locale/fi/LC_MESSAGES/django.po | 4 +- wger/locale/fr/LC_MESSAGES/django.po | 4 +- wger/locale/hu/LC_MESSAGES/django.po | 4 +- wger/locale/it_IT/LC_MESSAGES/django.po | 4 +- wger/locale/ja/LC_MESSAGES/django.po | 4 +- wger/locale/nl/LC_MESSAGES/django.po | 6 +- wger/locale/no/LC_MESSAGES/django.po | 4 +- wger/locale/os/LC_MESSAGES/django.po | 4 +- wger/locale/pt_BR/LC_MESSAGES/django.po | 6 +- wger/locale/ro/LC_MESSAGES/django.po | 4 +- wger/locale/ru/LC_MESSAGES/django.po | 6 +- wger/locale/sv_SE/LC_MESSAGES/django.po | 6 +- wger/locale/tr/LC_MESSAGES/django.po | 4 +- wger/locale/uk/LC_MESSAGES/django.po | 4 +- wger/locale/zh_CN/LC_MESSAGES/django.po | 6 +- wger/locale/zh_TW/LC_MESSAGES/django.po | 4 +- wger/software/templates/changelog.html | 174 ++++++++++---------- wger/software/templates/functions.html | 2 +- wger/software/templates/issues.html | 4 +- wger/software/urls.py | 2 +- 41 files changed, 168 insertions(+), 168 deletions(-) diff --git a/README.rst b/README.rst index f9759c73c..0adfedfc3 100644 --- a/README.rst +++ b/README.rst @@ -63,7 +63,7 @@ Then install the python packages from pypi in the virtualenv:: :: - $ git clone https://github.com/rolandgeider/wger.git + $ git clone https://github.com/wger-project/wger.git $ cd wger $ pip install -r requirements.txt # or requirements_devel.txt to develop $ invoke create_settings \ @@ -164,7 +164,7 @@ file a bug anyway. * **mailing list:** https://groups.google.com/group/wger / wger@googlegroups.com, no registration needed * **IRC:** channel #wger on freenode.net, webchat: http://webchat.freenode.net/?channels=wger -* **issue tracker:** https://github.com/rolandgeider/wger/issues +* **issue tracker:** https://github.com/wger-project/wger/issues Sources @@ -172,7 +172,7 @@ Sources All the code and the content is freely available: -* **Main repository:** https://github.com/rolandgeider/wger +* **Main repository:** https://github.com/wger-project/wger * **Mirror:** https://bitbucket.org/rolandgeider/wger diff --git a/docs/development.rst b/docs/development.rst index bf45203c4..29ad3d98a 100644 --- a/docs/development.rst +++ b/docs/development.rst @@ -11,7 +11,7 @@ First, create a virtual environment:: Get the code and start the application. This will create a SQlite database and populate it with data on the first run:: - $ git clone https://github.com/rolandgeider/wger.git + $ git clone https://github.com/wger-project/wger.git $ cd wger $ pip install -r requirements_devel.txt $ invoke create_settings \ diff --git a/docs/index.rst b/docs/index.rst index 6ff26e91b..c3c6f3a34 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -13,7 +13,7 @@ etc.). It offers a REST API as well, for easy integration with other projects and tools. It is written with python/django and uses jQuery and some D3js for charts. For more details and a live system, refer to the project's site: -https://github.com/rolandgeider/wger +https://github.com/wger-project/wger This documentation is intended for developers and administrators of the software. @@ -50,14 +50,14 @@ issue tracker). * **mailing list:** https://groups.google.com/group/wger / wger@googlegroups.com, no registration needed * **IRC:** channel #wger on freenode.net, webchat: http://webchat.freenode.net/?channels=wger -* **issue tracker:** https://github.com/rolandgeider/wger/issues +* **issue tracker:** https://github.com/wger-project/wger/issues Sources ------- All the code and the content is freely available and is hosted on github: -https://github.com/rolandgeider/wger +https://github.com/wger-project/wger Licence diff --git a/docs/production.rst b/docs/production.rst index b881d7529..c3db16ceb 100644 --- a/docs/production.rst +++ b/docs/production.rst @@ -108,7 +108,7 @@ be writeable as well:: Get the application:: - git clone https://github.com/rolandgeider/wger.git /home/wger/src + git clone https://github.com/wger-project/wger.git /home/wger/src cd /home/wger/src npm install bower pip install -r requirements.txt diff --git a/extras/docker/apache/Dockerfile b/extras/docker/apache/Dockerfile index 4360a01b0..f8a1f0185 100644 --- a/extras/docker/apache/Dockerfile +++ b/extras/docker/apache/Dockerfile @@ -22,7 +22,7 @@ RUN a2ensite wger # Set up the application USER wger -RUN git clone https://github.com/rolandgeider/wger.git /home/wger/src +RUN git clone https://github.com/wger-project/wger.git /home/wger/src WORKDIR /home/wger/src RUN virtualenv --python python3 /home/wger/venv diff --git a/extras/docker/apache/README.md b/extras/docker/apache/README.md index d1bdae236..651f432f2 100644 --- a/extras/docker/apache/README.md +++ b/extras/docker/apache/README.md @@ -31,14 +31,14 @@ file a bug anyway. * twitter: https://twitter.com/wger_de * mailing list: https://groups.google.com/group/wger / wger@googlegroups.com, no registration needed * IRC: channel #wger on freenode.net, webchat: http://webchat.freenode.net/?channels=wger -* issue tracker: https://github.com/rolandgeider/wger/issues +* issue tracker: https://github.com/wger-project/wger/issues Sources ------- All the code and the content is freely available: -* Main repository: https://github.com/rolandgeider/wger +* Main repository: https://github.com/wger-project/wger * Mirror: https://bitbucket.org/rolandgeider/wger diff --git a/extras/docker/base/README.md b/extras/docker/base/README.md index e9add37e0..94962ad5e 100644 --- a/extras/docker/base/README.md +++ b/extras/docker/base/README.md @@ -17,14 +17,14 @@ file a bug anyway. * twitter: https://twitter.com/wger_de * mailing list: https://groups.google.com/group/wger / wger@googlegroups.com, no registration needed * IRC: channel #wger on freenode.net, webchat: http://webchat.freenode.net/?channels=wger -* issue tracker: https://github.com/rolandgeider/wger/issues +* issue tracker: https://github.com/wger-project/wger/issues Sources ------- All the code and the content is freely available: -* Main repository: https://github.com/rolandgeider/wger +* Main repository: https://github.com/wger-project/wger * Mirror: https://bitbucket.org/rolandgeider/wger Licence diff --git a/extras/docker/development-fedora/Dockerfile b/extras/docker/development-fedora/Dockerfile index cd61e5473..fc0d5779b 100644 --- a/extras/docker/development-fedora/Dockerfile +++ b/extras/docker/development-fedora/Dockerfile @@ -25,7 +25,7 @@ EXPOSE 8000 # Set up the application USER wger -RUN git clone https://github.com/rolandgeider/wger.git /home/wger/src +RUN git clone https://github.com/wger-project/wger.git /home/wger/src WORKDIR /home/wger/src RUN virtualenv --python python3 /home/wger/venv diff --git a/extras/docker/development-fedora/README.md b/extras/docker/development-fedora/README.md index 6ec2476b4..165fe8a3c 100644 --- a/extras/docker/development-fedora/README.md +++ b/extras/docker/development-fedora/README.md @@ -39,14 +39,14 @@ file a bug anyway. * twitter: https://twitter.com/wger_de * mailing list: https://groups.google.com/group/wger / wger@googlegroups.com, no registration needed * IRC: channel #wger on freenode.net, webchat: http://webchat.freenode.net/?channels=wger -* issue tracker: https://github.com/rolandgeider/wger/issues +* issue tracker: https://github.com/wger-project/wger/issues Sources ------- All the code and the content is freely available: -* Main repository: https://github.com/rolandgeider/wger +* Main repository: https://github.com/wger-project/wger * Mirror: https://bitbucket.org/rolandgeider/wger Licence diff --git a/extras/docker/development/README.md b/extras/docker/development/README.md index d39d52e3c..c2ddae739 100644 --- a/extras/docker/development/README.md +++ b/extras/docker/development/README.md @@ -38,14 +38,14 @@ file a bug anyway. * twitter: https://twitter.com/wger_de * mailing list: https://groups.google.com/group/wger / wger@googlegroups.com, no registration needed * IRC: channel #wger on freenode.net, webchat: http://webchat.freenode.net/?channels=wger -* issue tracker: https://github.com/rolandgeider/wger/issues +* issue tracker: https://github.com/wger-project/wger/issues Sources ------- All the code and the content is freely available: -* Main repository: https://github.com/rolandgeider/wger +* Main repository: https://github.com/wger-project/wger * Mirror: https://bitbucket.org/rolandgeider/wger Licence diff --git a/wger/core/templates/manifest.webapp b/wger/core/templates/manifest.webapp index 9cdf28496..71ec3ce67 100644 --- a/wger/core/templates/manifest.webapp +++ b/wger/core/templates/manifest.webapp @@ -16,7 +16,7 @@ }, "developer": { "name": "Roland Geider", - "url": "https://github.com/rolandgeider/wger" + "url": "https://github.com/wger-project/wger" }, "default_locale": "en", "locales": { diff --git a/wger/core/templates/navigation.html b/wger/core/templates/navigation.html index 11dd3f37c..283b20c22 100644 --- a/wger/core/templates/navigation.html +++ b/wger/core/templates/navigation.html @@ -132,7 +132,7 @@
  • {% trans "License" %}
  • {% trans "Changelog" %}
  • - + {% trans "Get the code" %} (Github) diff --git a/wger/core/templates/template.html b/wger/core/templates/template.html index ab1d22e9d..3dd1557e3 100644 --- a/wger/core/templates/template.html +++ b/wger/core/templates/template.html @@ -190,7 +190,7 @@
    - +
    - + AGPL.txt\n" -"or CC-BY-SA.txt\n" +"AGPL.txt\n" +"or CC-BY-SA.txt\n" "files in the source code repository." msgstr "" diff --git a/wger/locale/cs/LC_MESSAGES/django.po b/wger/locale/cs/LC_MESSAGES/django.po index b2f532ea6..eb58db921 100644 --- a/wger/locale/cs/LC_MESSAGES/django.po +++ b/wger/locale/cs/LC_MESSAGES/django.po @@ -4070,10 +4070,10 @@ msgstr "" msgid "" "A copy of both licenses is contained in every wger Workout\n" "Manager release and can be read in the\n" -"AGPL.txt\n" -"or CC-BY-SA.txt\n" +"AGPL.txt\n" +"or CC-BY-SA.txt\n" "files in the source code repository." -msgstr "Kopie obou licencí je obsažena v každém wger Správci tréninku\na je možné si je přečíst\nAGPL.txt\nnebo CC-BY-SA.txt" +msgstr "Kopie obou licencí je obsažena v každém wger Správci tréninku\na je možné si je přečíst\nAGPL.txt\nnebo CC-BY-SA.txt" #: utils/models.py:41 msgid "Author" diff --git a/wger/locale/da/LC_MESSAGES/django.po b/wger/locale/da/LC_MESSAGES/django.po index 94d71b8c8..fae719d16 100644 --- a/wger/locale/da/LC_MESSAGES/django.po +++ b/wger/locale/da/LC_MESSAGES/django.po @@ -4067,8 +4067,8 @@ msgstr "" msgid "" "A copy of both licenses is contained in every wger Workout\n" "Manager release and can be read in the\n" -"AGPL.txt\n" -"or CC-BY-SA.txt\n" +"AGPL.txt\n" +"or CC-BY-SA.txt\n" "files in the source code repository." msgstr "" diff --git a/wger/locale/de/LC_MESSAGES/django.po b/wger/locale/de/LC_MESSAGES/django.po index 98daa55ca..84f31df9e 100644 --- a/wger/locale/de/LC_MESSAGES/django.po +++ b/wger/locale/de/LC_MESSAGES/django.po @@ -4068,10 +4068,10 @@ msgstr "Die Übungs- und Zutatendaten stehen zustätlich unter einer Cre msgid "" "A copy of both licenses is contained in every wger Workout\n" "Manager release and can be read in the\n" -"AGPL.txt\n" -"or CC-BY-SA.txt\n" +"AGPL.txt\n" +"or CC-BY-SA.txt\n" "files in the source code repository." -msgstr "Eine Kopie beider Lizenzen liegt jedem wger Workout Manager bei und ist auch in den AGPL.txt\noder CC-BY-SA.txt Dateien im Quellcoderepository nachzulesen." +msgstr "Eine Kopie beider Lizenzen liegt jedem wger Workout Manager bei und ist auch in den AGPL.txt\noder CC-BY-SA.txt Dateien im Quellcoderepository nachzulesen." #: utils/models.py:41 msgid "Author" diff --git a/wger/locale/el/LC_MESSAGES/django.po b/wger/locale/el/LC_MESSAGES/django.po index 37884cfda..8aedaf028 100644 --- a/wger/locale/el/LC_MESSAGES/django.po +++ b/wger/locale/el/LC_MESSAGES/django.po @@ -4068,10 +4068,10 @@ msgstr "" msgid "" "A copy of both licenses is contained in every wger Workout\n" "Manager release and can be read in the\n" -"AGPL.txt\n" -"or CC-BY-SA.txt\n" +"AGPL.txt\n" +"or CC-BY-SA.txt\n" "files in the source code repository." -msgstr "Ένα αντίγραφο απο και τις δύο αδειοδοτήσεις εμπεριέχεται σε κάθε διανομή του wger Workout Manager και μπορεί να διαβαστεί στο AGPL.txt ή στο CC-BY-SA.txt" +msgstr "Ένα αντίγραφο απο και τις δύο αδειοδοτήσεις εμπεριέχεται σε κάθε διανομή του wger Workout Manager και μπορεί να διαβαστεί στο AGPL.txt ή στο CC-BY-SA.txt" #: utils/models.py:41 msgid "Author" diff --git a/wger/locale/en/LC_MESSAGES/django.po b/wger/locale/en/LC_MESSAGES/django.po index 8c53543df..5d73d907b 100644 --- a/wger/locale/en/LC_MESSAGES/django.po +++ b/wger/locale/en/LC_MESSAGES/django.po @@ -4111,9 +4111,9 @@ msgstr "" msgid "" "A copy of both licenses is contained in every wger Workout\n" "Manager release and can be read in the\n" -"AGPL." +"AGPL." "txt\n" -"or CC-BY-SA.txt\n" "files in the source code repository." msgstr "" diff --git a/wger/locale/es/LC_MESSAGES/django.po b/wger/locale/es/LC_MESSAGES/django.po index f75387255..ee77d1b25 100644 --- a/wger/locale/es/LC_MESSAGES/django.po +++ b/wger/locale/es/LC_MESSAGES/django.po @@ -4070,10 +4070,10 @@ msgstr "Los datos iniciales para ejercicios e ingredientes estan distribuidos ad msgid "" "A copy of both licenses is contained in every wger Workout\n" "Manager release and can be read in the\n" -"AGPL.txt\n" -"or CC-BY-SA.txt\n" +"AGPL.txt\n" +"or CC-BY-SA.txt\n" "files in the source code repository." -msgstr "Una copia de ambas licencias están distribuidas con cada copia de wger Workout\nManager y pueden ser accedidas además en el repositorio del código fuente: \nAGPL.txt\ny CC-BY-SA.txt" +msgstr "Una copia de ambas licencias están distribuidas con cada copia de wger Workout\nManager y pueden ser accedidas además en el repositorio del código fuente: \nAGPL.txt\ny CC-BY-SA.txt" #: utils/models.py:41 msgid "Author" diff --git a/wger/locale/fi/LC_MESSAGES/django.po b/wger/locale/fi/LC_MESSAGES/django.po index 34517632e..df4c2809a 100644 --- a/wger/locale/fi/LC_MESSAGES/django.po +++ b/wger/locale/fi/LC_MESSAGES/django.po @@ -4067,8 +4067,8 @@ msgstr "" msgid "" "A copy of both licenses is contained in every wger Workout\n" "Manager release and can be read in the\n" -"AGPL.txt\n" -"or CC-BY-SA.txt\n" +"AGPL.txt\n" +"or CC-BY-SA.txt\n" "files in the source code repository." msgstr "" diff --git a/wger/locale/fr/LC_MESSAGES/django.po b/wger/locale/fr/LC_MESSAGES/django.po index 6bda4c60e..db3e27196 100644 --- a/wger/locale/fr/LC_MESSAGES/django.po +++ b/wger/locale/fr/LC_MESSAGES/django.po @@ -4074,8 +4074,8 @@ msgstr "" msgid "" "A copy of both licenses is contained in every wger Workout\n" "Manager release and can be read in the\n" -"AGPL.txt\n" -"or CC-BY-SA.txt\n" +"AGPL.txt\n" +"or CC-BY-SA.txt\n" "files in the source code repository." msgstr "" diff --git a/wger/locale/hu/LC_MESSAGES/django.po b/wger/locale/hu/LC_MESSAGES/django.po index e141c0f3a..b3caa4946 100644 --- a/wger/locale/hu/LC_MESSAGES/django.po +++ b/wger/locale/hu/LC_MESSAGES/django.po @@ -4068,8 +4068,8 @@ msgstr "" msgid "" "A copy of both licenses is contained in every wger Workout\n" "Manager release and can be read in the\n" -"AGPL.txt\n" -"or CC-BY-SA.txt\n" +"AGPL.txt\n" +"or CC-BY-SA.txt\n" "files in the source code repository." msgstr "" diff --git a/wger/locale/it_IT/LC_MESSAGES/django.po b/wger/locale/it_IT/LC_MESSAGES/django.po index 5f2628f1f..f2df5ad4d 100644 --- a/wger/locale/it_IT/LC_MESSAGES/django.po +++ b/wger/locale/it_IT/LC_MESSAGES/django.po @@ -4069,8 +4069,8 @@ msgstr "" msgid "" "A copy of both licenses is contained in every wger Workout\n" "Manager release and can be read in the\n" -"AGPL.txt\n" -"or CC-BY-SA.txt\n" +"AGPL.txt\n" +"or CC-BY-SA.txt\n" "files in the source code repository." msgstr "" diff --git a/wger/locale/ja/LC_MESSAGES/django.po b/wger/locale/ja/LC_MESSAGES/django.po index ffa0b9380..56a887950 100644 --- a/wger/locale/ja/LC_MESSAGES/django.po +++ b/wger/locale/ja/LC_MESSAGES/django.po @@ -4067,8 +4067,8 @@ msgstr "" msgid "" "A copy of both licenses is contained in every wger Workout\n" "Manager release and can be read in the\n" -"AGPL.txt\n" -"or CC-BY-SA.txt\n" +"AGPL.txt\n" +"or CC-BY-SA.txt\n" "files in the source code repository." msgstr "" diff --git a/wger/locale/nl/LC_MESSAGES/django.po b/wger/locale/nl/LC_MESSAGES/django.po index fdbd78f38..fd6aaedb1 100644 --- a/wger/locale/nl/LC_MESSAGES/django.po +++ b/wger/locale/nl/LC_MESSAGES/django.po @@ -4070,10 +4070,10 @@ msgstr "" msgid "" "A copy of both licenses is contained in every wger Workout\n" "Manager release and can be read in the\n" -"AGPL.txt\n" -"or CC-BY-SA.txt\n" +"AGPL.txt\n" +"or CC-BY-SA.txt\n" "files in the source code repository." -msgstr "Een kopie van beide licenties wordt omvat in elke wger Workout Manager release en kan worden gelezen in de bestanden AGPL.txt en CC-BY-SA.txt in de broncode-repository." +msgstr "Een kopie van beide licenties wordt omvat in elke wger Workout Manager release en kan worden gelezen in de bestanden AGPL.txt en CC-BY-SA.txt in de broncode-repository." #: utils/models.py:41 msgid "Author" diff --git a/wger/locale/no/LC_MESSAGES/django.po b/wger/locale/no/LC_MESSAGES/django.po index 0ad29c8a0..50210a814 100644 --- a/wger/locale/no/LC_MESSAGES/django.po +++ b/wger/locale/no/LC_MESSAGES/django.po @@ -4067,8 +4067,8 @@ msgstr "" msgid "" "A copy of both licenses is contained in every wger Workout\n" "Manager release and can be read in the\n" -"AGPL.txt\n" -"or CC-BY-SA.txt\n" +"AGPL.txt\n" +"or CC-BY-SA.txt\n" "files in the source code repository." msgstr "" diff --git a/wger/locale/os/LC_MESSAGES/django.po b/wger/locale/os/LC_MESSAGES/django.po index 6bb38667e..b41b83369 100644 --- a/wger/locale/os/LC_MESSAGES/django.po +++ b/wger/locale/os/LC_MESSAGES/django.po @@ -4067,8 +4067,8 @@ msgstr "" msgid "" "A copy of both licenses is contained in every wger Workout\n" "Manager release and can be read in the\n" -"AGPL.txt\n" -"or CC-BY-SA.txt\n" +"AGPL.txt\n" +"or CC-BY-SA.txt\n" "files in the source code repository." msgstr "" diff --git a/wger/locale/pt_BR/LC_MESSAGES/django.po b/wger/locale/pt_BR/LC_MESSAGES/django.po index 47a350556..57f8935d4 100644 --- a/wger/locale/pt_BR/LC_MESSAGES/django.po +++ b/wger/locale/pt_BR/LC_MESSAGES/django.po @@ -4072,10 +4072,10 @@ msgstr "" msgid "" "A copy of both licenses is contained in every wger Workout\n" "Manager release and can be read in the\n" -"AGPL.txt\n" -"or CC-BY-SA.txt\n" +"AGPL.txt\n" +"or CC-BY-SA.txt\n" "files in the source code repository." -msgstr "A cópia de ambas as licenças estão em cada release do wger Gestor \nde Treinos e podem ser lidas nos arquivos AGPL.txt\nou CC-BY-SA.txt\nno repositório do código fonte." +msgstr "A cópia de ambas as licenças estão em cada release do wger Gestor \nde Treinos e podem ser lidas nos arquivos AGPL.txt\nou CC-BY-SA.txt\nno repositório do código fonte." #: utils/models.py:41 msgid "Author" diff --git a/wger/locale/ro/LC_MESSAGES/django.po b/wger/locale/ro/LC_MESSAGES/django.po index ae2744373..70dbe8abb 100644 --- a/wger/locale/ro/LC_MESSAGES/django.po +++ b/wger/locale/ro/LC_MESSAGES/django.po @@ -4069,8 +4069,8 @@ msgstr "" msgid "" "A copy of both licenses is contained in every wger Workout\n" "Manager release and can be read in the\n" -"AGPL.txt\n" -"or CC-BY-SA.txt\n" +"AGPL.txt\n" +"or CC-BY-SA.txt\n" "files in the source code repository." msgstr "" diff --git a/wger/locale/ru/LC_MESSAGES/django.po b/wger/locale/ru/LC_MESSAGES/django.po index 360640db2..afb7cbfb0 100644 --- a/wger/locale/ru/LC_MESSAGES/django.po +++ b/wger/locale/ru/LC_MESSAGES/django.po @@ -4072,10 +4072,10 @@ msgstr "" msgid "" "A copy of both licenses is contained in every wger Workout\n" "Manager release and can be read in the\n" -"AGPL.txt\n" -"or CC-BY-SA.txt\n" +"AGPL.txt\n" +"or CC-BY-SA.txt\n" "files in the source code repository." -msgstr "Копия обеих лицензий содержится в каждом выпуске wger Workout\nManager и может быть прочитаным в файлах\nAGPL.txt\nили CC-BY-SA.txt\n в архиве исходного кода." +msgstr "Копия обеих лицензий содержится в каждом выпуске wger Workout\nManager и может быть прочитаным в файлах\nAGPL.txt\nили CC-BY-SA.txt\n в архиве исходного кода." #: utils/models.py:41 msgid "Author" diff --git a/wger/locale/sv_SE/LC_MESSAGES/django.po b/wger/locale/sv_SE/LC_MESSAGES/django.po index aa832a065..ba6a7ee28 100644 --- a/wger/locale/sv_SE/LC_MESSAGES/django.po +++ b/wger/locale/sv_SE/LC_MESSAGES/django.po @@ -4069,10 +4069,10 @@ msgstr "Data fixturer med övningar och ingredienslistorna publiceras dessutom u msgid "" "A copy of both licenses is contained in every wger Workout\n" "Manager release and can be read in the\n" -"AGPL.txt\n" -"or CC-BY-SA.txt\n" +"AGPL.txt\n" +"or CC-BY-SA.txt\n" "files in the source code repository." -msgstr "En kopia av båda licenserna finns i varje wger Workout Manager release och kan läsas i filerna AGPL.txt eller CC-av-SA.txt i källkodsdatabasen." +msgstr "En kopia av båda licenserna finns i varje wger Workout Manager release och kan läsas i filerna AGPL.txt eller CC-av-SA.txt i källkodsdatabasen." #: utils/models.py:41 msgid "Author" diff --git a/wger/locale/tr/LC_MESSAGES/django.po b/wger/locale/tr/LC_MESSAGES/django.po index 0cba9c267..afd7c7599 100644 --- a/wger/locale/tr/LC_MESSAGES/django.po +++ b/wger/locale/tr/LC_MESSAGES/django.po @@ -4066,8 +4066,8 @@ msgstr "" msgid "" "A copy of both licenses is contained in every wger Workout\n" "Manager release and can be read in the\n" -"AGPL.txt\n" -"or CC-BY-SA.txt\n" +"AGPL.txt\n" +"or CC-BY-SA.txt\n" "files in the source code repository." msgstr "" diff --git a/wger/locale/uk/LC_MESSAGES/django.po b/wger/locale/uk/LC_MESSAGES/django.po index c20aeae56..af1c0b0a8 100644 --- a/wger/locale/uk/LC_MESSAGES/django.po +++ b/wger/locale/uk/LC_MESSAGES/django.po @@ -4071,8 +4071,8 @@ msgstr "" msgid "" "A copy of both licenses is contained in every wger Workout\n" "Manager release and can be read in the\n" -"AGPL.txt\n" -"or CC-BY-SA.txt\n" +"AGPL.txt\n" +"or CC-BY-SA.txt\n" "files in the source code repository." msgstr "" diff --git a/wger/locale/zh_CN/LC_MESSAGES/django.po b/wger/locale/zh_CN/LC_MESSAGES/django.po index a6fb8ac3b..2b055a528 100644 --- a/wger/locale/zh_CN/LC_MESSAGES/django.po +++ b/wger/locale/zh_CN/LC_MESSAGES/django.po @@ -4067,10 +4067,10 @@ msgstr "" msgid "" "A copy of both licenses is contained in every wger Workout\n" "Manager release and can be read in the\n" -"AGPL.txt\n" -"or CC-BY-SA.txt\n" +"AGPL.txt\n" +"or CC-BY-SA.txt\n" "files in the source code repository." -msgstr "在每一个wger 健身经理发行版本中,都包含两种软件条\n款的拷贝,这些拷贝可以在源代码仓库\n的AGPL.txt\nor CC-BY-SA.txt\n文件中读到." +msgstr "在每一个wger 健身经理发行版本中,都包含两种软件条\n款的拷贝,这些拷贝可以在源代码仓库\n的AGPL.txt\nor CC-BY-SA.txt\n文件中读到." #: utils/models.py:41 msgid "Author" diff --git a/wger/locale/zh_TW/LC_MESSAGES/django.po b/wger/locale/zh_TW/LC_MESSAGES/django.po index ea27df5ff..cb1ed6083 100644 --- a/wger/locale/zh_TW/LC_MESSAGES/django.po +++ b/wger/locale/zh_TW/LC_MESSAGES/django.po @@ -4066,8 +4066,8 @@ msgstr "" msgid "" "A copy of both licenses is contained in every wger Workout\n" "Manager release and can be read in the\n" -"AGPL.txt\n" -"or CC-BY-SA.txt\n" +"AGPL.txt\n" +"or CC-BY-SA.txt\n" "files in the source code repository." msgstr "" diff --git a/wger/software/templates/changelog.html b/wger/software/templates/changelog.html index 1cc5f6b73..863ce6c62 100644 --- a/wger/software/templates/changelog.html +++ b/wger/software/templates/changelog.html @@ -12,28 +12,28 @@ @@ -51,23 +51,23 @@
  • Workout PDF can now print the exercises' images and comments - #261 + #261
  • Allow login with username or email - #164 + #164
  • Correctly use user weight when calculating nutrional plans' calories - #210 + #210
  • Fix problem with datepicker - #192 + #192
  • Order of exercises in supersets is not reverted anymore - #229 + #229
  • Improvements to the gym management: @@ -75,84 +75,84 @@
  • Allow to add contracts to members
  • Vastly reduce the number of database queries in gym member list - #144 + #144
  • Global list of users for installation - #212 + #212
  • Allow administrators to restrict user registration - #220 + #220
  • Visual consistency for lists and actions
  • Refactored and improved code, among others - #208 + #208
  • Allow gym managers to reset a member's password - #186 + #186
  • Better rendering of some form elements - #244 + #244
  • Improved GUI consistencyn - #149 + #149
  • Docker images for easier installation - #181 + #181
  • Use hostname for submitted exercises - #159 + #159
  • Download js libraries with bowerjs - #126 + #126
  • Improved and more flexible management commands - #184 + #184
  • Fixed error when importin weight entries from CSV - #204 + #204
  • Fixed problems when building and installing the application on Windows - #197 + #197
  • Fixed potential Denial Of Service attack - #238 + #238
  • Dummy data generator can not create nutrition plans - #241 + #241
  • Other improvements and bugfixes - #267 - #264 - #256 - #242 - #238 - #236 - #206 - #202 - #195 - #190 - #194 - #185 - #182 - #179 - #150 + #267 + #264 + #256 + #242 + #238 + #236 + #206 + #202 + #195 + #190 + #194 + #185 + #182 + #179 + #150
  • @@ -176,66 +176,66 @@
  • Save planed weight along with the repetitions - #119 + #119
  • Improvements to the workout calendar - #98 + #98
  • Allow external access to workouts and other pages to allow for sharing - #102 - #124 + #102 + #124
  • Email reminder to regularly enter (body) weight entries - #115 + #115
  • Allow users to submit corrections to exercises
  • Add day detail view in workout calendar - #103 + #103
  • Fix bug where the exercises added to a superset did not remain sorted - #89 + #89
  • Reduce size of generated html code - #125 + #125
  • Allow users to copy shared workouts from others - #127 + #127
  • Added breadbrumbs, to make navigation easier - #101 + #101
  • Add option to delete workout sessions and their logs - #156 + #156
  • Improve installation, development and maintenance documentation - #114 + #114
  • Other improvements and bugfixes - #99 - #100 - #106 - #108 - #110 - #117 - #118 - #128 - #131 - #135 - #145 - #155 + #99 + #100 + #106 + #108 + #110 + #117 + #118 + #128 + #131 + #135 + #145 + #155
  • @@ -249,13 +249,13 @@
  • Dutch (many thanks to David Machiels!)
  • Portuguese (many thanks to Jefferson Campos! - website, github) - #97 + #97
  • Add support for gym management - #85 + #85