Browse Source

move to new frontend using mini.css

april1st
Alexandros Theodotou 4 years ago
parent
commit
968beaaa3b
Signed by: alex
GPG Key ID: 022EAE42313D70F3
  1. 2
      common/base.j2
  2. 53
      common/footer.j2.inc
  3. 82
      common/header.j2.inc
  4. 131
      common/navigation.j2.inc
  5. 3719
      dist/css/bootstrap-grid.css
  6. 1
      dist/css/bootstrap-grid.css.map
  7. 7
      dist/css/bootstrap-grid.min.css
  8. 1
      dist/css/bootstrap-grid.min.css.map
  9. 331
      dist/css/bootstrap-reboot.css
  10. 1
      dist/css/bootstrap-reboot.css.map
  11. 8
      dist/css/bootstrap-reboot.min.css
  12. 1
      dist/css/bootstrap-reboot.min.css.map
  13. 10038
      dist/css/bootstrap.css
  14. 1
      dist/css/bootstrap.css.map
  15. 7
      dist/css/bootstrap.min.css
  16. 1
      dist/css/bootstrap.min.css.map
  17. 22
      dist/mini.css/LICENSE
  18. 2173
      dist/mini.css/mini-dark.css
  19. 406
      locale/ar/LC_MESSAGES/messages.po
  20. 361
      locale/cs/LC_MESSAGES/messages.po
  21. 361
      locale/da/LC_MESSAGES/messages.po
  22. 628
      locale/de/LC_MESSAGES/messages.po
  23. 509
      locale/el/LC_MESSAGES/messages.po
  24. 359
      locale/en/LC_MESSAGES/messages.po
  25. 416
      locale/es/LC_MESSAGES/messages.po
  26. 361
      locale/et/LC_MESSAGES/messages.po
  27. 361
      locale/fi/LC_MESSAGES/messages.po
  28. 625
      locale/fr/LC_MESSAGES/messages.po
  29. 361
      locale/gd/LC_MESSAGES/messages.po
  30. 388
      locale/hi/LC_MESSAGES/messages.po
  31. 479
      locale/it/LC_MESSAGES/messages.po
  32. 618
      locale/ja/LC_MESSAGES/messages.po
  33. 471
      locale/ko/LC_MESSAGES/messages.po
  34. 363
      locale/messages.pot
  35. 454
      locale/nb_NO/LC_MESSAGES/messages.po
  36. 361
      locale/nl/LC_MESSAGES/messages.po
  37. 457
      locale/pl/LC_MESSAGES/messages.po
  38. 533
      locale/pt/LC_MESSAGES/messages.po
  39. 361
      locale/pt_BR/LC_MESSAGES/messages.po
  40. 566
      locale/ru/LC_MESSAGES/messages.po
  41. 361
      locale/sv/LC_MESSAGES/messages.po
  42. 555
      locale/zh/LC_MESSAGES/messages.po
  43. BIN
      static/images/aug_22_2019.png
  44. BIN
      static/images/z.png
  45. 109
      static/navbar.css
  46. 34
      static/responsiveslides.css
  47. 395
      static/styles.css
  48. 9
      template.py
  49. 110
      template/community.html.j2
  50. 183
      template/download.html.j2
  51. 311
      template/index.html.j2
  52. 112
      template/reference.html.j2
  53. 18
      templates/feed-atom.py
  54. 28
      templates/feed.atom.j2
  55. 31
      templates/feed.xml

2
common/base.j2

@ -18,7 +18,7 @@ GNU Affero General Public License for more details. @@ -18,7 +18,7 @@ GNU Affero General Public License for more details.
<head>
<meta charset="UTF-8"/>
<title>{{ _("Zrythm") }}</title>
<meta name="description" content="{{ _('An highly automated, intuitive, Digital Audio Workstation (DAW)') }}" />
<meta name="description" content="{{ _('A highly automated and intuitive Digital Audio Workstation (DAW)') }}" />
{% include "common/header.j2.inc" %}
{% block head_content %}{% endblock %}
</head>

53
common/footer.j2.inc

@ -13,42 +13,23 @@ but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -13,42 +13,23 @@ but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
#}
<footer id="footer">
<div class="container-fluid cushion-below text-center">
<div class="container">
<div class="row">
<div class="col-12 col-sm-4">
<ul class="footer-list">
<li><p><a href="team.html">{{ _("Team") }}</a></p></li>
<li><p><a href="contact.html">{{ _("Contact") }}</a></p></li>
<li><p><a href="about.html">{{ _("About Zrythm") }}</a></p></li>
</ul>
</div>
<div class="col-12 col-sm-4">
<ul class="footer-list">
<li><p><a href="{{ issue_tracker }}">{{ _("Issue Tracker") }}</a></p></li>
<li><p><a href="{{ git_url }}">{{ _("Source Code") }}</a></p></li>
<li><p><a href="javascript.html" rel="jslicense">{{ _("JavaScript Licenses") }}</a></p></li>
</ul>
</div>
<div class="col-12 col-sm-4">
<ul class="footer-list">
<li><p><a href="https://manual.zrythm.org/{{ lang }}">{{ _("Manual") }}</a></p></li>
<li><p><a href="faq.html">{{ _("FAQ") }}</a></p></li>
<li><p><a href="join-us.html">{{ _("Support Us") }}</a></p></li>
</ul>
</div>
<footer>
<div class="container footer_container">
<div class="row">
<div class="col-sm-10">
<p>
Copyright &copy; 2019 Alexandros Theodotou
</p>
</div>
<div class="col-sm-2">
<right>
<a href="https://liberapay.com/Zrythm/donate">
<img
class="liberapay_btn"
alt="Donate using Liberapay"
src="{{ url('static/images/donate_liberapay.svg') }}">
</a>
</right>
</div>
</div>
</div>
<div class="container text-center">
<p>
{% trans %}
Copyright &copy; 2019 Alexandros Theodotou et al.<br>
<a href="{{ git_web_url }}">Source code of this site.</a></br>
Report issues with this website to <a href="https://savannah.nongnu.org/support/?func=additem&group=zrythm">us</a>.
{% endtrans %}
</p>
<p style="padding-bottom: 12px;"></p>
</div>
</footer>

82
common/header.j2.inc

@ -13,70 +13,32 @@ but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -13,70 +13,32 @@ but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
#}
<script>
/*
@licstart The following is the entire license notice for the
JavaScript code in this page.
Copyright (C) 2014-2017 GNUnet e.V.
<link rel="alternate" hreflang="en" href="{{ self_localized('en') }}" />
<link rel="alternate" hreflang="de" href="{{ self_localized('de') }}" />
<link rel="alternate" hreflang="fr" href="{{ self_localized('fr') }}" />
<link rel="alternate" hreflang="es" href="{{ self_localized('es') }}" />
<link rel="alternate" hreflang="it" href="{{ self_localized('it') }}" />
The JavaScript code in this page is free software: you can
redistribute it and/or modify it under the terms of the GNU
General Public License (GNU GPL) as published by the Free Software
Foundation, either version 3 of the License, or (at your option)
any later version. The code is distributed WITHOUT ANY WARRANTY;
without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU GPL for more details.
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Alexandros Theodotou">
<link rel="icon" href="{{ url('static/favicon.ico') }}">
As additional permission under GNU GPL version 3 section 7, you
may distribute non-source (e.g., minimized or compacted) forms of
that code without the copy of the GNU GPL normally required by
section 4, provided you include this license notice and a URL
through which recipients can access the Corresponding Source.
<!-- mini.css -->
<link href="{{ url('dist/mini.css/mini-dark.css') }}" rel="stylesheet">
@licend The above is the entire license notice
for the JavaScript code in this page.
*/
</script>
<!-- Custom styles for this template -->
<link href="{{ url('static/styles.css') }}" rel="stylesheet">
<link rel="alternate" hreflang="en" href="{{ self_localized('en') }}" />
<link rel="alternate" hreflang="de" href="{{ self_localized('de') }}" />
<link rel="alternate" hreflang="fr" href="{{ self_localized('fr') }}" />
<link rel="alternate" hreflang="es" href="{{ self_localized('es') }}" />
<link rel="alternate" hreflang="it" href="{{ self_localized('it') }}" />
<!-- fork awesome for icons -->
<!--<link href="{{ url('dist/font-awesome/css/all.css') }}" rel="stylesheet">-->
<link href="{{ url('dist/fork-awesome/css/fork-awesome.min.css') }}" rel="stylesheet">
<!-- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/fork-awesome@1.1.7/css/fork-awesome.min.css" integrity="sha256-gsmEoJAws/Kd3CjuOQzLie5Q3yshhvmo7YNtBG7aaEY=" crossorigin="anonymous"> -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Zrythm contributors">
<link rel="icon" href="{{ url('static/favicon.ico') }}">
<!-- handwritten rss -->
<link rel="alternate" type="application/rss+xml" title="Zrythm.org rss" href="rss.xml" />
<!-- Bootstrap core CSS -->
<link href="{{ url('dist/css/bootstrap.min.css') }}" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="{{ url('static/styles.css') }}" rel="stylesheet">
<script src="{{ url('dist/js/jquery-1.11.1.min.js') }}"></script>
<script src="{{ url('dist/js/bootstrap.min.js') }}"></script>
<link href="{{ url('static/navbar.css') }}" rel="stylesheet">
<!-- Responsiveslides JS/CSS -->
<script src="{{ url('dist/js/responsiveslides.min.js') }}"></script>
<link href="{{ url('static/responsiveslides.css') }}" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<!-- fork awesome, for team page -->
<!--<link href="{{ url('dist/font-awesome/css/all.css') }}" rel="stylesheet">-->
<link href="{{ url('dist/fork-awesome/css/fork-awesome.min.css') }}" rel="stylesheet">
<!-- <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/fork-awesome@1.1.7/css/fork-awesome.min.css" integrity="sha256-gsmEoJAws/Kd3CjuOQzLie5Q3yshhvmo7YNtBG7aaEY=" crossorigin="anonymous"> -->
<!-- handwritten rss -->
<link rel="alternate" type="application/rss+xml" title="Zrythm.org rss" href="rss.xml" />
<!-- rss and atom, WIP
<link rel="alternate" type="application/rss+xml" href="{{ url('feed.rss') }} title="RSS feed for zrythm.org">
<link rel="alternate" type="application/atom+xml" href="{{ url('feed.atom') }} title="Atom feed for zrythm.org">
-->
<!-- rss and atom, WIP
<link rel="alternate" type="application/rss+xml" href="{{ url('feed.rss') }} title="RSS feed for zrythm.org">
<link rel="alternate" type="application/atom+xml" href="{{ url('feed.atom') }} title="Atom feed for zrythm.org">
-->

131
common/navigation.j2.inc

@ -13,125 +13,16 @@ but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -13,125 +13,16 @@ but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
#}
<!--
<div id="header" class="">
<ul class="skip">
<li><a href="#nav">jump to main navigation</a></li>
<li><a href="#content">jump to main content</a></li>
<li><a href="#footer">jump to footer</a></li>
</ul>
</div>
-->
<noscript>
<style>
.collapse
{
display: block;
}
</style>
</noscript>
<!-- <nav class="navbar navbar-toggleable navbar-toggleable-md navbar-expand-md navbar-inverse navbar-dark fixed-top bg-dark"> -->
<!--<nav class="navbar navbar-expand-md navar-inverse navbar-dark bg-dark fixed-top"> -->
<nav class="navbar navbar-expand-md fixed-top">
<a class="navbar-brand" href="index.html">
<!--
TODO: imo this is bad in the navbar.
a readable "gnunet" font-logo would
be better for orientation.
-->
<img src="{{ url('static/images/z.svg') }}" alt="Zrythm Home Icon" height="24px" />
<header>
<a href="index.html" class="logo">
<img class="logo_img" width=28
src="{{ url('static/images/z.png') }}"
alt="Logo">
</img>
</a>
<!-- menu button -->
<button class="navbar-toggler navbar-toggler-right custom-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarMain"
aria-controls="navbarMain"
aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!-- /menu button -->
<!-- navbar -->
<div class="collapse navbar-collapse" id="navbarMain">
<ul class="navbar-nav mr-auto nav">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" data-toggle="dropdown"
role="button" aria-haspopup="true" aria-expanded="false">
{{ _("Community") }}
</a>
<ul class="dropdown-menu" aria-labelledby="navbarMain">
<!--<li><a class="dropdown-item" href="https://forum.zrythm.org">{{ _("Forum") }} </a></li>-->
<li><a class="dropdown-item" href="engage.html">{{ _("Discussion") }} </a></li>
<li><a class="dropdown-item" href="join-us.html">{{ _("Join Us") }}</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle"
href="#"
data-toggle="dropdown"
role="button"
aria-haspopup="true"
aria-expanded="false">
{{ _("Development") }}
</a>
<ul class="dropdown-menu" aria-labelledby="navbarMain">
<li><a class="dropdown-item" href="https://docs.zrythm.org">{{ _("Developer Docs") }}</a></li>
<li><a class="dropdown-item" href="{{ issue_tracker }}">{{ _("Issue Tracker") }}</a></li>
<li><a class="dropdown-item" href="{{ git_url }}">{{ _("Source Code") }}</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle"
href="#"
data-toggle="dropdown"
role="button"
aria-haspopup="true"
aria-expanded="false">
{{ _("Documentation") }}
</a>
<ul class="dropdown-menu" aria-labelledby="navbarMain">
<li><a class="dropdown-item" href="tutorial.html">{{ _("Tutorials") }}</a></li>
<li><a class="dropdown-item" href="https://manual.zrythm.org/{{ lang }}/getting-started/basic-concepts-and-terminology.html">{{ _("Glossary") }}</a></li>
<li><a class="dropdown-item" target="_blank" href="https://manual.zrythm.org/{{ lang }}/">{{ _("Manual") }}</a></li>
<li><a class="dropdown-item" href="faq.html">{{ _("FAQ") }}</a></li>
</ul>
</li>
<li class="nav-item badge">
<a href="{{ savannah_downloads_url }}">
<img src="https://img.shields.io/badge/release-{{ version }}-blue.svg" alt="Release" />
</a>
</li>
<li class="nav-item badge">
<a href="https://hosted.weblate.org/engage/zrythm/?utm_source=widget">
<img src="https://hosted.weblate.org/widgets/zrythm/-/svg-badge.svg" alt="Translation status" />
</a>
</li>
<li class="nav-item badge">
<a href="https://www.gnu.org/licenses/agpl-3.0.html">
<img src="{{ url('static/images/agpl-v3.svg') }}" alt="License" height="35px" />
</a>
</li>
<li class="nav-item badge">
<a href="https://liberapay.com/Zrythm/donate"><img alt="Donate using Liberapay" src="{{ url('static/images/donate_liberapay.svg') }}"></a>
</li>
</ul>
<ul class="navbar-nav navbar-right nav">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#"
data-toggle="dropdown" role="button"
aria-haspopup="true" aria-expanded="false">
<i class="fa fa-language" aria-hidden="true"></i> {{ lang_full }} {{ lang_flag }}
</a>
<ul class="dropdown-menu dropdown-menu-right scrollable-menu" aria-labelledby="navbarMain">
{% for key in langs_full.keys() %}
<li><a class="dropdown-item" href="{{ self_localized(key) }}">{{ lang_flags[key] }} {{ langs_full[key] }}</a></li>
{% endfor %}
</ul>
</li> <!-- /navbar-right dropdown -->
</ul> <!-- /navbar-right -->
</div> <!-- /navbar -->
</nav>
<a href="index.html" class="button">Home</a>
<a href="download.html" class="button">Download</a>
<a href="reference.html" class="button">Reference</a>
<a href="community.html" class="button">Community</a>
</header>

3719
dist/css/bootstrap-grid.css vendored

File diff suppressed because it is too large Load Diff

1
dist/css/bootstrap-grid.css.map vendored

File diff suppressed because one or more lines are too long

7
dist/css/bootstrap-grid.min.css vendored

File diff suppressed because one or more lines are too long

1
dist/css/bootstrap-grid.min.css.map vendored

File diff suppressed because one or more lines are too long

331
dist/css/bootstrap-reboot.css vendored

@ -1,331 +0,0 @@ @@ -1,331 +0,0 @@
/*!
* Bootstrap Reboot v4.3.1 (https://getbootstrap.com/)
* Copyright 2011-2019 The Bootstrap Authors
* Copyright 2011-2019 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
*/
*,
*::before,
*::after {
box-sizing: border-box;
}
html {
font-family: sans-serif;
line-height: 1.15;
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
display: block;
}
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #212529;
text-align: left;
background-color: #fff;
}
[tabindex="-1"]:focus {
outline: 0 !important;
}
hr {
box-sizing: content-box;
height: 0;
overflow: visible;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 0;
margin-bottom: 0.5rem;
}
p {
margin-top: 0;
margin-bottom: 1rem;
}
abbr[title],
abbr[data-original-title] {
text-decoration: underline;
-webkit-text-decoration: underline dotted;
text-decoration: underline dotted;
cursor: help;
border-bottom: 0;
-webkit-text-decoration-skip-ink: none;
text-decoration-skip-ink: none;
}
address {
margin-bottom: 1rem;
font-style: normal;
line-height: inherit;
}
ol,
ul,
dl {
margin-top: 0;
margin-bottom: 1rem;
}
ol ol,
ul ul,
ol ul,
ul ol {
margin-bottom: 0;
}
dt {
font-weight: 700;
}
dd {
margin-bottom: .5rem;
margin-left: 0;
}
blockquote {
margin: 0 0 1rem;
}
b,
strong {
font-weight: bolder;
}
small {
font-size: 80%;
}
sub,
sup {
position: relative;
font-size: 75%;
line-height: 0;
vertical-align: baseline;
}
sub {
bottom: -.25em;
}
sup {
top: -.5em;
}
a {
color: #007bff;
text-decoration: none;
background-color: transparent;
}
a:hover {
color: #0056b3;
text-decoration: underline;
}
a:not([href]):not([tabindex]) {
color: inherit;
text-decoration: none;
}
a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
color: inherit;
text-decoration: none;
}
a:not([href]):not([tabindex]):focus {
outline: 0;
}
pre,
code,
kbd,
samp {
font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
font-size: 1em;
}
pre {
margin-top: 0;
margin-bottom: 1rem;
overflow: auto;
}
figure {
margin: 0 0 1rem;
}
img {
vertical-align: middle;
border-style: none;
}
svg {
overflow: hidden;
vertical-align: middle;
}
table {
border-collapse: collapse;
}
caption {
padding-top: 0.75rem;
padding-bottom: 0.75rem;
color: #6c757d;
text-align: left;
caption-side: bottom;
}
th {
text-align: inherit;
}
label {
display: inline-block;
margin-bottom: 0.5rem;
}
button {
border-radius: 0;
}
button:focus {
outline: 1px dotted;
outline: 5px auto -webkit-focus-ring-color;
}
input,
button,
select,
optgroup,
textarea {
margin: 0;
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
button,
input {
overflow: visible;
}
button,
select {
text-transform: none;
}
select {
word-wrap: normal;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
-webkit-appearance: button;
}
button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
cursor: pointer;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
padding: 0;
border-style: none;
}
input[type="radio"],
input[type="checkbox"] {
box-sizing: border-box;
padding: 0;
}
input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
-webkit-appearance: listbox;
}
textarea {
overflow: auto;
resize: vertical;
}
fieldset {
min-width: 0;
padding: 0;
margin: 0;
border: 0;
}
legend {
display: block;
width: 100%;
max-width: 100%;
padding: 0;
margin-bottom: .5rem;
font-size: 1.5rem;
line-height: inherit;
color: inherit;
white-space: normal;
}
progress {
vertical-align: baseline;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
height: auto;
}
[type="search"] {
outline-offset: -2px;
-webkit-appearance: none;
}
[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
::-webkit-file-upload-button {
font: inherit;
-webkit-appearance: button;
}
output {
display: inline-block;
}
summary {
display: list-item;
cursor: pointer;
}
template {
display: none;
}
[hidden] {
display: none !important;
}
/*# sourceMappingURL=bootstrap-reboot.css.map */

1
dist/css/bootstrap-reboot.css.map vendored

File diff suppressed because one or more lines are too long

8
dist/css/bootstrap-reboot.min.css vendored

@ -1,8 +0,0 @@ @@ -1,8 +0,0 @@
/*!
* Bootstrap Reboot v4.3.1 (https://getbootstrap.com/)
* Copyright 2011-2019 The Bootstrap Authors
* Copyright 2011-2019 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
*/*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus{outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}
/*# sourceMappingURL=bootstrap-reboot.min.css.map */

1
dist/css/bootstrap-reboot.min.css.map vendored

File diff suppressed because one or more lines are too long

10038
dist/css/bootstrap.css vendored

File diff suppressed because it is too large Load Diff

1
dist/css/bootstrap.css.map vendored

File diff suppressed because one or more lines are too long

7
dist/css/bootstrap.min.css vendored

File diff suppressed because one or more lines are too long

1
dist/css/bootstrap.min.css.map vendored

File diff suppressed because one or more lines are too long

22
dist/mini.css/LICENSE vendored

@ -0,0 +1,22 @@ @@ -0,0 +1,22 @@
MIT License
Copyright (c) 2016-2017 Angelos Chalaris
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

2173
dist/mini.css/mini-dark.css vendored

File diff suppressed because it is too large Load Diff

406
locale/ar/LC_MESSAGES/messages.po

@ -7,7 +7,7 @@ msgid "" @@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2019-07-15 23:08+0100\n"
"POT-Creation-Date: 2019-08-22 00:22+0100\n"
"PO-Revision-Date: 2019-05-09 09:52+0000\n"
"Last-Translator: Weblate Admin <weblate.admin@zrythm.org>\n"
"Language-Team: Arabic <https://translate.zrythm.org/projects/zrythm/website/"
@ -26,96 +26,15 @@ msgstr "" @@ -26,96 +26,15 @@ msgstr ""
msgid "Zrythm"
msgstr "Zrythm"
#: common/base.j2:21 template/index.html.j2:142
#: common/base.j2:21
#, fuzzy
msgid "An highly automated, intuitive, Digital Audio Workstation (DAW)"
msgid "A highly automated and intuitive Digital Audio Workstation (DAW)"
msgstr "ู…ุญุทุฉ ุนู…ู„ ุตูˆุชูŠุฉ ุฑู‚ู…ูŠุฉ ุนุงู„ูŠุฉ ุงู„ุฏู‚ุฉ ูˆุจุฏูŠู‡ูŠุฉ (DAW)"
#: common/footer.j2.inc:22 template/team.html.j2:21
msgid "Team"
msgstr ""
#: common/footer.j2.inc:23
msgid "Contact"
msgstr "ุงู„ุงุชุตุงู„"
#: common/footer.j2.inc:24 template/about.html.j2:22
#: template/about.html.j2:22
msgid "About Zrythm"
msgstr "ุญูˆู„ Zrythm"
#: common/footer.j2.inc:29 common/navigation.j2.inc:83
msgid "Issue Tracker"
msgstr ""
#: common/footer.j2.inc:30 common/navigation.j2.inc:84
msgid "Source Code"
msgstr "ูƒูˆุฏ ุงู„ู…ุตุฏุฑ"
#: common/footer.j2.inc:31 template/javascript.html.j2:21
#, fuzzy
#| msgid "Contact information"
msgid "JavaScript Licenses"
msgstr "ู…ุนู„ูˆู…ุงุช ุงู„ุชูˆุงุตู„"
#: common/footer.j2.inc:36 common/navigation.j2.inc:99
msgid "Manual"
msgstr "ูŠุฏูˆูŠ"
#: common/footer.j2.inc:37 common/navigation.j2.inc:100
msgid "FAQ"
msgstr "ุณุคุงู„ ุดุงุฆุน"
#: common/footer.j2.inc:38
msgid "Support Us"
msgstr ""
#: common/footer.j2.inc:46
#, python-format
msgid ""
"Copyright &copy; 2019 Alexandros Theodotou et al.<br> <a href="
"\"%(git_web_url)s\">Source code of this site.</a></br> Report issues with "
"this website to <a href=\"https://savannah.nongnu.org/support/?"
"func=additem&group=zrythm\">us</a>."
msgstr ""
#: common/navigation.j2.inc:64
msgid "Community"
msgstr "ุงู„ู…ุฌุชู…ุน"
#: common/navigation.j2.inc:67
msgid "Forum"
msgstr "ุงู„ู…ู†ุชุฏู‰"
#: common/navigation.j2.inc:68
msgid "Discussion"
msgstr ""
#: common/navigation.j2.inc:69
msgid "Join Us"
msgstr "ุงู†ุถู… ุงู„ูŠู†ุง"
#: common/navigation.j2.inc:79
msgid "Development"
msgstr "ุงู„ุชู†ู…ูŠุฉ"
#: common/navigation.j2.inc:82
#, fuzzy
#| msgid "Development"
msgid "Developer Docs"
msgstr "ุงู„ุชู†ู…ูŠุฉ"
#: common/navigation.j2.inc:94
msgid "Documentation"
msgstr "ุงู„ุชูˆุซูŠู‚"
#: common/navigation.j2.inc:97 template/tutorial.html.j2:21
msgid "Tutorials"
msgstr "ุฏุฑูˆุณ"
#: common/navigation.j2.inc:98
msgid "Glossary"
msgstr "ู…ุณุฑุฏ"
#: template/about.html.j2:25
msgid "Version"
msgstr ""
@ -155,6 +74,40 @@ msgid "" @@ -155,6 +74,40 @@ msgid ""
"a lot."
msgstr ""
#: template/community.html.j2:23
msgid "Community"
msgstr "ุงู„ู…ุฌุชู…ุน"
#: template/community.html.j2:30
#, fuzzy
#| msgid "Community"
msgid "Communication"
msgstr "ุงู„ู…ุฌุชู…ุน"
#: template/community.html.j2:38
msgid "IRC"
msgstr ""
#: template/community.html.j2:50
msgid "Matrix"
msgstr ""
#: template/community.html.j2:64
msgid "Issue tracker"
msgstr ""
#: template/community.html.j2:72
msgid "Savannah"
msgstr ""
#: template/community.html.j2:86
msgid "Translations"
msgstr ""
#: template/community.html.j2:94
msgid "Weblate"
msgstr ""
#: template/contact.html.j2:21
msgid "Contact information"
msgstr "ู…ุนู„ูˆู…ุงุช ุงู„ุชูˆุงุตู„"
@ -209,6 +162,64 @@ msgid "" @@ -209,6 +162,64 @@ msgid ""
"mailing list</a>."
msgstr ""
#: template/download.html.j2:23
msgid "Installation"
msgstr ""
#: template/download.html.j2:32
#, fuzzy
#| msgid "Source Code"
msgid "Source code"
msgstr "ูƒูˆุฏ ุงู„ู…ุตุฏุฑ"
#: template/download.html.j2:40
msgid "git repositories"
msgstr ""
#: template/download.html.j2:52
msgid "stable releases"
msgstr ""
#: template/download.html.j2:64
msgid "GPG signing key"
msgstr ""
#: template/download.html.j2:78
msgid "GNU Linux packages"
msgstr ""
#: template/download.html.j2:86
msgid "Arch (aur, git package)"
msgstr ""
#: template/download.html.j2:98
msgid "Arch (aur, stable)"
msgstr ""
#: template/download.html.j2:110
msgid "Debian (unofficial)"
msgstr ""
#: template/download.html.j2:122
msgid "Fedora (unofficial)"
msgstr ""
#: template/download.html.j2:134
msgid "Mageia (unofficial)"
msgstr ""
#: template/download.html.j2:146
msgid "Ubuntu (unofficial)"
msgstr ""
#: template/download.html.j2:160
msgid "Other Platforms"
msgstr ""
#: template/download.html.j2:168
msgid "FreeBSD (Freshports)"
msgstr ""
#: template/engage.html.j2:23
msgid "Talk With Us"
msgstr ""
@ -288,158 +299,65 @@ msgstr "" @@ -288,158 +299,65 @@ msgstr ""
msgid "Enable the universe repository:"
msgstr ""
#: template/index.html.j2:60
#, python-format
msgid ""
"Zrythm [<em>%(pronunciation)s</em>] is a highly automated Digital Audio "
"Workstation (DAW) designed to be featureful and intuitive to use. Zrythm "
"sets itself apart from other DAWs by allowing extensive automation via built-"
"in LFOs and envelopes and intuitive MIDI/audio editing and arranging via "
"clips."
msgstr ""
#: template/index.html.j2:64
msgid ""
"In the usual Composing -> Mixing -> Mastering workflow, Zrythm puts the most "
"focus on the Composing part. It allows musicians to quickly lay down and "
"process their musical ideas without taking too much time for unnecessary "
"work."
msgstr ""
#: template/index.html.j2:68
msgid ""
"Zrythm is <a href=\"http://www.gnu.org/philosophy/free-sw.html\">free "
"software</a> licensed under the <a href=\"https://www.gnu.org/licenses/"
"agpl-3.0.html\">GNU Affero General Public License, version 3.0 or later</a>"
msgstr ""
#: template/index.html.j2:76
msgid "Download"
msgstr ""
#: template/index.html.j2:85
#: template/index.html.j2:23
#, fuzzy
#| msgid "Source Code"
msgid "Source Tarball"
msgstr "ูƒูˆุฏ ุงู„ู…ุตุฏุฑ"
#: template/index.html.j2:95
msgid "Signature"
msgstr ""
#: template/index.html.j2:105
msgid "SHA256 Sum"
msgstr ""
#: template/index.html.j2:115
msgid "GPG Key"
msgstr ""
msgid "a highly automated and intuitive digital audio workstation"
msgstr "ู…ุญุทุฉ ุนู…ู„ ุตูˆุชูŠุฉ ุฑู‚ู…ูŠุฉ ุนุงู„ูŠุฉ ุงู„ุฏู‚ุฉ ูˆุจุฏูŠู‡ูŠุฉ (DAW)"
#: template/index.html.j2:125
msgid "Join &amp; support us!"
#: template/index.html.j2:39
msgid "Overview"
msgstr ""
#: template/index.html.j2:131
#: template/index.html.j2:45
#, python-format
msgid ""
"For more installation options see the <a href=\"https://manual.zrythm.org/"
"%(lang)s/configuration/installation/intro.html\">manual</a>"
msgstr ""
#: template/index.html.j2:148
msgid "Automated"
"Zrythm [<em>%(pronunciation)s</em>] is a digital audio workstation designed "
"to be featureful and easy to use with many automation possibilities."
msgstr ""
#: template/index.html.j2:150
msgid ""
"Built-in LFOs and envelopes for automating controls, automation curves for "
"more detailed automation, clips to loop your MIDI notes/audio and more."
msgstr ""
#: template/index.html.j2:160
msgid "Intuitive"
msgstr ""
#: template/index.html.j2:162
msgid ""
"Zrythm tries to keep the interface clean and pleasant to work with, with "
"intuitive ways of getting work done enabling a faster workflow."
msgstr ""
#: template/index.html.j2:171
msgid "Featureful"
msgstr ""
#: template/index.html.j2:174
msgid ""
"Automation Curves, Busses, drag and drop LV2 Plugins and Audio files, "
"Arranger Minimap, etc."
msgstr ""
#: template/index.html.j2:190
msgid "Features"
msgstr ""
#: template/index.html.j2:199
#: template/index.html.j2:56
msgid "Limitless Automation"
msgstr ""
#: template/index.html.j2:202
#: template/index.html.j2:61
msgid ""
"Automate almost anything with automation tracks using straight lines, ramps "
"and curves."
msgstr ""
#: template/index.html.j2:212
msgid "Built-in Modulators"
"Automate almost anything with automation events using straight lines, ramps "
"and curves, or with LFOs and envelopes."
msgstr ""
#: template/index.html.j2:215
msgid ""
"Modulate plugin controls using built-in LFOs, envelopes and other modulators "
"in the modulators tab."
msgstr ""
#: template/index.html.j2:224
msgid "Chord Assistance"
msgstr ""
#: template/index.html.j2:226
msgid ""
"A chord pad for quickly trying out chords in a scale and a chord track to "
"help with chord progressions."
msgstr ""
#: template/index.html.j2:238
#: template/index.html.j2:70
msgid "LV2 Plugins"
msgstr ""
#: template/index.html.j2:240
msgid "Works with LV2, a free standard for audio plugins."
#: template/index.html.j2:75
msgid ""
"Works with LV2, a free and extensible standard for audio plugins. Drag and "
"drop any plugin and start tweaking."
msgstr ""
#: template/index.html.j2:248
msgid "Speaks Your Language"
#: template/index.html.j2:86
msgid "Multilingual"
msgstr ""
#: template/index.html.j2:250
msgid ""
"Available in English, German, French, Italian, Spanish, Japanese and many "
"more languages."
#: template/index.html.j2:91
msgid "Zrythm speaks English, French, Japanese and German."
msgstr ""
#: template/index.html.j2:259
msgid "Cross-platform"
#: template/index.html.j2:98
msgid "Chord Assistance"
msgstr ""
#: template/index.html.j2:261
#: template/index.html.j2:103
msgid ""
"Works on GNU/Linux, FreeBSD and MacOS, including PCs, laptops and tablets."
"Featuring a chord pad for quickly trying out chords in a scale and chord "
"track to help with chord progressions."
msgstr ""
#: template/index.html.j2:274
msgid "News"
msgstr ""
#: template/javascript.html.j2:21
#, fuzzy
#| msgid "Contact information"
msgid "JavaScript Licenses"
msgstr "ู…ุนู„ูˆู…ุงุช ุงู„ุชูˆุงุตู„"
#: template/javascript.html.j2:30
msgid "Minified"
@ -574,6 +492,46 @@ msgstr "" @@ -574,6 +492,46 @@ msgstr ""
msgid "More news"
msgstr ""
#: template/reference.html.j2:23
msgid "Reference"
msgstr ""
#: template/reference.html.j2:30
#, fuzzy
#| msgid "Manual"
msgid "User Manual"
msgstr "ูŠุฏูˆูŠ"
#: template/reference.html.j2:38
msgid "Online manual"
msgstr ""
#: template/reference.html.j2:50
msgid "HTML-render (zip)"
msgstr ""
#: template/reference.html.j2:62
msgid "PDF-render"
msgstr ""
#: template/reference.html.j2:74
msgid "ePUB-render"
msgstr ""
#: template/reference.html.j2:88
#, fuzzy
#| msgid "Development"
msgid "Developer docs"
msgstr "ุงู„ุชู†ู…ูŠุฉ"
#: template/reference.html.j2:96
msgid "Online docs"
msgstr ""
#: template/team.html.j2:21
msgid "Team"
msgstr ""
#: template/team.html.j2:23
#, python-format
msgid ""
@ -595,6 +553,10 @@ msgstr "" @@ -595,6 +553,10 @@ msgstr ""
msgid "French translator"
msgstr ""
#: template/tutorial.html.j2:21
msgid "Tutorials"
msgstr "ุฏุฑูˆุณ"
#: template/tutorial.html.j2:24
msgid ""
"This page holds various tutorials for Zrythm. Some of them are not complete, "
@ -604,3 +566,29 @@ msgstr "" @@ -604,3 +566,29 @@ msgstr ""
#: template/tutorial.html.j2:30
msgid "Zrythm installation instructions: <ul> <li>TODO</li> </ul>"
msgstr ""
#~ msgid "Contact"
#~ msgstr "ุงู„ุงุชุตุงู„"
#~ msgid "FAQ"
#~ msgstr "ุณุคุงู„ ุดุงุฆุน"
#~ msgid "Forum"
#~ msgstr "ุงู„ู…ู†ุชุฏู‰"
#~ msgid "Join Us"
#~ msgstr "ุงู†ุถู… ุงู„ูŠู†ุง"
#~ msgid "Development"
#~ msgstr "ุงู„ุชู†ู…ูŠุฉ"
#~ msgid "Documentation"
#~ msgstr "ุงู„ุชูˆุซูŠู‚"
#~ msgid "Glossary"
#~ msgstr "ู…ุณุฑุฏ"
#, fuzzy
#~| msgid "Source Code"
#~ msgid "Source Tarball"
#~ msgstr "ูƒูˆุฏ ุงู„ู…ุตุฏุฑ"

361
locale/cs/LC_MESSAGES/messages.po

@ -7,7 +7,7 @@ msgid "" @@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PROJECT VERSION\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2019-07-15 23:08+0100\n"
"POT-Creation-Date: 2019-08-22 00:22+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
@ -21,91 +21,14 @@ msgstr "" @@ -21,91 +21,14 @@ msgstr ""
msgid "Zrythm"
msgstr ""
#: common/base.j2:21 template/index.html.j2:142
msgid "An highly automated, intuitive, Digital Audio Workstation (DAW)"
#: common/base.j2:21
msgid "A highly automated and intuitive Digital Audio Workstation (DAW)"
msgstr ""
#: common/footer.j2.inc:22 template/team.html.j2:21
msgid "Team"
msgstr ""
#: common/footer.j2.inc:23
msgid "Contact"
msgstr ""
#: common/footer.j2.inc:24 template/about.html.j2:22
#: template/about.html.j2:22
msgid "About Zrythm"
msgstr ""
#: common/footer.j2.inc:29 common/navigation.j2.inc:83
msgid "Issue Tracker"
msgstr ""
#: common/footer.j2.inc:30 common/navigation.j2.inc:84
msgid "Source Code"
msgstr ""
#: common/footer.j2.inc:31 template/javascript.html.j2:21
msgid "JavaScript Licenses"
msgstr ""
#: common/footer.j2.inc:36 common/navigation.j2.inc:99
msgid "Manual"
msgstr ""
#: common/footer.j2.inc:37 common/navigation.j2.inc:100
msgid "FAQ"
msgstr ""
#: common/footer.j2.inc:38
msgid "Support Us"
msgstr ""
#: common/footer.j2.inc:46
#, python-format
msgid ""
"Copyright &copy; 2019 Alexandros Theodotou et al.<br> <a href="
"\"%(git_web_url)s\">Source code of this site.</a></br> Report issues with "
"this website to <a href=\"https://savannah.nongnu.org/support/?"
"func=additem&group=zrythm\">us</a>."
msgstr ""
#: common/navigation.j2.inc:64
msgid "Community"
msgstr ""
#: common/navigation.j2.inc:67
msgid "Forum"
msgstr ""
#: common/navigation.j2.inc:68
msgid "Discussion"
msgstr ""
#: common/navigation.j2.inc:69
msgid "Join Us"
msgstr ""
#: common/navigation.j2.inc:79
msgid "Development"
msgstr ""
#: common/navigation.j2.inc:82
msgid "Developer Docs"
msgstr ""
#: common/navigation.j2.inc:94
msgid "Documentation"
msgstr ""
#: common/navigation.j2.inc:97 template/tutorial.html.j2:21
msgid "Tutorials"
msgstr ""
#: common/navigation.j2.inc:98
msgid "Glossary"
msgstr ""
#: template/about.html.j2:25
msgid "Version"
msgstr ""
@ -142,6 +65,38 @@ msgid "" @@ -142,6 +65,38 @@ msgid ""
"a lot."
msgstr ""
#: template/community.html.j2:23
msgid "Community"
msgstr ""
#: template/community.html.j2:30
msgid "Communication"
msgstr ""
#: template/community.html.j2:38
msgid "IRC"
msgstr ""
#: template/community.html.j2:50
msgid "Matrix"
msgstr ""
#: template/community.html.j2:64
msgid "Issue tracker"
msgstr ""
#: template/community.html.j2:72
msgid "Savannah"
msgstr ""
#: template/community.html.j2:86
msgid "Translations"
msgstr ""
#: template/community.html.j2:94
msgid "Weblate"
msgstr ""
#: template/contact.html.j2:21
msgid "Contact information"
msgstr ""
@ -194,6 +149,62 @@ msgid "" @@ -194,6 +149,62 @@ msgid ""
"mailing list</a>."
msgstr ""
#: template/download.html.j2:23
msgid "Installation"
msgstr ""
#: template/download.html.j2:32
msgid "Source code"
msgstr ""
#: template/download.html.j2:40
msgid "git repositories"
msgstr ""
#: template/download.html.j2:52
msgid "stable releases"
msgstr ""
#: template/download.html.j2:64
msgid "GPG signing key"
msgstr ""
#: template/download.html.j2:78
msgid "GNU Linux packages"
msgstr ""
#: template/download.html.j2:86
msgid "Arch (aur, git package)"
msgstr ""
#: template/download.html.j2:98
msgid "Arch (aur, stable)"
msgstr ""
#: template/download.html.j2:110
msgid "Debian (unofficial)"
msgstr ""
#: template/download.html.j2:122
msgid "Fedora (unofficial)"
msgstr ""
#: template/download.html.j2:134
msgid "Mageia (unofficial)"
msgstr ""
#: template/download.html.j2:146
msgid "Ubuntu (unofficial)"
msgstr ""
#: template/download.html.j2:160
msgid "Other Platforms"
msgstr ""
#: template/download.html.j2:168
msgid "FreeBSD (Freshports)"
msgstr ""
#: template/engage.html.j2:23
msgid "Talk With Us"
msgstr ""
@ -271,155 +282,61 @@ msgstr "" @@ -271,155 +282,61 @@ msgstr ""
msgid "Enable the universe repository:"
msgstr ""
#: template/index.html.j2:60
#, python-format
msgid ""
"Zrythm [<em>%(pronunciation)s</em>] is a highly automated Digital Audio "
"Workstation (DAW) designed to be featureful and intuitive to use. Zrythm "
"sets itself apart from other DAWs by allowing extensive automation via built-"
"in LFOs and envelopes and intuitive MIDI/audio editing and arranging via "
"clips."
msgstr ""
#: template/index.html.j2:64
msgid ""
"In the usual Composing -> Mixing -> Mastering workflow, Zrythm puts the most "
"focus on the Composing part. It allows musicians to quickly lay down and "
"process their musical ideas without taking too much time for unnecessary "
"work."
msgstr ""
#: template/index.html.j2:68
msgid ""
"Zrythm is <a href=\"http://www.gnu.org/philosophy/free-sw.html\">free "
"software</a> licensed under the <a href=\"https://www.gnu.org/licenses/"
"agpl-3.0.html\">GNU Affero General Public License, version 3.0 or later</a>"
msgstr ""
#: template/index.html.j2:76
msgid "Download"
msgstr ""
#: template/index.html.j2:85
msgid "Source Tarball"
msgstr ""
#: template/index.html.j2:95
msgid "Signature"
msgstr ""
#: template/index.html.j2:105
msgid "SHA256 Sum"
msgstr ""
#: template/index.html.j2:115
msgid "GPG Key"
#: template/index.html.j2:23
msgid "a highly automated and intuitive digital audio workstation"
msgstr ""
#: template/index.html.j2:125
msgid "Join &amp; support us!"
#: template/index.html.j2:39
msgid "Overview"
msgstr ""
#: template/index.html.j2:131
#: template/index.html.j2:45
#, python-format
msgid ""
"For more installation options see the <a href=\"https://manual.zrythm.org/"
"%(lang)s/configuration/installation/intro.html\">manual</a>"
msgstr ""
#: template/index.html.j2:148
msgid "Automated"
msgstr ""
#: template/index.html.j2:150
msgid ""
"Built-in LFOs and envelopes for automating controls, automation curves for "
"more detailed automation, clips to loop your MIDI notes/audio and more."
msgstr ""
#: template/index.html.j2:160
msgid "Intuitive"
msgstr ""
#: template/index.html.j2:162
msgid ""
"Zrythm tries to keep the interface clean and pleasant to work with, with "
"intuitive ways of getting work done enabling a faster workflow."
msgstr ""
#: template/index.html.j2:171
msgid "Featureful"
msgstr ""
#: template/index.html.j2:174
msgid ""
"Automation Curves, Busses, drag and drop LV2 Plugins and Audio files, "
"Arranger Minimap, etc."
"Zrythm [<em>%(pronunciation)s</em>] is a digital audio workstation designed "
"to be featureful and easy to use with many automation possibilities."
msgstr ""
#: template/index.html.j2:190
msgid "Features"
msgstr ""
#: template/index.html.j2:199
#: template/index.html.j2:56
msgid "Limitless Automation"
msgstr ""
#: template/index.html.j2:202
msgid ""
"Automate almost anything with automation tracks using straight lines, ramps "
"and curves."
msgstr ""
#: template/index.html.j2:212
msgid "Built-in Modulators"
msgstr ""
#: template/index.html.j2:215
msgid ""
"Modulate plugin controls using built-in LFOs, envelopes and other modulators "
"in the modulators tab."
msgstr ""
#: template/index.html.j2:224
msgid "Chord Assistance"
msgstr ""
#: template/index.html.j2:226
#: template/index.html.j2:61
msgid ""
"A chord pad for quickly trying out chords in a scale and a chord track to "
"help with chord progressions."
"Automate almost anything with automation events using straight lines, ramps "
"and curves, or with LFOs and envelopes."
msgstr ""