diff --git a/commons/templatetags/motd.py b/commons/templatetags/motd.py new file mode 100644 index 0000000..e1863d1 --- /dev/null +++ b/commons/templatetags/motd.py @@ -0,0 +1,22 @@ +from typing import Dict, Optional + +from django import template +from django.utils.safestring import SafeString +from django.utils.translation import gettext as _ + +from www.models import MOTD + +register = template.Library() + + +@register.simple_tag(takes_context=True) +def motd(context: Dict) -> Optional[SafeString]: + show_motd = MOTD.objects.filter(published=True).order_by('-id').first() + if not show_motd: + return None + + message = show_motd.text + if show_motd.link: + message += (' ' % show_motd.link) + _('Read more') + '' + + return SafeString(message) diff --git a/frontend/src/common/js/main.js b/frontend/src/common/js/main.js index 75c50b0..bdc5ceb 100644 --- a/frontend/src/common/js/main.js +++ b/frontend/src/common/js/main.js @@ -5,3 +5,23 @@ import {Dropdown} from 'bootstrap'; // Ensure locales are made for all languages // noinspection JSUnusedLocalSymbols const helloWorld = gettext('Hello World'); + +window.addEventListener('DOMContentLoaded', () => { + const scrollMotdBreak = 64; + const motdElement = document.getElementById('al-motd'); + if (motdElement) { + const navBarElement = document.getElementById('al-primary-navbar'); + const maybeHideMotd = () => { + if (window.scrollY > scrollMotdBreak && motdElement.style.display !== 'none') { + motdElement.style.display = 'none'; + navBarElement.classList.remove('with-motd'); + } else if (window.scrollY <= scrollMotdBreak && motdElement.style.display !== 'block') { + motdElement.style.display = 'block'; + navBarElement.classList.add('with-motd'); + } + }; + + document.addEventListener('scroll', maybeHideMotd); + maybeHideMotd() + } +}); diff --git a/frontend/src/common/scss/main.scss b/frontend/src/common/scss/main.scss index 9c476fe..810f548 100644 --- a/frontend/src/common/scss/main.scss +++ b/frontend/src/common/scss/main.scss @@ -40,6 +40,11 @@ h1, h2, h3, h4, h5, h6 { font-weight: 500; box-shadow: al-shadow(3, 0.5); + &.with-motd { + padding-bottom: 0; + border-bottom: 0; + } + .dropdown-menu-dark { background: $al-c-black-pearl; border: 0; @@ -93,6 +98,36 @@ h1, h2, h3, h4, h5, h6 { } } +#al-motd { + width: 100%; + background: darken($al-c-black-pearl, 5%); + margin-top: 8px; + padding-top: 12px; + padding-bottom: 12px; + font-size: 0.8rem; + + & > .container { + display: flex; + + & > i { + padding-right: 8px; + } + + & > .text { + display: block; + + a { + text-decoration: none; + + &:hover { + text-decoration: underline; + color: inherit; + } + } + } + } +} + // Section titles section h1.al-section-title { font-size: 2.6rem; diff --git a/frontend/src/modules/page_elevate/main.js b/frontend/src/modules/page_elevate/main.js new file mode 100644 index 0000000..f1ad40f --- /dev/null +++ b/frontend/src/modules/page_elevate/main.js @@ -0,0 +1 @@ +import './main.scss'; diff --git a/frontend/src/modules/page_elevate/main.scss b/frontend/src/modules/page_elevate/main.scss new file mode 100644 index 0000000..f9edfce --- /dev/null +++ b/frontend/src/modules/page_elevate/main.scss @@ -0,0 +1,50 @@ +@import "~bootstrap/scss/bootstrap-utilities"; +@import "../../common/scss/variables"; +@import "../../common/scss/functions"; + +.al-page-elevate-index { + .al-cta-discuss { + background: $al-c-science-blue-light; + color: #222; + + &:hover { + background: darken($al-c-science-blue-light, 5%); + } + } + + .al-cta-learn-how { + background: $al-c-atlantis; + color: #222222; + + &:hover { + background: darken($al-c-atlantis, 5%); + } + } + + .faq-container { + margin-bottom: 120px; + } + + @include media-breakpoint-up(md) { + .al-page-elevate-index { + + } + } + + .al-faq-slim { + padding-top: 25px; + padding-bottom: 25px; + font-weight: 300; + + & > div { + padding-bottom: 26px; + + div.question { + font-weight: 500; + font-size: 1.1rem; + text-transform: uppercase; + margin-bottom: 8px; + } + } + } +} diff --git a/frontend/webpack.config.js b/frontend/webpack.config.js index 1506690..b54702f 100644 --- a/frontend/webpack.config.js +++ b/frontend/webpack.config.js @@ -39,6 +39,7 @@ Encore .addEntry('page_showcase', __dirname + '/src/modules/page_showcase/main.js') .addEntry('page_contribute', __dirname + '/src/modules/page_contribute/main.js') .addEntry('page_foundation', __dirname + '/src/modules/page_foundation/main.js') + .addEntry('page_elevate', __dirname + '/src/modules/page_elevate/main.js') ; if (Encore.isDevServer() || Encore.isDev()) { diff --git a/locale/de/LC_MESSAGES/django.po b/locale/de/LC_MESSAGES/django.po index 372baa2..621e727 100644 --- a/locale/de/LC_MESSAGES/django.po +++ b/locale/de/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-05 20:01+0000\n" +"POT-Creation-Date: 2021-10-19 06:19+0000\n" "PO-Revision-Date: 2021-08-12 22:32+0000\n" "Last-Translator: Conrad \n" "Language-Team: German Package " +"Evolution Service (PES) which allows you to download, customize and even " +"submit new data sets for packages. Users and maintainers can both utilize " +"the PES to help make migrations smooth and easy." +msgstr "" + +#: www/templates/elevate/index.html:93 +#, fuzzy +#| msgid "Community chat" +msgid "Community-wide Project" +msgstr "Gemeinschafts-Chat" + +#: www/templates/elevate/index.html:96 +msgid "" +"ELevate is developed in a distribution agnostic way and is built as a tool " +"for the whole ecosystem, not just AlmaLinux. ELevate supports migrating to/" +"from other distributions and is open for all to contribute to and enhance." +msgstr "" + +#: www/templates/elevate/index.html:107 +msgid "FAQ" +msgstr "" + +#: www/templates/elevate/index.html:112 +msgid "What is ELevate?" +msgstr "" + +#: www/templates/elevate/index.html:117 +msgid "" +"ELevate is a project aimed to provide the ability to migrate between major " +"versions of RHEL-based distributions from 7.x to 8.x. It combines Red Hat's " +"Leapp framework with a community created library and service for the " +"migration metadata set required for it." +msgstr "" + +#: www/templates/elevate/index.html:127 +msgid "This looks awesome. How can I contribute?" +msgstr "" + +#: www/templates/elevate/index.html:132 +#, python-format +msgid "" +"First, join us at #migration Mattermost " +"channel. You can find the tool code here: " +"%(github_link)s and you can add/edit/interact with package metadata at " +"%(pes_link)s." +msgstr "" + +#: www/templates/elevate/index.html:143 +msgid "Is this ready for production?" +msgstr "" + +#: www/templates/elevate/index.html:148 +msgid "" +"YMMV. Every environment is different and unique based on applications and " +"configurations. Since this is still under development, to avoid any " +"surprises, we highly recommend that you test migrations scenarios in a VM or " +"sandbox before running a migration in production." +msgstr "" + +#: www/templates/elevate/index.html:158 +msgid "What operating systems does ELevate support?" +msgstr "" + +#: www/templates/elevate/index.html:163 +msgid "" +"Currently ELevate provides Leapp data for migration from CentOS 7 to the " +"following OS: " +msgstr "" + +#: www/templates/elevate/index.html:177 +msgid "Will migration be \"in-place?\"" +msgstr "" + +#: www/templates/elevate/index.html:182 +msgid "Yes. All your data, applications and settings will be kept." +msgstr "" + +#: www/templates/elevate/index.html:190 +msgid "Is this live or does it require a reboot?" +msgstr "" + +#: www/templates/elevate/index.html:195 +msgid "Migrations will require your system to reboot twice." +msgstr "" + +#: www/templates/elevate/index.html:203 +msgid "What does the Package Evolution Service do?" +msgstr "" + +#: www/templates/elevate/index.html:208 +msgid "" +"The Package Evolution Service stores package migration metadata. Metadata " +"answers questions about how packages evolve between major distribution " +"releases. PES supports several classes of rules for packages such as added, " +"removed, renamed, split, merged, and so on. The service also allows everyone " +"to improve the data by adding new actions or even create a custom dataset " +"for packages from third-party or private repositories." +msgstr "" + +#: www/templates/elevate/index.html:220 +msgid "" +"Red Hat offers a data set which is non-freely licensed. Are you using this " +"same data set?" +msgstr "" + +#: www/templates/elevate/index.html:225 +msgid "" +"No. We respect Red Hat’s work and our initial data set was provided by the " +"AlmaLinux Foundation and contributions from Oracle." +msgstr "" + +#: www/templates/elevate/index.html:234 +msgid "What license is your metadata under?" +msgstr "" + +#: www/templates/elevate/index.html:239 +msgid "The metadata is provided under an Apache License." +msgstr "" + +#: www/templates/elevate/index.html:247 +msgid "Why are you supporting migration to other distributions?" +msgstr "" + +#: www/templates/elevate/index.html:252 +msgid "" +"The CentOS ecosystem is a very large and diverse community. We’ve developed " +"this project in good faith in the hope that everyone in the community can " +"use and contribute to, no matter which distro you prefer. That’s the open " +"source way." +msgstr "" + #: www/templates/foundation/members/index.html:6 #: www/templates/foundation/members/index.html:7 #, fuzzy diff --git a/locale/de/LC_MESSAGES/djangojs.po b/locale/de/LC_MESSAGES/djangojs.po index 4e75a82..f6f1b42 100644 --- a/locale/de/LC_MESSAGES/djangojs.po +++ b/locale/de/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-05 20:01+0000\n" +"POT-Creation-Date: 2021-10-19 06:19+0000\n" "PO-Revision-Date: 2021-08-12 22:32+0000\n" "Last-Translator: Free Soft Warrior \n" "Language-Team: German \n" "Language-Team: Spanish Package " +"Evolution Service (PES) which allows you to download, customize and even " +"submit new data sets for packages. Users and maintainers can both utilize " +"the PES to help make migrations smooth and easy." +msgstr "" + +#: www/templates/elevate/index.html:93 +#, fuzzy +#| msgid "Community chat" +msgid "Community-wide Project" +msgstr "Charla comunitaria" + +#: www/templates/elevate/index.html:96 +msgid "" +"ELevate is developed in a distribution agnostic way and is built as a tool " +"for the whole ecosystem, not just AlmaLinux. ELevate supports migrating to/" +"from other distributions and is open for all to contribute to and enhance." +msgstr "" + +#: www/templates/elevate/index.html:107 +msgid "FAQ" +msgstr "" + +#: www/templates/elevate/index.html:112 +msgid "What is ELevate?" +msgstr "" + +#: www/templates/elevate/index.html:117 +msgid "" +"ELevate is a project aimed to provide the ability to migrate between major " +"versions of RHEL-based distributions from 7.x to 8.x. It combines Red Hat's " +"Leapp framework with a community created library and service for the " +"migration metadata set required for it." +msgstr "" + +#: www/templates/elevate/index.html:127 +msgid "This looks awesome. How can I contribute?" +msgstr "" + +#: www/templates/elevate/index.html:132 +#, python-format +msgid "" +"First, join us at #migration Mattermost " +"channel. You can find the tool code here: " +"%(github_link)s and you can add/edit/interact with package metadata at " +"%(pes_link)s." +msgstr "" + +#: www/templates/elevate/index.html:143 +msgid "Is this ready for production?" +msgstr "" + +#: www/templates/elevate/index.html:148 +msgid "" +"YMMV. Every environment is different and unique based on applications and " +"configurations. Since this is still under development, to avoid any " +"surprises, we highly recommend that you test migrations scenarios in a VM or " +"sandbox before running a migration in production." +msgstr "" + +#: www/templates/elevate/index.html:158 +msgid "What operating systems does ELevate support?" +msgstr "" + +#: www/templates/elevate/index.html:163 +msgid "" +"Currently ELevate provides Leapp data for migration from CentOS 7 to the " +"following OS:
  • AlmaLinux OS 8
  • CentOS Stream 8
  • " +"
  • Oracle Linux 8
  • Rocky Linux 8
" +msgstr "" + +#: www/templates/elevate/index.html:177 +msgid "Will migration be \"in-place?\"" +msgstr "" + +#: www/templates/elevate/index.html:182 +msgid "Yes. All your data, applications and settings will be kept." +msgstr "" + +#: www/templates/elevate/index.html:190 +msgid "Is this live or does it require a reboot?" +msgstr "" + +#: www/templates/elevate/index.html:195 +msgid "Migrations will require your system to reboot twice." +msgstr "" + +#: www/templates/elevate/index.html:203 +msgid "What does the Package Evolution Service do?" +msgstr "" + +#: www/templates/elevate/index.html:208 +msgid "" +"The Package Evolution Service stores package migration metadata. Metadata " +"answers questions about how packages evolve between major distribution " +"releases. PES supports several classes of rules for packages such as added, " +"removed, renamed, split, merged, and so on. The service also allows everyone " +"to improve the data by adding new actions or even create a custom dataset " +"for packages from third-party or private repositories." +msgstr "" + +#: www/templates/elevate/index.html:220 +msgid "" +"Red Hat offers a data set which is non-freely licensed. Are you using this " +"same data set?" +msgstr "" + +#: www/templates/elevate/index.html:225 +msgid "" +"No. We respect Red Hat’s work and our initial data set was provided by the " +"AlmaLinux Foundation and contributions from Oracle." +msgstr "" + +#: www/templates/elevate/index.html:234 +msgid "What license is your metadata under?" +msgstr "" + +#: www/templates/elevate/index.html:239 +msgid "The metadata is provided under an Apache License." +msgstr "" + +#: www/templates/elevate/index.html:247 +msgid "Why are you supporting migration to other distributions?" +msgstr "" + +#: www/templates/elevate/index.html:252 +msgid "" +"The CentOS ecosystem is a very large and diverse community. We’ve developed " +"this project in good faith in the hope that everyone in the community can " +"use and contribute to, no matter which distro you prefer. That’s the open " +"source way." +msgstr "" + #: www/templates/foundation/members/index.html:6 #: www/templates/foundation/members/index.html:7 #, fuzzy diff --git a/locale/es/LC_MESSAGES/djangojs.po b/locale/es/LC_MESSAGES/djangojs.po index e8ef475..50e71f6 100644 --- a/locale/es/LC_MESSAGES/djangojs.po +++ b/locale/es/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-05 20:01+0000\n" +"POT-Creation-Date: 2021-10-19 06:19+0000\n" "PO-Revision-Date: 2021-08-31 05:32+0000\n" "Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "Language-Team: French 1;\n" "X-Generator: Weblate 4.8.1-dev\n" +#: commons/templatetags/motd.py:20 +msgid "Read more" +msgstr "" + #: www/templates/404.html:4 msgid "404 Not Found - AlmaLinux OS" msgstr "404 Page non trouvée - AlmaLinux OS" #: www/templates/404.html:6 www/templates/blog/index.html:9 -#: www/templates/index.html:8 www/templates/layouts/base.html:21 -#: www/templates/subscribe_post.html:8 +#: www/templates/blog/post.html:9 www/templates/index.html:8 +#: www/templates/layouts/base.html:21 www/templates/subscribe_post.html:8 msgid "" "An Open Source, community owned and governed, forever-free enterprise Linux " "distribution." @@ -40,11 +44,11 @@ msgid "Sorry, but the page you were trying to access could not be found." msgstr "" "Désolé, mais la page à laquelle vous tentez d'accéder n'a pas été trouvée." -#: www/templates/_partial/footer.html:11 www/templates/_partial/navbar.html:38 +#: www/templates/_partial/footer.html:11 www/templates/_partial/navbar.html:41 msgid "Resources" msgstr "Ressources" -#: www/templates/_partial/footer.html:13 www/templates/_partial/navbar.html:28 +#: www/templates/_partial/footer.html:13 www/templates/_partial/navbar.html:31 msgid "Wiki" msgstr "Wiki" @@ -60,85 +64,89 @@ msgstr "Dépôt" msgid "Downloads" msgstr "Téléchargements" -#: www/templates/_partial/footer.html:21 +#: www/templates/_partial/footer.html:18 www/templates/_partial/navbar.html:57 +msgid "Membership" +msgstr "" + +#: www/templates/_partial/footer.html:19 www/templates/_partial/navbar.html:62 +msgid "ELevate" +msgstr "" + +#: www/templates/_partial/footer.html:23 msgid "Community" msgstr "Communauté" -#: www/templates/_partial/footer.html:25 +#: www/templates/_partial/footer.html:27 msgid "Forums" msgstr "Forums" -#: www/templates/_partial/footer.html:26 +#: www/templates/_partial/footer.html:28 msgid "Chat" msgstr "Tchat" -#: www/templates/_partial/footer.html:31 +#: www/templates/_partial/footer.html:33 msgid "Legal" msgstr "Mentions légales" -#: www/templates/_partial/footer.html:33 +#: www/templates/_partial/footer.html:35 msgid "Legal Notice" msgstr "Mentions légales" -#: www/templates/_partial/footer.html:34 www/templates/index.html:352 +#: www/templates/_partial/footer.html:36 www/templates/index.html:352 msgid "Privacy Policy" msgstr "Politique de confidentialité" -#: www/templates/_partial/footer.html:35 +#: www/templates/_partial/footer.html:37 msgid "Terms of Service" msgstr "Conditions d'utilisation" -#: www/templates/_partial/footer.html:38 +#: www/templates/_partial/footer.html:40 msgid "Licensing Policy" msgstr "Politique de license" -#: www/templates/_partial/footer.html:43 +#: www/templates/_partial/footer.html:45 #, fuzzy #| msgid " Trademark Usage Policy" msgid "Trademark Usage Policy" msgstr " Politique d'utilisation des marques" -#: www/templates/_partial/footer.html:48 +#: www/templates/_partial/footer.html:50 msgid "Foundation Bylaws" msgstr "" -#: www/templates/_partial/navbar.html:7 +#: www/templates/_partial/navbar.html:10 msgid "AlmaLinux OS logo" msgstr "Logo du SE AlmaLinux" -#: www/templates/_partial/navbar.html:16 +#: www/templates/_partial/navbar.html:19 msgid "Toggle navigation" msgstr "Basculer la navigation" -#: www/templates/_partial/navbar.html:23 +#: www/templates/_partial/navbar.html:26 msgid "Blog" msgstr "Blog" -#: www/templates/_partial/navbar.html:44 +#: www/templates/_partial/navbar.html:47 msgid "Migrate from CentOS 8" msgstr "Migrer depuis CentOS 8" -#: www/templates/_partial/navbar.html:49 +#: www/templates/_partial/navbar.html:52 msgid "Report Bugs" msgstr "Signaler des bugs" -#: www/templates/_partial/navbar.html:54 -msgid "Membership" -msgstr "" - -#: www/templates/_partial/navbar.html:62 +#: www/templates/_partial/navbar.html:70 msgid "Shop" msgstr "Boutique" -#: www/templates/_partial/navbar.html:70 +#: www/templates/_partial/navbar.html:78 msgid "Language" msgstr "Langue" -#: www/templates/_partial/navbar.html:91 +#: www/templates/_partial/navbar.html:102 msgid "Translate" msgstr "Traduire" -#: www/templates/_partial/navbar.html:99 www/templates/index.html:52 +#: www/templates/_partial/navbar.html:110 www/templates/index.html:52 msgid "Download" msgstr "Télécharger" @@ -218,6 +226,191 @@ msgstr "Présence Web" msgid "Join AlmaLinux OS community chat" msgstr "Rejoindre le tchat communautaire d'AlmaLinux OS" +#: www/templates/elevate/index.html:6 +#, fuzzy +#| msgid "AlmaLinux OS - Contribute" +msgid "AlmaLinux OS - ELevate Your Distribution" +msgstr "SE AlmaLinux - Contribuer" + +#: www/templates/elevate/index.html:8 +msgid "" +"ELevate enables migration between major versions of RHEL(r) derivatives. " +"Easily go from CentOS 7.x to any 8.x of your choice" +msgstr "" + +#: www/templates/elevate/index.html:23 +msgid "ELevate Your Distribution" +msgstr "" + +#: www/templates/elevate/index.html:27 +msgid "" +"ELevate enables migration between major versions of RHEL® derivatives. " +"Easily go from CentOS 7.x to any 8.x of your choice" +msgstr "" + +#: www/templates/elevate/index.html:37 +msgid "Get Started" +msgstr "" + +#: www/templates/elevate/index.html:42 +msgid "Discuss" +msgstr "" + +#: www/templates/elevate/index.html:58 +msgid "About" +msgstr "" + +#: www/templates/elevate/index.html:63 +msgid "Major Version Upgrades" +msgstr "" + +#: www/templates/elevate/index.html:66 +msgid "" +"It wasn't possible--until now. Easily migrate between major versions of RHEL-" +"based distributions from 7.x to 8.x. Preserve your applications, your data, " +"and your sanity. Run the most recent version of the OS and software you need." +msgstr "" + +#: www/templates/elevate/index.html:77 +msgid "Package Evolution Service" +msgstr "" + +#: www/templates/elevate/index.html:80 +#, python-format +msgid "" +"The beating heart of ELevate is the Package " +"Evolution Service (PES) which allows you to download, customize and even " +"submit new data sets for packages. Users and maintainers can both utilize " +"the PES to help make migrations smooth and easy." +msgstr "" + +#: www/templates/elevate/index.html:93 +#, fuzzy +#| msgid "Community chat" +msgid "Community-wide Project" +msgstr "Tchat communautaire" + +#: www/templates/elevate/index.html:96 +msgid "" +"ELevate is developed in a distribution agnostic way and is built as a tool " +"for the whole ecosystem, not just AlmaLinux. ELevate supports migrating to/" +"from other distributions and is open for all to contribute to and enhance." +msgstr "" + +#: www/templates/elevate/index.html:107 +msgid "FAQ" +msgstr "" + +#: www/templates/elevate/index.html:112 +msgid "What is ELevate?" +msgstr "" + +#: www/templates/elevate/index.html:117 +msgid "" +"ELevate is a project aimed to provide the ability to migrate between major " +"versions of RHEL-based distributions from 7.x to 8.x. It combines Red Hat's " +"Leapp framework with a community created library and service for the " +"migration metadata set required for it." +msgstr "" + +#: www/templates/elevate/index.html:127 +msgid "This looks awesome. How can I contribute?" +msgstr "" + +#: www/templates/elevate/index.html:132 +#, python-format +msgid "" +"First, join us at #migration Mattermost " +"channel. You can find the tool code here: " +"%(github_link)s and you can add/edit/interact with package metadata at " +"%(pes_link)s." +msgstr "" + +#: www/templates/elevate/index.html:143 +msgid "Is this ready for production?" +msgstr "" + +#: www/templates/elevate/index.html:148 +msgid "" +"YMMV. Every environment is different and unique based on applications and " +"configurations. Since this is still under development, to avoid any " +"surprises, we highly recommend that you test migrations scenarios in a VM or " +"sandbox before running a migration in production." +msgstr "" + +#: www/templates/elevate/index.html:158 +msgid "What operating systems does ELevate support?" +msgstr "" + +#: www/templates/elevate/index.html:163 +msgid "" +"Currently ELevate provides Leapp data for migration from CentOS 7 to the " +"following OS:
  • AlmaLinux OS 8
  • CentOS Stream 8
  • " +"
  • Oracle Linux 8
  • Rocky Linux 8
" +msgstr "" + +#: www/templates/elevate/index.html:177 +msgid "Will migration be \"in-place?\"" +msgstr "" + +#: www/templates/elevate/index.html:182 +msgid "Yes. All your data, applications and settings will be kept." +msgstr "" + +#: www/templates/elevate/index.html:190 +msgid "Is this live or does it require a reboot?" +msgstr "" + +#: www/templates/elevate/index.html:195 +msgid "Migrations will require your system to reboot twice." +msgstr "" + +#: www/templates/elevate/index.html:203 +msgid "What does the Package Evolution Service do?" +msgstr "" + +#: www/templates/elevate/index.html:208 +msgid "" +"The Package Evolution Service stores package migration metadata. Metadata " +"answers questions about how packages evolve between major distribution " +"releases. PES supports several classes of rules for packages such as added, " +"removed, renamed, split, merged, and so on. The service also allows everyone " +"to improve the data by adding new actions or even create a custom dataset " +"for packages from third-party or private repositories." +msgstr "" + +#: www/templates/elevate/index.html:220 +msgid "" +"Red Hat offers a data set which is non-freely licensed. Are you using this " +"same data set?" +msgstr "" + +#: www/templates/elevate/index.html:225 +msgid "" +"No. We respect Red Hat’s work and our initial data set was provided by the " +"AlmaLinux Foundation and contributions from Oracle." +msgstr "" + +#: www/templates/elevate/index.html:234 +msgid "What license is your metadata under?" +msgstr "" + +#: www/templates/elevate/index.html:239 +msgid "The metadata is provided under an Apache License." +msgstr "" + +#: www/templates/elevate/index.html:247 +msgid "Why are you supporting migration to other distributions?" +msgstr "" + +#: www/templates/elevate/index.html:252 +msgid "" +"The CentOS ecosystem is a very large and diverse community. We’ve developed " +"this project in good faith in the hope that everyone in the community can " +"use and contribute to, no matter which distro you prefer. That’s the open " +"source way." +msgstr "" + #: www/templates/foundation/members/index.html:6 #: www/templates/foundation/members/index.html:7 #, fuzzy diff --git a/locale/fr/LC_MESSAGES/djangojs.po b/locale/fr/LC_MESSAGES/djangojs.po index 88dd256..0ebd15b 100644 --- a/locale/fr/LC_MESSAGES/djangojs.po +++ b/locale/fr/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-05 20:01+0000\n" +"POT-Creation-Date: 2021-10-19 06:19+0000\n" "PO-Revision-Date: 2021-08-11 16:32+0000\n" "Last-Translator: Wivik \n" "Language-Team: French \n" "Language-Team: LANGUAGE \n" @@ -19,13 +19,17 @@ msgstr "" "n % 10 == 0) ? 2 : 3));\n" "X-Generator: Weblate 4.9-dev\n" +#: commons/templatetags/motd.py:20 +msgid "Read more" +msgstr "" + #: www/templates/404.html:4 msgid "404 Not Found - AlmaLinux OS" msgstr "404 לא נמצא - AlmaLinux OS" #: www/templates/404.html:6 www/templates/blog/index.html:9 -#: www/templates/index.html:8 www/templates/layouts/base.html:21 -#: www/templates/subscribe_post.html:8 +#: www/templates/blog/post.html:9 www/templates/index.html:8 +#: www/templates/layouts/base.html:21 www/templates/subscribe_post.html:8 msgid "" "An Open Source, community owned and governed, forever-free enterprise Linux " "distribution." @@ -39,11 +43,11 @@ msgstr "404 לא נמצא" msgid "Sorry, but the page you were trying to access could not be found." msgstr "מחילה אך הדף אליו ניסית לגשת לא נמצא." -#: www/templates/_partial/footer.html:11 www/templates/_partial/navbar.html:38 +#: www/templates/_partial/footer.html:11 www/templates/_partial/navbar.html:41 msgid "Resources" msgstr "משאבים" -#: www/templates/_partial/footer.html:13 www/templates/_partial/navbar.html:28 +#: www/templates/_partial/footer.html:13 www/templates/_partial/navbar.html:31 msgid "Wiki" msgstr "ויקי" @@ -59,83 +63,87 @@ msgstr "מאגר" msgid "Downloads" msgstr "הורדות" -#: www/templates/_partial/footer.html:21 +#: www/templates/_partial/footer.html:18 www/templates/_partial/navbar.html:57 +msgid "Membership" +msgstr "" + +#: www/templates/_partial/footer.html:19 www/templates/_partial/navbar.html:62 +msgid "ELevate" +msgstr "" + +#: www/templates/_partial/footer.html:23 msgid "Community" msgstr "קהילה" -#: www/templates/_partial/footer.html:25 +#: www/templates/_partial/footer.html:27 msgid "Forums" msgstr "פורומים" -#: www/templates/_partial/footer.html:26 +#: www/templates/_partial/footer.html:28 msgid "Chat" msgstr "צ׳אט" -#: www/templates/_partial/footer.html:31 +#: www/templates/_partial/footer.html:33 msgid "Legal" msgstr "משפטי" -#: www/templates/_partial/footer.html:33 +#: www/templates/_partial/footer.html:35 msgid "Legal Notice" msgstr "הצהרה משפטית" -#: www/templates/_partial/footer.html:34 www/templates/index.html:352 +#: www/templates/_partial/footer.html:36 www/templates/index.html:352 msgid "Privacy Policy" msgstr "מדיניות פרטיות" -#: www/templates/_partial/footer.html:35 +#: www/templates/_partial/footer.html:37 msgid "Terms of Service" msgstr "תנאי השירות" -#: www/templates/_partial/footer.html:38 +#: www/templates/_partial/footer.html:40 msgid "Licensing Policy" msgstr "מדיניות הרישוי" -#: www/templates/_partial/footer.html:43 +#: www/templates/_partial/footer.html:45 msgid "Trademark Usage Policy" msgstr "" -#: www/templates/_partial/footer.html:48 +#: www/templates/_partial/footer.html:50 msgid "Foundation Bylaws" msgstr "" -#: www/templates/_partial/navbar.html:7 +#: www/templates/_partial/navbar.html:10 msgid "AlmaLinux OS logo" msgstr "הלוגו של AlmaLinux OS" -#: www/templates/_partial/navbar.html:16 +#: www/templates/_partial/navbar.html:19 msgid "Toggle navigation" msgstr "החלפת מצב ניווט" -#: www/templates/_partial/navbar.html:23 +#: www/templates/_partial/navbar.html:26 msgid "Blog" msgstr "בלוג" -#: www/templates/_partial/navbar.html:44 +#: www/templates/_partial/navbar.html:47 msgid "Migrate from CentOS 8" msgstr "הגירה מ־CentOS 8" -#: www/templates/_partial/navbar.html:49 +#: www/templates/_partial/navbar.html:52 msgid "Report Bugs" msgstr "דיווח על תקלות" -#: www/templates/_partial/navbar.html:54 -msgid "Membership" -msgstr "" - -#: www/templates/_partial/navbar.html:62 +#: www/templates/_partial/navbar.html:70 msgid "Shop" msgstr "חנות" -#: www/templates/_partial/navbar.html:70 +#: www/templates/_partial/navbar.html:78 msgid "Language" msgstr "שפה" -#: www/templates/_partial/navbar.html:91 +#: www/templates/_partial/navbar.html:102 msgid "Translate" msgstr "תרגום" -#: www/templates/_partial/navbar.html:99 www/templates/index.html:52 +#: www/templates/_partial/navbar.html:110 www/templates/index.html:52 msgid "Download" msgstr "הורדות" @@ -213,6 +221,191 @@ msgstr "נוכחות ברשת" msgid "Join AlmaLinux OS community chat" msgstr "הצטרפות לצ׳אט הקהילתי של AlmaLinux OS" +#: www/templates/elevate/index.html:6 +#, fuzzy +#| msgid "AlmaLinux OS - Contribute" +msgid "AlmaLinux OS - ELevate Your Distribution" +msgstr "AlmaLinux OS - תרומה" + +#: www/templates/elevate/index.html:8 +msgid "" +"ELevate enables migration between major versions of RHEL(r) derivatives. " +"Easily go from CentOS 7.x to any 8.x of your choice" +msgstr "" + +#: www/templates/elevate/index.html:23 +msgid "ELevate Your Distribution" +msgstr "" + +#: www/templates/elevate/index.html:27 +msgid "" +"ELevate enables migration between major versions of RHEL® derivatives. " +"Easily go from CentOS 7.x to any 8.x of your choice" +msgstr "" + +#: www/templates/elevate/index.html:37 +msgid "Get Started" +msgstr "" + +#: www/templates/elevate/index.html:42 +msgid "Discuss" +msgstr "" + +#: www/templates/elevate/index.html:58 +msgid "About" +msgstr "" + +#: www/templates/elevate/index.html:63 +msgid "Major Version Upgrades" +msgstr "" + +#: www/templates/elevate/index.html:66 +msgid "" +"It wasn't possible--until now. Easily migrate between major versions of RHEL-" +"based distributions from 7.x to 8.x. Preserve your applications, your data, " +"and your sanity. Run the most recent version of the OS and software you need." +msgstr "" + +#: www/templates/elevate/index.html:77 +msgid "Package Evolution Service" +msgstr "" + +#: www/templates/elevate/index.html:80 +#, python-format +msgid "" +"The beating heart of ELevate is the Package " +"Evolution Service (PES) which allows you to download, customize and even " +"submit new data sets for packages. Users and maintainers can both utilize " +"the PES to help make migrations smooth and easy." +msgstr "" + +#: www/templates/elevate/index.html:93 +#, fuzzy +#| msgid "Community chat" +msgid "Community-wide Project" +msgstr "הצ׳אט הקהילתי" + +#: www/templates/elevate/index.html:96 +msgid "" +"ELevate is developed in a distribution agnostic way and is built as a tool " +"for the whole ecosystem, not just AlmaLinux. ELevate supports migrating to/" +"from other distributions and is open for all to contribute to and enhance." +msgstr "" + +#: www/templates/elevate/index.html:107 +msgid "FAQ" +msgstr "" + +#: www/templates/elevate/index.html:112 +msgid "What is ELevate?" +msgstr "" + +#: www/templates/elevate/index.html:117 +msgid "" +"ELevate is a project aimed to provide the ability to migrate between major " +"versions of RHEL-based distributions from 7.x to 8.x. It combines Red Hat's " +"Leapp framework with a community created library and service for the " +"migration metadata set required for it." +msgstr "" + +#: www/templates/elevate/index.html:127 +msgid "This looks awesome. How can I contribute?" +msgstr "" + +#: www/templates/elevate/index.html:132 +#, python-format +msgid "" +"First, join us at #migration Mattermost " +"channel. You can find the tool code here: " +"%(github_link)s and you can add/edit/interact with package metadata at " +"%(pes_link)s." +msgstr "" + +#: www/templates/elevate/index.html:143 +msgid "Is this ready for production?" +msgstr "" + +#: www/templates/elevate/index.html:148 +msgid "" +"YMMV. Every environment is different and unique based on applications and " +"configurations. Since this is still under development, to avoid any " +"surprises, we highly recommend that you test migrations scenarios in a VM or " +"sandbox before running a migration in production." +msgstr "" + +#: www/templates/elevate/index.html:158 +msgid "What operating systems does ELevate support?" +msgstr "" + +#: www/templates/elevate/index.html:163 +msgid "" +"Currently ELevate provides Leapp data for migration from CentOS 7 to the " +"following OS:
  • AlmaLinux OS 8
  • CentOS Stream 8
  • " +"
  • Oracle Linux 8
  • Rocky Linux 8
" +msgstr "" + +#: www/templates/elevate/index.html:177 +msgid "Will migration be \"in-place?\"" +msgstr "" + +#: www/templates/elevate/index.html:182 +msgid "Yes. All your data, applications and settings will be kept." +msgstr "" + +#: www/templates/elevate/index.html:190 +msgid "Is this live or does it require a reboot?" +msgstr "" + +#: www/templates/elevate/index.html:195 +msgid "Migrations will require your system to reboot twice." +msgstr "" + +#: www/templates/elevate/index.html:203 +msgid "What does the Package Evolution Service do?" +msgstr "" + +#: www/templates/elevate/index.html:208 +msgid "" +"The Package Evolution Service stores package migration metadata. Metadata " +"answers questions about how packages evolve between major distribution " +"releases. PES supports several classes of rules for packages such as added, " +"removed, renamed, split, merged, and so on. The service also allows everyone " +"to improve the data by adding new actions or even create a custom dataset " +"for packages from third-party or private repositories." +msgstr "" + +#: www/templates/elevate/index.html:220 +msgid "" +"Red Hat offers a data set which is non-freely licensed. Are you using this " +"same data set?" +msgstr "" + +#: www/templates/elevate/index.html:225 +msgid "" +"No. We respect Red Hat’s work and our initial data set was provided by the " +"AlmaLinux Foundation and contributions from Oracle." +msgstr "" + +#: www/templates/elevate/index.html:234 +msgid "What license is your metadata under?" +msgstr "" + +#: www/templates/elevate/index.html:239 +msgid "The metadata is provided under an Apache License." +msgstr "" + +#: www/templates/elevate/index.html:247 +msgid "Why are you supporting migration to other distributions?" +msgstr "" + +#: www/templates/elevate/index.html:252 +msgid "" +"The CentOS ecosystem is a very large and diverse community. We’ve developed " +"this project in good faith in the hope that everyone in the community can " +"use and contribute to, no matter which distro you prefer. That’s the open " +"source way." +msgstr "" + #: www/templates/foundation/members/index.html:6 #: www/templates/foundation/members/index.html:7 msgid "AlmaLinux OS Foundation - membership" diff --git a/locale/he/LC_MESSAGES/djangojs.po b/locale/he/LC_MESSAGES/djangojs.po index 6413911..bbaab17 100644 --- a/locale/he/LC_MESSAGES/djangojs.po +++ b/locale/he/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-05 20:01+0000\n" +"POT-Creation-Date: 2021-10-19 06:19+0000\n" "PO-Revision-Date: 2021-06-03 19:34+0000\n" "Last-Translator: Jack Aboutboul \n" "Language-Team: Hebrew \n" "Language-Team: Italian Package " +"Evolution Service (PES) which allows you to download, customize and even " +"submit new data sets for packages. Users and maintainers can both utilize " +"the PES to help make migrations smooth and easy." +msgstr "" + +#: www/templates/elevate/index.html:93 +#, fuzzy +#| msgid "Community chat" +msgid "Community-wide Project" +msgstr "Chat della community" + +#: www/templates/elevate/index.html:96 +msgid "" +"ELevate is developed in a distribution agnostic way and is built as a tool " +"for the whole ecosystem, not just AlmaLinux. ELevate supports migrating to/" +"from other distributions and is open for all to contribute to and enhance." +msgstr "" + +#: www/templates/elevate/index.html:107 +msgid "FAQ" +msgstr "" + +#: www/templates/elevate/index.html:112 +msgid "What is ELevate?" +msgstr "" + +#: www/templates/elevate/index.html:117 +msgid "" +"ELevate is a project aimed to provide the ability to migrate between major " +"versions of RHEL-based distributions from 7.x to 8.x. It combines Red Hat's " +"Leapp framework with a community created library and service for the " +"migration metadata set required for it." +msgstr "" + +#: www/templates/elevate/index.html:127 +msgid "This looks awesome. How can I contribute?" +msgstr "" + +#: www/templates/elevate/index.html:132 +#, python-format +msgid "" +"First, join us at #migration Mattermost " +"channel. You can find the tool code here: " +"%(github_link)s and you can add/edit/interact with package metadata at " +"%(pes_link)s." +msgstr "" + +#: www/templates/elevate/index.html:143 +msgid "Is this ready for production?" +msgstr "" + +#: www/templates/elevate/index.html:148 +msgid "" +"YMMV. Every environment is different and unique based on applications and " +"configurations. Since this is still under development, to avoid any " +"surprises, we highly recommend that you test migrations scenarios in a VM or " +"sandbox before running a migration in production." +msgstr "" + +#: www/templates/elevate/index.html:158 +msgid "What operating systems does ELevate support?" +msgstr "" + +#: www/templates/elevate/index.html:163 +msgid "" +"Currently ELevate provides Leapp data for migration from CentOS 7 to the " +"following OS:
  • AlmaLinux OS 8
  • CentOS Stream 8
  • " +"
  • Oracle Linux 8
  • Rocky Linux 8
" +msgstr "" + +#: www/templates/elevate/index.html:177 +msgid "Will migration be \"in-place?\"" +msgstr "" + +#: www/templates/elevate/index.html:182 +msgid "Yes. All your data, applications and settings will be kept." +msgstr "" + +#: www/templates/elevate/index.html:190 +msgid "Is this live or does it require a reboot?" +msgstr "" + +#: www/templates/elevate/index.html:195 +msgid "Migrations will require your system to reboot twice." +msgstr "" + +#: www/templates/elevate/index.html:203 +msgid "What does the Package Evolution Service do?" +msgstr "" + +#: www/templates/elevate/index.html:208 +msgid "" +"The Package Evolution Service stores package migration metadata. Metadata " +"answers questions about how packages evolve between major distribution " +"releases. PES supports several classes of rules for packages such as added, " +"removed, renamed, split, merged, and so on. The service also allows everyone " +"to improve the data by adding new actions or even create a custom dataset " +"for packages from third-party or private repositories." +msgstr "" + +#: www/templates/elevate/index.html:220 +msgid "" +"Red Hat offers a data set which is non-freely licensed. Are you using this " +"same data set?" +msgstr "" + +#: www/templates/elevate/index.html:225 +msgid "" +"No. We respect Red Hat’s work and our initial data set was provided by the " +"AlmaLinux Foundation and contributions from Oracle." +msgstr "" + +#: www/templates/elevate/index.html:234 +msgid "What license is your metadata under?" +msgstr "" + +#: www/templates/elevate/index.html:239 +msgid "The metadata is provided under an Apache License." +msgstr "" + +#: www/templates/elevate/index.html:247 +msgid "Why are you supporting migration to other distributions?" +msgstr "" + +#: www/templates/elevate/index.html:252 +msgid "" +"The CentOS ecosystem is a very large and diverse community. We’ve developed " +"this project in good faith in the hope that everyone in the community can " +"use and contribute to, no matter which distro you prefer. That’s the open " +"source way." +msgstr "" + #: www/templates/foundation/members/index.html:6 #: www/templates/foundation/members/index.html:7 #, fuzzy diff --git a/locale/it/LC_MESSAGES/djangojs.po b/locale/it/LC_MESSAGES/djangojs.po index d0dc62c..7629d48 100644 --- a/locale/it/LC_MESSAGES/djangojs.po +++ b/locale/it/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-05 20:01+0000\n" +"POT-Creation-Date: 2021-10-19 06:19+0000\n" "PO-Revision-Date: 2021-06-09 12:34+0000\n" "Last-Translator: Giacomo \n" "Language-Team: Italian \n" "Language-Team: Japanese Package " +"Evolution Service (PES) which allows you to download, customize and even " +"submit new data sets for packages. Users and maintainers can both utilize " +"the PES to help make migrations smooth and easy." +msgstr "" + +#: www/templates/elevate/index.html:93 +#, fuzzy +#| msgid "Community chat" +msgid "Community-wide Project" +msgstr "コミュニティチャット" + +#: www/templates/elevate/index.html:96 +msgid "" +"ELevate is developed in a distribution agnostic way and is built as a tool " +"for the whole ecosystem, not just AlmaLinux. ELevate supports migrating to/" +"from other distributions and is open for all to contribute to and enhance." +msgstr "" + +#: www/templates/elevate/index.html:107 +msgid "FAQ" +msgstr "" + +#: www/templates/elevate/index.html:112 +msgid "What is ELevate?" +msgstr "" + +#: www/templates/elevate/index.html:117 +msgid "" +"ELevate is a project aimed to provide the ability to migrate between major " +"versions of RHEL-based distributions from 7.x to 8.x. It combines Red Hat's " +"Leapp framework with a community created library and service for the " +"migration metadata set required for it." +msgstr "" + +#: www/templates/elevate/index.html:127 +msgid "This looks awesome. How can I contribute?" +msgstr "" + +#: www/templates/elevate/index.html:132 +#, python-format +msgid "" +"First, join us at #migration Mattermost " +"channel. You can find the tool code here: " +"%(github_link)s and you can add/edit/interact with package metadata at " +"%(pes_link)s." +msgstr "" + +#: www/templates/elevate/index.html:143 +msgid "Is this ready for production?" +msgstr "" + +#: www/templates/elevate/index.html:148 +msgid "" +"YMMV. Every environment is different and unique based on applications and " +"configurations. Since this is still under development, to avoid any " +"surprises, we highly recommend that you test migrations scenarios in a VM or " +"sandbox before running a migration in production." +msgstr "" + +#: www/templates/elevate/index.html:158 +msgid "What operating systems does ELevate support?" +msgstr "" + +#: www/templates/elevate/index.html:163 +msgid "" +"Currently ELevate provides Leapp data for migration from CentOS 7 to the " +"following OS:
  • AlmaLinux OS 8
  • CentOS Stream 8
  • " +"
  • Oracle Linux 8
  • Rocky Linux 8
" +msgstr "" + +#: www/templates/elevate/index.html:177 +msgid "Will migration be \"in-place?\"" +msgstr "" + +#: www/templates/elevate/index.html:182 +msgid "Yes. All your data, applications and settings will be kept." +msgstr "" + +#: www/templates/elevate/index.html:190 +msgid "Is this live or does it require a reboot?" +msgstr "" + +#: www/templates/elevate/index.html:195 +msgid "Migrations will require your system to reboot twice." +msgstr "" + +#: www/templates/elevate/index.html:203 +msgid "What does the Package Evolution Service do?" +msgstr "" + +#: www/templates/elevate/index.html:208 +msgid "" +"The Package Evolution Service stores package migration metadata. Metadata " +"answers questions about how packages evolve between major distribution " +"releases. PES supports several classes of rules for packages such as added, " +"removed, renamed, split, merged, and so on. The service also allows everyone " +"to improve the data by adding new actions or even create a custom dataset " +"for packages from third-party or private repositories." +msgstr "" + +#: www/templates/elevate/index.html:220 +msgid "" +"Red Hat offers a data set which is non-freely licensed. Are you using this " +"same data set?" +msgstr "" + +#: www/templates/elevate/index.html:225 +msgid "" +"No. We respect Red Hat’s work and our initial data set was provided by the " +"AlmaLinux Foundation and contributions from Oracle." +msgstr "" + +#: www/templates/elevate/index.html:234 +msgid "What license is your metadata under?" +msgstr "" + +#: www/templates/elevate/index.html:239 +msgid "The metadata is provided under an Apache License." +msgstr "" + +#: www/templates/elevate/index.html:247 +msgid "Why are you supporting migration to other distributions?" +msgstr "" + +#: www/templates/elevate/index.html:252 +msgid "" +"The CentOS ecosystem is a very large and diverse community. We’ve developed " +"this project in good faith in the hope that everyone in the community can " +"use and contribute to, no matter which distro you prefer. That’s the open " +"source way." +msgstr "" + #: www/templates/foundation/members/index.html:6 #: www/templates/foundation/members/index.html:7 #, fuzzy diff --git a/locale/ja/LC_MESSAGES/djangojs.po b/locale/ja/LC_MESSAGES/djangojs.po index c9db6c3..a7d5e67 100644 --- a/locale/ja/LC_MESSAGES/djangojs.po +++ b/locale/ja/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-05 20:01+0000\n" +"POT-Creation-Date: 2021-10-19 06:19+0000\n" "PO-Revision-Date: 2021-08-01 04:32+0000\n" "Last-Translator: gz83 \n" "Language-Team: Japanese \n" "Language-Team: Latvian Package " +"Evolution Service (PES) which allows you to download, customize and even " +"submit new data sets for packages. Users and maintainers can both utilize " +"the PES to help make migrations smooth and easy." +msgstr "" + +#: www/templates/elevate/index.html:93 +#, fuzzy +#| msgid "Community chat" +msgid "Community-wide Project" +msgstr "Kopienas čats" + +#: www/templates/elevate/index.html:96 +msgid "" +"ELevate is developed in a distribution agnostic way and is built as a tool " +"for the whole ecosystem, not just AlmaLinux. ELevate supports migrating to/" +"from other distributions and is open for all to contribute to and enhance." +msgstr "" + +#: www/templates/elevate/index.html:107 +msgid "FAQ" +msgstr "" + +#: www/templates/elevate/index.html:112 +msgid "What is ELevate?" +msgstr "" + +#: www/templates/elevate/index.html:117 +msgid "" +"ELevate is a project aimed to provide the ability to migrate between major " +"versions of RHEL-based distributions from 7.x to 8.x. It combines Red Hat's " +"Leapp framework with a community created library and service for the " +"migration metadata set required for it." +msgstr "" + +#: www/templates/elevate/index.html:127 +msgid "This looks awesome. How can I contribute?" +msgstr "" + +#: www/templates/elevate/index.html:132 +#, python-format +msgid "" +"First, join us at #migration Mattermost " +"channel. You can find the tool code here: " +"%(github_link)s and you can add/edit/interact with package metadata at " +"%(pes_link)s." +msgstr "" + +#: www/templates/elevate/index.html:143 +msgid "Is this ready for production?" +msgstr "" + +#: www/templates/elevate/index.html:148 +msgid "" +"YMMV. Every environment is different and unique based on applications and " +"configurations. Since this is still under development, to avoid any " +"surprises, we highly recommend that you test migrations scenarios in a VM or " +"sandbox before running a migration in production." +msgstr "" + +#: www/templates/elevate/index.html:158 +msgid "What operating systems does ELevate support?" +msgstr "" + +#: www/templates/elevate/index.html:163 +msgid "" +"Currently ELevate provides Leapp data for migration from CentOS 7 to the " +"following OS:
  • AlmaLinux OS 8
  • CentOS Stream 8
  • " +"
  • Oracle Linux 8
  • Rocky Linux 8
" +msgstr "" + +#: www/templates/elevate/index.html:177 +msgid "Will migration be \"in-place?\"" +msgstr "" + +#: www/templates/elevate/index.html:182 +msgid "Yes. All your data, applications and settings will be kept." +msgstr "" + +#: www/templates/elevate/index.html:190 +msgid "Is this live or does it require a reboot?" +msgstr "" + +#: www/templates/elevate/index.html:195 +msgid "Migrations will require your system to reboot twice." +msgstr "" + +#: www/templates/elevate/index.html:203 +msgid "What does the Package Evolution Service do?" +msgstr "" + +#: www/templates/elevate/index.html:208 +msgid "" +"The Package Evolution Service stores package migration metadata. Metadata " +"answers questions about how packages evolve between major distribution " +"releases. PES supports several classes of rules for packages such as added, " +"removed, renamed, split, merged, and so on. The service also allows everyone " +"to improve the data by adding new actions or even create a custom dataset " +"for packages from third-party or private repositories." +msgstr "" + +#: www/templates/elevate/index.html:220 +msgid "" +"Red Hat offers a data set which is non-freely licensed. Are you using this " +"same data set?" +msgstr "" + +#: www/templates/elevate/index.html:225 +msgid "" +"No. We respect Red Hat’s work and our initial data set was provided by the " +"AlmaLinux Foundation and contributions from Oracle." +msgstr "" + +#: www/templates/elevate/index.html:234 +msgid "What license is your metadata under?" +msgstr "" + +#: www/templates/elevate/index.html:239 +msgid "The metadata is provided under an Apache License." +msgstr "" + +#: www/templates/elevate/index.html:247 +msgid "Why are you supporting migration to other distributions?" +msgstr "" + +#: www/templates/elevate/index.html:252 +msgid "" +"The CentOS ecosystem is a very large and diverse community. We’ve developed " +"this project in good faith in the hope that everyone in the community can " +"use and contribute to, no matter which distro you prefer. That’s the open " +"source way." +msgstr "" + #: www/templates/foundation/members/index.html:6 #: www/templates/foundation/members/index.html:7 #, fuzzy diff --git a/locale/lv/LC_MESSAGES/djangojs.po b/locale/lv/LC_MESSAGES/djangojs.po index 68d90ed..d003a43 100644 --- a/locale/lv/LC_MESSAGES/djangojs.po +++ b/locale/lv/LC_MESSAGES/djangojs.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-05 20:01+0000\n" +"POT-Creation-Date: 2021-10-19 06:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/locale/pl/LC_MESSAGES/django.po b/locale/pl/LC_MESSAGES/django.po index c582868..dccf08b 100644 --- a/locale/pl/LC_MESSAGES/django.po +++ b/locale/pl/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-05 20:01+0000\n" +"POT-Creation-Date: 2021-10-19 06:19+0000\n" "PO-Revision-Date: 2021-08-25 16:34+0000\n" "Last-Translator: A M \n" "Language-Team: Polish =12 && n%100<=14) ? 2 : 3);\n" "X-Generator: Weblate 4.8.1-dev\n" +#: commons/templatetags/motd.py:20 +msgid "Read more" +msgstr "" + #: www/templates/404.html:4 msgid "404 Not Found - AlmaLinux OS" msgstr "404 Nie Znalezniono - AlmaLinux OS" #: www/templates/404.html:6 www/templates/blog/index.html:9 -#: www/templates/index.html:8 www/templates/layouts/base.html:21 -#: www/templates/subscribe_post.html:8 +#: www/templates/blog/post.html:9 www/templates/index.html:8 +#: www/templates/layouts/base.html:21 www/templates/subscribe_post.html:8 msgid "" "An Open Source, community owned and governed, forever-free enterprise Linux " "distribution." @@ -43,11 +47,11 @@ msgstr "" "Przepraszamy, ale nie można znaleźć strony, do której próbujesz uzyskać " "dostęp." -#: www/templates/_partial/footer.html:11 www/templates/_partial/navbar.html:38 +#: www/templates/_partial/footer.html:11 www/templates/_partial/navbar.html:41 msgid "Resources" msgstr "Zasoby" -#: www/templates/_partial/footer.html:13 www/templates/_partial/navbar.html:28 +#: www/templates/_partial/footer.html:13 www/templates/_partial/navbar.html:31 msgid "Wiki" msgstr "Wiki" @@ -63,85 +67,89 @@ msgstr "Magazyn" msgid "Downloads" msgstr "Pliki do pobrania" -#: www/templates/_partial/footer.html:21 +#: www/templates/_partial/footer.html:18 www/templates/_partial/navbar.html:57 +msgid "Membership" +msgstr "" + +#: www/templates/_partial/footer.html:19 www/templates/_partial/navbar.html:62 +msgid "ELevate" +msgstr "" + +#: www/templates/_partial/footer.html:23 msgid "Community" msgstr "Społeczność" -#: www/templates/_partial/footer.html:25 +#: www/templates/_partial/footer.html:27 msgid "Forums" msgstr "Forum" -#: www/templates/_partial/footer.html:26 +#: www/templates/_partial/footer.html:28 msgid "Chat" msgstr "Czat" -#: www/templates/_partial/footer.html:31 +#: www/templates/_partial/footer.html:33 msgid "Legal" msgstr "Legalne" -#: www/templates/_partial/footer.html:33 +#: www/templates/_partial/footer.html:35 msgid "Legal Notice" msgstr "Nota prawna" -#: www/templates/_partial/footer.html:34 www/templates/index.html:352 +#: www/templates/_partial/footer.html:36 www/templates/index.html:352 msgid "Privacy Policy" msgstr "Polityka Prywatności" -#: www/templates/_partial/footer.html:35 +#: www/templates/_partial/footer.html:37 msgid "Terms of Service" msgstr "Warunki Usługi" -#: www/templates/_partial/footer.html:38 +#: www/templates/_partial/footer.html:40 msgid "Licensing Policy" msgstr "Zasady licencjonowania" -#: www/templates/_partial/footer.html:43 +#: www/templates/_partial/footer.html:45 #, fuzzy #| msgid " Trademark Usage Policy" msgid "Trademark Usage Policy" msgstr " Zasady korzystania ze znaków towarowych" -#: www/templates/_partial/footer.html:48 +#: www/templates/_partial/footer.html:50 msgid "Foundation Bylaws" msgstr "" -#: www/templates/_partial/navbar.html:7 +#: www/templates/_partial/navbar.html:10 msgid "AlmaLinux OS logo" msgstr "logo AlmaLinux OS" -#: www/templates/_partial/navbar.html:16 +#: www/templates/_partial/navbar.html:19 msgid "Toggle navigation" msgstr "Przełącz nawigację" -#: www/templates/_partial/navbar.html:23 +#: www/templates/_partial/navbar.html:26 msgid "Blog" msgstr "Blog" -#: www/templates/_partial/navbar.html:44 +#: www/templates/_partial/navbar.html:47 msgid "Migrate from CentOS 8" msgstr "Migracja z CentOS 8" -#: www/templates/_partial/navbar.html:49 +#: www/templates/_partial/navbar.html:52 msgid "Report Bugs" msgstr "Zgłoś błędy" -#: www/templates/_partial/navbar.html:54 -msgid "Membership" -msgstr "" - -#: www/templates/_partial/navbar.html:62 +#: www/templates/_partial/navbar.html:70 msgid "Shop" msgstr "Sklep" -#: www/templates/_partial/navbar.html:70 +#: www/templates/_partial/navbar.html:78 msgid "Language" msgstr "Język" -#: www/templates/_partial/navbar.html:91 +#: www/templates/_partial/navbar.html:102 msgid "Translate" msgstr "Przetłumacz" -#: www/templates/_partial/navbar.html:99 www/templates/index.html:52 +#: www/templates/_partial/navbar.html:110 www/templates/index.html:52 msgid "Download" msgstr "Pobierz" @@ -220,6 +228,191 @@ msgstr "Obecność w sieci" msgid "Join AlmaLinux OS community chat" msgstr "Dołącz do czatu społeczności AlmaLinux OS" +#: www/templates/elevate/index.html:6 +#, fuzzy +#| msgid "AlmaLinux OS - Contribute" +msgid "AlmaLinux OS - ELevate Your Distribution" +msgstr "AlmaLinux OS - Wkład" + +#: www/templates/elevate/index.html:8 +msgid "" +"ELevate enables migration between major versions of RHEL(r) derivatives. " +"Easily go from CentOS 7.x to any 8.x of your choice" +msgstr "" + +#: www/templates/elevate/index.html:23 +msgid "ELevate Your Distribution" +msgstr "" + +#: www/templates/elevate/index.html:27 +msgid "" +"ELevate enables migration between major versions of RHEL® derivatives. " +"Easily go from CentOS 7.x to any 8.x of your choice" +msgstr "" + +#: www/templates/elevate/index.html:37 +msgid "Get Started" +msgstr "" + +#: www/templates/elevate/index.html:42 +msgid "Discuss" +msgstr "" + +#: www/templates/elevate/index.html:58 +msgid "About" +msgstr "" + +#: www/templates/elevate/index.html:63 +msgid "Major Version Upgrades" +msgstr "" + +#: www/templates/elevate/index.html:66 +msgid "" +"It wasn't possible--until now. Easily migrate between major versions of RHEL-" +"based distributions from 7.x to 8.x. Preserve your applications, your data, " +"and your sanity. Run the most recent version of the OS and software you need." +msgstr "" + +#: www/templates/elevate/index.html:77 +msgid "Package Evolution Service" +msgstr "" + +#: www/templates/elevate/index.html:80 +#, python-format +msgid "" +"The beating heart of ELevate is the Package " +"Evolution Service (PES) which allows you to download, customize and even " +"submit new data sets for packages. Users and maintainers can both utilize " +"the PES to help make migrations smooth and easy." +msgstr "" + +#: www/templates/elevate/index.html:93 +#, fuzzy +#| msgid "Community chat" +msgid "Community-wide Project" +msgstr "Czat społeczności" + +#: www/templates/elevate/index.html:96 +msgid "" +"ELevate is developed in a distribution agnostic way and is built as a tool " +"for the whole ecosystem, not just AlmaLinux. ELevate supports migrating to/" +"from other distributions and is open for all to contribute to and enhance." +msgstr "" + +#: www/templates/elevate/index.html:107 +msgid "FAQ" +msgstr "" + +#: www/templates/elevate/index.html:112 +msgid "What is ELevate?" +msgstr "" + +#: www/templates/elevate/index.html:117 +msgid "" +"ELevate is a project aimed to provide the ability to migrate between major " +"versions of RHEL-based distributions from 7.x to 8.x. It combines Red Hat's " +"Leapp framework with a community created library and service for the " +"migration metadata set required for it." +msgstr "" + +#: www/templates/elevate/index.html:127 +msgid "This looks awesome. How can I contribute?" +msgstr "" + +#: www/templates/elevate/index.html:132 +#, python-format +msgid "" +"First, join us at #migration Mattermost " +"channel. You can find the tool code here: " +"%(github_link)s and you can add/edit/interact with package metadata at " +"%(pes_link)s." +msgstr "" + +#: www/templates/elevate/index.html:143 +msgid "Is this ready for production?" +msgstr "" + +#: www/templates/elevate/index.html:148 +msgid "" +"YMMV. Every environment is different and unique based on applications and " +"configurations. Since this is still under development, to avoid any " +"surprises, we highly recommend that you test migrations scenarios in a VM or " +"sandbox before running a migration in production." +msgstr "" + +#: www/templates/elevate/index.html:158 +msgid "What operating systems does ELevate support?" +msgstr "" + +#: www/templates/elevate/index.html:163 +msgid "" +"Currently ELevate provides Leapp data for migration from CentOS 7 to the " +"following OS:
  • AlmaLinux OS 8
  • CentOS Stream 8
  • " +"
  • Oracle Linux 8
  • Rocky Linux 8
" +msgstr "" + +#: www/templates/elevate/index.html:177 +msgid "Will migration be \"in-place?\"" +msgstr "" + +#: www/templates/elevate/index.html:182 +msgid "Yes. All your data, applications and settings will be kept." +msgstr "" + +#: www/templates/elevate/index.html:190 +msgid "Is this live or does it require a reboot?" +msgstr "" + +#: www/templates/elevate/index.html:195 +msgid "Migrations will require your system to reboot twice." +msgstr "" + +#: www/templates/elevate/index.html:203 +msgid "What does the Package Evolution Service do?" +msgstr "" + +#: www/templates/elevate/index.html:208 +msgid "" +"The Package Evolution Service stores package migration metadata. Metadata " +"answers questions about how packages evolve between major distribution " +"releases. PES supports several classes of rules for packages such as added, " +"removed, renamed, split, merged, and so on. The service also allows everyone " +"to improve the data by adding new actions or even create a custom dataset " +"for packages from third-party or private repositories." +msgstr "" + +#: www/templates/elevate/index.html:220 +msgid "" +"Red Hat offers a data set which is non-freely licensed. Are you using this " +"same data set?" +msgstr "" + +#: www/templates/elevate/index.html:225 +msgid "" +"No. We respect Red Hat’s work and our initial data set was provided by the " +"AlmaLinux Foundation and contributions from Oracle." +msgstr "" + +#: www/templates/elevate/index.html:234 +msgid "What license is your metadata under?" +msgstr "" + +#: www/templates/elevate/index.html:239 +msgid "The metadata is provided under an Apache License." +msgstr "" + +#: www/templates/elevate/index.html:247 +msgid "Why are you supporting migration to other distributions?" +msgstr "" + +#: www/templates/elevate/index.html:252 +msgid "" +"The CentOS ecosystem is a very large and diverse community. We’ve developed " +"this project in good faith in the hope that everyone in the community can " +"use and contribute to, no matter which distro you prefer. That’s the open " +"source way." +msgstr "" + #: www/templates/foundation/members/index.html:6 #: www/templates/foundation/members/index.html:7 #, fuzzy diff --git a/locale/pl/LC_MESSAGES/djangojs.po b/locale/pl/LC_MESSAGES/djangojs.po index a540325..09f0f77 100644 --- a/locale/pl/LC_MESSAGES/djangojs.po +++ b/locale/pl/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-05 20:01+0000\n" +"POT-Creation-Date: 2021-10-19 06:19+0000\n" "PO-Revision-Date: 2021-09-06 22:34+0000\n" "Last-Translator: Urszula \n" "Language-Team: Polish \n" "Language-Team: Portuguese Package " +"Evolution Service (PES) which allows you to download, customize and even " +"submit new data sets for packages. Users and maintainers can both utilize " +"the PES to help make migrations smooth and easy." +msgstr "" + +#: www/templates/elevate/index.html:93 +#, fuzzy +#| msgid "Community chat" +msgid "Community-wide Project" +msgstr "Chat da comunidade" + +#: www/templates/elevate/index.html:96 +msgid "" +"ELevate is developed in a distribution agnostic way and is built as a tool " +"for the whole ecosystem, not just AlmaLinux. ELevate supports migrating to/" +"from other distributions and is open for all to contribute to and enhance." +msgstr "" + +#: www/templates/elevate/index.html:107 +msgid "FAQ" +msgstr "" + +#: www/templates/elevate/index.html:112 +msgid "What is ELevate?" +msgstr "" + +#: www/templates/elevate/index.html:117 +msgid "" +"ELevate is a project aimed to provide the ability to migrate between major " +"versions of RHEL-based distributions from 7.x to 8.x. It combines Red Hat's " +"Leapp framework with a community created library and service for the " +"migration metadata set required for it." +msgstr "" + +#: www/templates/elevate/index.html:127 +msgid "This looks awesome. How can I contribute?" +msgstr "" + +#: www/templates/elevate/index.html:132 +#, python-format +msgid "" +"First, join us at #migration Mattermost " +"channel. You can find the tool code here: " +"%(github_link)s and you can add/edit/interact with package metadata at " +"%(pes_link)s." +msgstr "" + +#: www/templates/elevate/index.html:143 +msgid "Is this ready for production?" +msgstr "" + +#: www/templates/elevate/index.html:148 +msgid "" +"YMMV. Every environment is different and unique based on applications and " +"configurations. Since this is still under development, to avoid any " +"surprises, we highly recommend that you test migrations scenarios in a VM or " +"sandbox before running a migration in production." +msgstr "" + +#: www/templates/elevate/index.html:158 +msgid "What operating systems does ELevate support?" +msgstr "" + +#: www/templates/elevate/index.html:163 +msgid "" +"Currently ELevate provides Leapp data for migration from CentOS 7 to the " +"following OS:
  • AlmaLinux OS 8
  • CentOS Stream 8
  • " +"
  • Oracle Linux 8
  • Rocky Linux 8
" +msgstr "" + +#: www/templates/elevate/index.html:177 +msgid "Will migration be \"in-place?\"" +msgstr "" + +#: www/templates/elevate/index.html:182 +msgid "Yes. All your data, applications and settings will be kept." +msgstr "" + +#: www/templates/elevate/index.html:190 +msgid "Is this live or does it require a reboot?" +msgstr "" + +#: www/templates/elevate/index.html:195 +msgid "Migrations will require your system to reboot twice." +msgstr "" + +#: www/templates/elevate/index.html:203 +msgid "What does the Package Evolution Service do?" +msgstr "" + +#: www/templates/elevate/index.html:208 +msgid "" +"The Package Evolution Service stores package migration metadata. Metadata " +"answers questions about how packages evolve between major distribution " +"releases. PES supports several classes of rules for packages such as added, " +"removed, renamed, split, merged, and so on. The service also allows everyone " +"to improve the data by adding new actions or even create a custom dataset " +"for packages from third-party or private repositories." +msgstr "" + +#: www/templates/elevate/index.html:220 +msgid "" +"Red Hat offers a data set which is non-freely licensed. Are you using this " +"same data set?" +msgstr "" + +#: www/templates/elevate/index.html:225 +msgid "" +"No. We respect Red Hat’s work and our initial data set was provided by the " +"AlmaLinux Foundation and contributions from Oracle." +msgstr "" + +#: www/templates/elevate/index.html:234 +msgid "What license is your metadata under?" +msgstr "" + +#: www/templates/elevate/index.html:239 +msgid "The metadata is provided under an Apache License." +msgstr "" + +#: www/templates/elevate/index.html:247 +msgid "Why are you supporting migration to other distributions?" +msgstr "" + +#: www/templates/elevate/index.html:252 +msgid "" +"The CentOS ecosystem is a very large and diverse community. We’ve developed " +"this project in good faith in the hope that everyone in the community can " +"use and contribute to, no matter which distro you prefer. That’s the open " +"source way." +msgstr "" + #: www/templates/foundation/members/index.html:6 #: www/templates/foundation/members/index.html:7 #, fuzzy diff --git a/locale/pt/LC_MESSAGES/djangojs.po b/locale/pt/LC_MESSAGES/djangojs.po index af61354..80bd18a 100644 --- a/locale/pt/LC_MESSAGES/djangojs.po +++ b/locale/pt/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-05 20:01+0000\n" +"POT-Creation-Date: 2021-10-19 06:19+0000\n" "PO-Revision-Date: 2021-08-11 16:32+0000\n" "Last-Translator: Hugo Carvalho \n" "Language-Team: Portuguese \n" "Language-Team: Portuguese (Brazil) 1;\n" "X-Generator: Weblate 4.8-dev\n" +#: commons/templatetags/motd.py:20 +msgid "Read more" +msgstr "" + #: www/templates/404.html:4 msgid "404 Not Found - AlmaLinux OS" msgstr "404 Não Encontrado - AlmaLinuxOS" #: www/templates/404.html:6 www/templates/blog/index.html:9 -#: www/templates/index.html:8 www/templates/layouts/base.html:21 -#: www/templates/subscribe_post.html:8 +#: www/templates/blog/post.html:9 www/templates/index.html:8 +#: www/templates/layouts/base.html:21 www/templates/subscribe_post.html:8 msgid "" "An Open Source, community owned and governed, forever-free enterprise Linux " "distribution." @@ -41,11 +45,11 @@ msgstr "" "Desculpe, mas a página que você estava tentando acessar não pode ser " "encontrada." -#: www/templates/_partial/footer.html:11 www/templates/_partial/navbar.html:38 +#: www/templates/_partial/footer.html:11 www/templates/_partial/navbar.html:41 msgid "Resources" msgstr "Recursos" -#: www/templates/_partial/footer.html:13 www/templates/_partial/navbar.html:28 +#: www/templates/_partial/footer.html:13 www/templates/_partial/navbar.html:31 msgid "Wiki" msgstr "Wiki" @@ -61,85 +65,89 @@ msgstr "Repositório" msgid "Downloads" msgstr "Downloads" -#: www/templates/_partial/footer.html:21 +#: www/templates/_partial/footer.html:18 www/templates/_partial/navbar.html:57 +msgid "Membership" +msgstr "" + +#: www/templates/_partial/footer.html:19 www/templates/_partial/navbar.html:62 +msgid "ELevate" +msgstr "" + +#: www/templates/_partial/footer.html:23 msgid "Community" msgstr "Comunidade" -#: www/templates/_partial/footer.html:25 +#: www/templates/_partial/footer.html:27 msgid "Forums" msgstr "Fóruns" -#: www/templates/_partial/footer.html:26 +#: www/templates/_partial/footer.html:28 msgid "Chat" msgstr "Chat" -#: www/templates/_partial/footer.html:31 +#: www/templates/_partial/footer.html:33 msgid "Legal" msgstr "Jurídico" -#: www/templates/_partial/footer.html:33 +#: www/templates/_partial/footer.html:35 msgid "Legal Notice" msgstr "Aviso Legal" -#: www/templates/_partial/footer.html:34 www/templates/index.html:352 +#: www/templates/_partial/footer.html:36 www/templates/index.html:352 msgid "Privacy Policy" msgstr "Política de privacidade" -#: www/templates/_partial/footer.html:35 +#: www/templates/_partial/footer.html:37 msgid "Terms of Service" msgstr "Termos de serviço" -#: www/templates/_partial/footer.html:38 +#: www/templates/_partial/footer.html:40 msgid "Licensing Policy" msgstr "Política de licença" -#: www/templates/_partial/footer.html:43 +#: www/templates/_partial/footer.html:45 #, fuzzy #| msgid " Trademark Usage Policy" msgid "Trademark Usage Policy" msgstr " Política de Utilização de Marcos" -#: www/templates/_partial/footer.html:48 +#: www/templates/_partial/footer.html:50 msgid "Foundation Bylaws" msgstr "" -#: www/templates/_partial/navbar.html:7 +#: www/templates/_partial/navbar.html:10 msgid "AlmaLinux OS logo" msgstr "logo da AlmaLinux OS" -#: www/templates/_partial/navbar.html:16 +#: www/templates/_partial/navbar.html:19 msgid "Toggle navigation" msgstr "Ative a navegação" -#: www/templates/_partial/navbar.html:23 +#: www/templates/_partial/navbar.html:26 msgid "Blog" msgstr "Blog" -#: www/templates/_partial/navbar.html:44 +#: www/templates/_partial/navbar.html:47 msgid "Migrate from CentOS 8" msgstr "Migre do CentOS 8" -#: www/templates/_partial/navbar.html:49 +#: www/templates/_partial/navbar.html:52 msgid "Report Bugs" msgstr "Reporte Bugs" -#: www/templates/_partial/navbar.html:54 -msgid "Membership" -msgstr "" - -#: www/templates/_partial/navbar.html:62 +#: www/templates/_partial/navbar.html:70 msgid "Shop" msgstr "Loja" -#: www/templates/_partial/navbar.html:70 +#: www/templates/_partial/navbar.html:78 msgid "Language" msgstr "Língua" -#: www/templates/_partial/navbar.html:91 +#: www/templates/_partial/navbar.html:102 msgid "Translate" msgstr "" -#: www/templates/_partial/navbar.html:99 www/templates/index.html:52 +#: www/templates/_partial/navbar.html:110 www/templates/index.html:52 msgid "Download" msgstr "Download" @@ -218,6 +226,191 @@ msgstr "Presença na web" msgid "Join AlmaLinux OS community chat" msgstr "Junte-se ao chat da comunidade da AlmaLinux OS" +#: www/templates/elevate/index.html:6 +#, fuzzy +#| msgid "AlmaLinux OS - Contribute" +msgid "AlmaLinux OS - ELevate Your Distribution" +msgstr "Contribua - AlmaLinux OS" + +#: www/templates/elevate/index.html:8 +msgid "" +"ELevate enables migration between major versions of RHEL(r) derivatives. " +"Easily go from CentOS 7.x to any 8.x of your choice" +msgstr "" + +#: www/templates/elevate/index.html:23 +msgid "ELevate Your Distribution" +msgstr "" + +#: www/templates/elevate/index.html:27 +msgid "" +"ELevate enables migration between major versions of RHEL® derivatives. " +"Easily go from CentOS 7.x to any 8.x of your choice" +msgstr "" + +#: www/templates/elevate/index.html:37 +msgid "Get Started" +msgstr "" + +#: www/templates/elevate/index.html:42 +msgid "Discuss" +msgstr "" + +#: www/templates/elevate/index.html:58 +msgid "About" +msgstr "" + +#: www/templates/elevate/index.html:63 +msgid "Major Version Upgrades" +msgstr "" + +#: www/templates/elevate/index.html:66 +msgid "" +"It wasn't possible--until now. Easily migrate between major versions of RHEL-" +"based distributions from 7.x to 8.x. Preserve your applications, your data, " +"and your sanity. Run the most recent version of the OS and software you need." +msgstr "" + +#: www/templates/elevate/index.html:77 +msgid "Package Evolution Service" +msgstr "" + +#: www/templates/elevate/index.html:80 +#, python-format +msgid "" +"The beating heart of ELevate is the Package " +"Evolution Service (PES) which allows you to download, customize and even " +"submit new data sets for packages. Users and maintainers can both utilize " +"the PES to help make migrations smooth and easy." +msgstr "" + +#: www/templates/elevate/index.html:93 +#, fuzzy +#| msgid "Community chat" +msgid "Community-wide Project" +msgstr "Chat da comunidade" + +#: www/templates/elevate/index.html:96 +msgid "" +"ELevate is developed in a distribution agnostic way and is built as a tool " +"for the whole ecosystem, not just AlmaLinux. ELevate supports migrating to/" +"from other distributions and is open for all to contribute to and enhance." +msgstr "" + +#: www/templates/elevate/index.html:107 +msgid "FAQ" +msgstr "" + +#: www/templates/elevate/index.html:112 +msgid "What is ELevate?" +msgstr "" + +#: www/templates/elevate/index.html:117 +msgid "" +"ELevate is a project aimed to provide the ability to migrate between major " +"versions of RHEL-based distributions from 7.x to 8.x. It combines Red Hat's " +"Leapp framework with a community created library and service for the " +"migration metadata set required for it." +msgstr "" + +#: www/templates/elevate/index.html:127 +msgid "This looks awesome. How can I contribute?" +msgstr "" + +#: www/templates/elevate/index.html:132 +#, python-format +msgid "" +"First, join us at #migration Mattermost " +"channel. You can find the tool code here: " +"%(github_link)s and you can add/edit/interact with package metadata at " +"%(pes_link)s." +msgstr "" + +#: www/templates/elevate/index.html:143 +msgid "Is this ready for production?" +msgstr "" + +#: www/templates/elevate/index.html:148 +msgid "" +"YMMV. Every environment is different and unique based on applications and " +"configurations. Since this is still under development, to avoid any " +"surprises, we highly recommend that you test migrations scenarios in a VM or " +"sandbox before running a migration in production." +msgstr "" + +#: www/templates/elevate/index.html:158 +msgid "What operating systems does ELevate support?" +msgstr "" + +#: www/templates/elevate/index.html:163 +msgid "" +"Currently ELevate provides Leapp data for migration from CentOS 7 to the " +"following OS:
  • AlmaLinux OS 8
  • CentOS Stream 8
  • " +"
  • Oracle Linux 8
  • Rocky Linux 8
" +msgstr "" + +#: www/templates/elevate/index.html:177 +msgid "Will migration be \"in-place?\"" +msgstr "" + +#: www/templates/elevate/index.html:182 +msgid "Yes. All your data, applications and settings will be kept." +msgstr "" + +#: www/templates/elevate/index.html:190 +msgid "Is this live or does it require a reboot?" +msgstr "" + +#: www/templates/elevate/index.html:195 +msgid "Migrations will require your system to reboot twice." +msgstr "" + +#: www/templates/elevate/index.html:203 +msgid "What does the Package Evolution Service do?" +msgstr "" + +#: www/templates/elevate/index.html:208 +msgid "" +"The Package Evolution Service stores package migration metadata. Metadata " +"answers questions about how packages evolve between major distribution " +"releases. PES supports several classes of rules for packages such as added, " +"removed, renamed, split, merged, and so on. The service also allows everyone " +"to improve the data by adding new actions or even create a custom dataset " +"for packages from third-party or private repositories." +msgstr "" + +#: www/templates/elevate/index.html:220 +msgid "" +"Red Hat offers a data set which is non-freely licensed. Are you using this " +"same data set?" +msgstr "" + +#: www/templates/elevate/index.html:225 +msgid "" +"No. We respect Red Hat’s work and our initial data set was provided by the " +"AlmaLinux Foundation and contributions from Oracle." +msgstr "" + +#: www/templates/elevate/index.html:234 +msgid "What license is your metadata under?" +msgstr "" + +#: www/templates/elevate/index.html:239 +msgid "The metadata is provided under an Apache License." +msgstr "" + +#: www/templates/elevate/index.html:247 +msgid "Why are you supporting migration to other distributions?" +msgstr "" + +#: www/templates/elevate/index.html:252 +msgid "" +"The CentOS ecosystem is a very large and diverse community. We’ve developed " +"this project in good faith in the hope that everyone in the community can " +"use and contribute to, no matter which distro you prefer. That’s the open " +"source way." +msgstr "" + #: www/templates/foundation/members/index.html:6 #: www/templates/foundation/members/index.html:7 #, fuzzy diff --git a/locale/pt_BR/LC_MESSAGES/djangojs.po b/locale/pt_BR/LC_MESSAGES/djangojs.po index e269463..d41ecd3 100644 --- a/locale/pt_BR/LC_MESSAGES/djangojs.po +++ b/locale/pt_BR/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-05 20:01+0000\n" +"POT-Creation-Date: 2021-10-19 06:19+0000\n" "PO-Revision-Date: 2021-08-05 22:34+0000\n" "Last-Translator: Thiago Carmona Monteiro \n" "Language-Team: Portuguese (Brazil) \n" "Language-Team: Russian =11 && n%100<=14)? 2 : 3);\n" "X-Generator: Weblate 4.7.2-dev\n" +#: commons/templatetags/motd.py:20 +msgid "Read more" +msgstr "" + #: www/templates/404.html:4 msgid "404 Not Found - AlmaLinux OS" msgstr "404 Не Найдено - AlmaLinux OS" #: www/templates/404.html:6 www/templates/blog/index.html:9 -#: www/templates/index.html:8 www/templates/layouts/base.html:21 -#: www/templates/subscribe_post.html:8 +#: www/templates/blog/post.html:9 www/templates/index.html:8 +#: www/templates/layouts/base.html:21 www/templates/subscribe_post.html:8 msgid "" "An Open Source, community owned and governed, forever-free enterprise Linux " "distribution." @@ -37,11 +41,11 @@ msgid "Sorry, but the page you were trying to access could not be found." msgstr "" "Извините, но страница, к которой вы пытались получить доступ, не найдена." -#: www/templates/_partial/footer.html:11 www/templates/_partial/navbar.html:38 +#: www/templates/_partial/footer.html:11 www/templates/_partial/navbar.html:41 msgid "Resources" msgstr "Ресурсы" -#: www/templates/_partial/footer.html:13 www/templates/_partial/navbar.html:28 +#: www/templates/_partial/footer.html:13 www/templates/_partial/navbar.html:31 msgid "Wiki" msgstr "Вики" @@ -57,85 +61,89 @@ msgstr "Репозиторий" msgid "Downloads" msgstr "Загрузки" -#: www/templates/_partial/footer.html:21 +#: www/templates/_partial/footer.html:18 www/templates/_partial/navbar.html:57 +msgid "Membership" +msgstr "" + +#: www/templates/_partial/footer.html:19 www/templates/_partial/navbar.html:62 +msgid "ELevate" +msgstr "" + +#: www/templates/_partial/footer.html:23 msgid "Community" msgstr "Сообщество" -#: www/templates/_partial/footer.html:25 +#: www/templates/_partial/footer.html:27 msgid "Forums" msgstr "Форумы" -#: www/templates/_partial/footer.html:26 +#: www/templates/_partial/footer.html:28 msgid "Chat" msgstr "Чат" -#: www/templates/_partial/footer.html:31 +#: www/templates/_partial/footer.html:33 msgid "Legal" msgstr "Юридическая" -#: www/templates/_partial/footer.html:33 +#: www/templates/_partial/footer.html:35 msgid "Legal Notice" msgstr "Правовая информация" -#: www/templates/_partial/footer.html:34 www/templates/index.html:352 +#: www/templates/_partial/footer.html:36 www/templates/index.html:352 msgid "Privacy Policy" msgstr "Политика конфиденциальности" -#: www/templates/_partial/footer.html:35 +#: www/templates/_partial/footer.html:37 msgid "Terms of Service" msgstr "Условия предоставления услуг" -#: www/templates/_partial/footer.html:38 +#: www/templates/_partial/footer.html:40 msgid "Licensing Policy" msgstr "Лицензионная политика" -#: www/templates/_partial/footer.html:43 +#: www/templates/_partial/footer.html:45 #, fuzzy #| msgid " Trademark Usage Policy" msgid "Trademark Usage Policy" msgstr " Политика использования товарных знаков" -#: www/templates/_partial/footer.html:48 +#: www/templates/_partial/footer.html:50 msgid "Foundation Bylaws" msgstr "" -#: www/templates/_partial/navbar.html:7 +#: www/templates/_partial/navbar.html:10 msgid "AlmaLinux OS logo" msgstr "Логотип ОС AlmaLinux" -#: www/templates/_partial/navbar.html:16 +#: www/templates/_partial/navbar.html:19 msgid "Toggle navigation" msgstr "Переключение навигации" -#: www/templates/_partial/navbar.html:23 +#: www/templates/_partial/navbar.html:26 msgid "Blog" msgstr "Блог" -#: www/templates/_partial/navbar.html:44 +#: www/templates/_partial/navbar.html:47 msgid "Migrate from CentOS 8" msgstr "Миграция с CentOS 8" -#: www/templates/_partial/navbar.html:49 +#: www/templates/_partial/navbar.html:52 msgid "Report Bugs" msgstr "Сообщить об ошибках" -#: www/templates/_partial/navbar.html:54 -msgid "Membership" -msgstr "" - -#: www/templates/_partial/navbar.html:62 +#: www/templates/_partial/navbar.html:70 msgid "Shop" msgstr "Магазин" -#: www/templates/_partial/navbar.html:70 +#: www/templates/_partial/navbar.html:78 msgid "Language" msgstr "Язык" -#: www/templates/_partial/navbar.html:91 +#: www/templates/_partial/navbar.html:102 msgid "Translate" msgstr "" -#: www/templates/_partial/navbar.html:99 www/templates/index.html:52 +#: www/templates/_partial/navbar.html:110 www/templates/index.html:52 msgid "Download" msgstr "Скачать" @@ -215,6 +223,191 @@ msgstr "Веб-присутствие" msgid "Join AlmaLinux OS community chat" msgstr "Присоединяйтесь к чату сообщества AlmaLinux OS" +#: www/templates/elevate/index.html:6 +#, fuzzy +#| msgid "AlmaLinux OS - Contribute" +msgid "AlmaLinux OS - ELevate Your Distribution" +msgstr "ОС AlmaLinux - Вклад" + +#: www/templates/elevate/index.html:8 +msgid "" +"ELevate enables migration between major versions of RHEL(r) derivatives. " +"Easily go from CentOS 7.x to any 8.x of your choice" +msgstr "" + +#: www/templates/elevate/index.html:23 +msgid "ELevate Your Distribution" +msgstr "" + +#: www/templates/elevate/index.html:27 +msgid "" +"ELevate enables migration between major versions of RHEL® derivatives. " +"Easily go from CentOS 7.x to any 8.x of your choice" +msgstr "" + +#: www/templates/elevate/index.html:37 +msgid "Get Started" +msgstr "" + +#: www/templates/elevate/index.html:42 +msgid "Discuss" +msgstr "" + +#: www/templates/elevate/index.html:58 +msgid "About" +msgstr "" + +#: www/templates/elevate/index.html:63 +msgid "Major Version Upgrades" +msgstr "" + +#: www/templates/elevate/index.html:66 +msgid "" +"It wasn't possible--until now. Easily migrate between major versions of RHEL-" +"based distributions from 7.x to 8.x. Preserve your applications, your data, " +"and your sanity. Run the most recent version of the OS and software you need." +msgstr "" + +#: www/templates/elevate/index.html:77 +msgid "Package Evolution Service" +msgstr "" + +#: www/templates/elevate/index.html:80 +#, python-format +msgid "" +"The beating heart of ELevate is the Package " +"Evolution Service (PES) which allows you to download, customize and even " +"submit new data sets for packages. Users and maintainers can both utilize " +"the PES to help make migrations smooth and easy." +msgstr "" + +#: www/templates/elevate/index.html:93 +#, fuzzy +#| msgid "Community chat" +msgid "Community-wide Project" +msgstr "Чат сообщества" + +#: www/templates/elevate/index.html:96 +msgid "" +"ELevate is developed in a distribution agnostic way and is built as a tool " +"for the whole ecosystem, not just AlmaLinux. ELevate supports migrating to/" +"from other distributions and is open for all to contribute to and enhance." +msgstr "" + +#: www/templates/elevate/index.html:107 +msgid "FAQ" +msgstr "" + +#: www/templates/elevate/index.html:112 +msgid "What is ELevate?" +msgstr "" + +#: www/templates/elevate/index.html:117 +msgid "" +"ELevate is a project aimed to provide the ability to migrate between major " +"versions of RHEL-based distributions from 7.x to 8.x. It combines Red Hat's " +"Leapp framework with a community created library and service for the " +"migration metadata set required for it." +msgstr "" + +#: www/templates/elevate/index.html:127 +msgid "This looks awesome. How can I contribute?" +msgstr "" + +#: www/templates/elevate/index.html:132 +#, python-format +msgid "" +"First, join us at #migration Mattermost " +"channel. You can find the tool code here: " +"%(github_link)s and you can add/edit/interact with package metadata at " +"%(pes_link)s." +msgstr "" + +#: www/templates/elevate/index.html:143 +msgid "Is this ready for production?" +msgstr "" + +#: www/templates/elevate/index.html:148 +msgid "" +"YMMV. Every environment is different and unique based on applications and " +"configurations. Since this is still under development, to avoid any " +"surprises, we highly recommend that you test migrations scenarios in a VM or " +"sandbox before running a migration in production." +msgstr "" + +#: www/templates/elevate/index.html:158 +msgid "What operating systems does ELevate support?" +msgstr "" + +#: www/templates/elevate/index.html:163 +msgid "" +"Currently ELevate provides Leapp data for migration from CentOS 7 to the " +"following OS:
  • AlmaLinux OS 8
  • CentOS Stream 8
  • " +"
  • Oracle Linux 8
  • Rocky Linux 8
" +msgstr "" + +#: www/templates/elevate/index.html:177 +msgid "Will migration be \"in-place?\"" +msgstr "" + +#: www/templates/elevate/index.html:182 +msgid "Yes. All your data, applications and settings will be kept." +msgstr "" + +#: www/templates/elevate/index.html:190 +msgid "Is this live or does it require a reboot?" +msgstr "" + +#: www/templates/elevate/index.html:195 +msgid "Migrations will require your system to reboot twice." +msgstr "" + +#: www/templates/elevate/index.html:203 +msgid "What does the Package Evolution Service do?" +msgstr "" + +#: www/templates/elevate/index.html:208 +msgid "" +"The Package Evolution Service stores package migration metadata. Metadata " +"answers questions about how packages evolve between major distribution " +"releases. PES supports several classes of rules for packages such as added, " +"removed, renamed, split, merged, and so on. The service also allows everyone " +"to improve the data by adding new actions or even create a custom dataset " +"for packages from third-party or private repositories." +msgstr "" + +#: www/templates/elevate/index.html:220 +msgid "" +"Red Hat offers a data set which is non-freely licensed. Are you using this " +"same data set?" +msgstr "" + +#: www/templates/elevate/index.html:225 +msgid "" +"No. We respect Red Hat’s work and our initial data set was provided by the " +"AlmaLinux Foundation and contributions from Oracle." +msgstr "" + +#: www/templates/elevate/index.html:234 +msgid "What license is your metadata under?" +msgstr "" + +#: www/templates/elevate/index.html:239 +msgid "The metadata is provided under an Apache License." +msgstr "" + +#: www/templates/elevate/index.html:247 +msgid "Why are you supporting migration to other distributions?" +msgstr "" + +#: www/templates/elevate/index.html:252 +msgid "" +"The CentOS ecosystem is a very large and diverse community. We’ve developed " +"this project in good faith in the hope that everyone in the community can " +"use and contribute to, no matter which distro you prefer. That’s the open " +"source way." +msgstr "" + #: www/templates/foundation/members/index.html:6 #: www/templates/foundation/members/index.html:7 #, fuzzy diff --git a/locale/ru/LC_MESSAGES/djangojs.po b/locale/ru/LC_MESSAGES/djangojs.po index a2c67e1..9e4f8f9 100644 --- a/locale/ru/LC_MESSAGES/djangojs.po +++ b/locale/ru/LC_MESSAGES/djangojs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: almalinuxorg/1.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-05 20:01+0000\n" +"POT-Creation-Date: 2021-10-19 06:19+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/locale/tr/LC_MESSAGES/django.po b/locale/tr/LC_MESSAGES/django.po index 5f58746..70a52b2 100644 --- a/locale/tr/LC_MESSAGES/django.po +++ b/locale/tr/LC_MESSAGES/django.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-05 20:01+0000\n" +"POT-Creation-Date: 2021-10-19 06:19+0000\n" "PO-Revision-Date: 2021-08-19 21:35+0000\n" "Last-Translator: Oğuz Ersen \n" "Language-Team: Turkish 1;\n" "X-Generator: Weblate 4.8-dev\n" +#: commons/templatetags/motd.py:20 +msgid "Read more" +msgstr "" + #: www/templates/404.html:4 msgid "404 Not Found - AlmaLinux OS" msgstr "404 Sayfa Bulunamadı - AlmaLinux OS" #: www/templates/404.html:6 www/templates/blog/index.html:9 -#: www/templates/index.html:8 www/templates/layouts/base.html:21 -#: www/templates/subscribe_post.html:8 +#: www/templates/blog/post.html:9 www/templates/index.html:8 +#: www/templates/layouts/base.html:21 www/templates/subscribe_post.html:8 msgid "" "An Open Source, community owned and governed, forever-free enterprise Linux " "distribution." @@ -39,11 +43,11 @@ msgstr "404 Sayfa Bulunamadı" msgid "Sorry, but the page you were trying to access could not be found." msgstr "Üzgünüm, aradığınız sayfa bulunamadı." -#: www/templates/_partial/footer.html:11 www/templates/_partial/navbar.html:38 +#: www/templates/_partial/footer.html:11 www/templates/_partial/navbar.html:41 msgid "Resources" msgstr "Kaynaklar" -#: www/templates/_partial/footer.html:13 www/templates/_partial/navbar.html:28 +#: www/templates/_partial/footer.html:13 www/templates/_partial/navbar.html:31 msgid "Wiki" msgstr "Wiki" @@ -59,85 +63,89 @@ msgstr "Depo" msgid "Downloads" msgstr "Kurulum" -#: www/templates/_partial/footer.html:21 +#: www/templates/_partial/footer.html:18 www/templates/_partial/navbar.html:57 +msgid "Membership" +msgstr "" + +#: www/templates/_partial/footer.html:19 www/templates/_partial/navbar.html:62 +msgid "ELevate" +msgstr "" + +#: www/templates/_partial/footer.html:23 msgid "Community" msgstr "Topluluk" -#: www/templates/_partial/footer.html:25 +#: www/templates/_partial/footer.html:27 msgid "Forums" msgstr "Forumlar" -#: www/templates/_partial/footer.html:26 +#: www/templates/_partial/footer.html:28 msgid "Chat" msgstr "Sohbet" -#: www/templates/_partial/footer.html:31 +#: www/templates/_partial/footer.html:33 msgid "Legal" msgstr "Yasal" -#: www/templates/_partial/footer.html:33 +#: www/templates/_partial/footer.html:35 msgid "Legal Notice" msgstr "Yasal Uyarı" -#: www/templates/_partial/footer.html:34 www/templates/index.html:352 +#: www/templates/_partial/footer.html:36 www/templates/index.html:352 msgid "Privacy Policy" msgstr "Gizlilik Politikası" -#: www/templates/_partial/footer.html:35 +#: www/templates/_partial/footer.html:37 msgid "Terms of Service" msgstr "Kullanım Şartları" -#: www/templates/_partial/footer.html:38 +#: www/templates/_partial/footer.html:40 msgid "Licensing Policy" msgstr "Lisans Politikası" -#: www/templates/_partial/footer.html:43 +#: www/templates/_partial/footer.html:45 #, fuzzy #| msgid " Trademark Usage Policy" msgid "Trademark Usage Policy" msgstr " Ticari Marka Kullanım Politikası" -#: www/templates/_partial/footer.html:48 +#: www/templates/_partial/footer.html:50 msgid "Foundation Bylaws" msgstr "" -#: www/templates/_partial/navbar.html:7 +#: www/templates/_partial/navbar.html:10 msgid "AlmaLinux OS logo" msgstr "AlmaLinux OS logo" -#: www/templates/_partial/navbar.html:16 +#: www/templates/_partial/navbar.html:19 msgid "Toggle navigation" msgstr "Gezinmeyi aç/kapat" -#: www/templates/_partial/navbar.html:23 +#: www/templates/_partial/navbar.html:26 msgid "Blog" msgstr "Blog" -#: www/templates/_partial/navbar.html:44 +#: www/templates/_partial/navbar.html:47 msgid "Migrate from CentOS 8" msgstr "CentOS 8'den geçiş yapın" -#: www/templates/_partial/navbar.html:49 +#: www/templates/_partial/navbar.html:52 msgid "Report Bugs" msgstr "Yazılım Hata Raporu" -#: www/templates/_partial/navbar.html:54 -msgid "Membership" -msgstr "" - -#: www/templates/_partial/navbar.html:62 +#: www/templates/_partial/navbar.html:70 msgid "Shop" msgstr "Mağaza" -#: www/templates/_partial/navbar.html:70 +#: www/templates/_partial/navbar.html:78 msgid "Language" msgstr "Dil" -#: www/templates/_partial/navbar.html:91 +#: www/templates/_partial/navbar.html:102 msgid "Translate" msgstr "Çevir" -#: www/templates/_partial/navbar.html:99 www/templates/index.html:52 +#: www/templates/_partial/navbar.html:110 www/templates/index.html:52 msgid "Download" msgstr "Kurulum" @@ -216,6 +224,191 @@ msgstr "Web varlığı" msgid "Join AlmaLinux OS community chat" msgstr "AlmaLinux OS topluluk sohbetine katılınız" +#: www/templates/elevate/index.html:6 +#, fuzzy +#| msgid "AlmaLinux OS - Contribute" +msgid "AlmaLinux OS - ELevate Your Distribution" +msgstr "AlmaLinux OS - Katkıda Bulunuz" + +#: www/templates/elevate/index.html:8 +msgid "" +"ELevate enables migration between major versions of RHEL(r) derivatives. " +"Easily go from CentOS 7.x to any 8.x of your choice" +msgstr "" + +#: www/templates/elevate/index.html:23 +msgid "ELevate Your Distribution" +msgstr "" + +#: www/templates/elevate/index.html:27 +msgid "" +"ELevate enables migration between major versions of RHEL® derivatives. " +"Easily go from CentOS 7.x to any 8.x of your choice" +msgstr "" + +#: www/templates/elevate/index.html:37 +msgid "Get Started" +msgstr "" + +#: www/templates/elevate/index.html:42 +msgid "Discuss" +msgstr "" + +#: www/templates/elevate/index.html:58 +msgid "About" +msgstr "" + +#: www/templates/elevate/index.html:63 +msgid "Major Version Upgrades" +msgstr "" + +#: www/templates/elevate/index.html:66 +msgid "" +"It wasn't possible--until now. Easily migrate between major versions of RHEL-" +"based distributions from 7.x to 8.x. Preserve your applications, your data, " +"and your sanity. Run the most recent version of the OS and software you need." +msgstr "" + +#: www/templates/elevate/index.html:77 +msgid "Package Evolution Service" +msgstr "" + +#: www/templates/elevate/index.html:80 +#, python-format +msgid "" +"The beating heart of ELevate is the Package " +"Evolution Service (PES) which allows you to download, customize and even " +"submit new data sets for packages. Users and maintainers can both utilize " +"the PES to help make migrations smooth and easy." +msgstr "" + +#: www/templates/elevate/index.html:93 +#, fuzzy +#| msgid "Community chat" +msgid "Community-wide Project" +msgstr "Topluluk Sohbeti" + +#: www/templates/elevate/index.html:96 +msgid "" +"ELevate is developed in a distribution agnostic way and is built as a tool " +"for the whole ecosystem, not just AlmaLinux. ELevate supports migrating to/" +"from other distributions and is open for all to contribute to and enhance." +msgstr "" + +#: www/templates/elevate/index.html:107 +msgid "FAQ" +msgstr "" + +#: www/templates/elevate/index.html:112 +msgid "What is ELevate?" +msgstr "" + +#: www/templates/elevate/index.html:117 +msgid "" +"ELevate is a project aimed to provide the ability to migrate between major " +"versions of RHEL-based distributions from 7.x to 8.x. It combines Red Hat's " +"Leapp framework with a community created library and service for the " +"migration metadata set required for it." +msgstr "" + +#: www/templates/elevate/index.html:127 +msgid "This looks awesome. How can I contribute?" +msgstr "" + +#: www/templates/elevate/index.html:132 +#, python-format +msgid "" +"First, join us at #migration Mattermost " +"channel. You can find the tool code here: " +"%(github_link)s and you can add/edit/interact with package metadata at " +"%(pes_link)s." +msgstr "" + +#: www/templates/elevate/index.html:143 +msgid "Is this ready for production?" +msgstr "" + +#: www/templates/elevate/index.html:148 +msgid "" +"YMMV. Every environment is different and unique based on applications and " +"configurations. Since this is still under development, to avoid any " +"surprises, we highly recommend that you test migrations scenarios in a VM or " +"sandbox before running a migration in production." +msgstr "" + +#: www/templates/elevate/index.html:158 +msgid "What operating systems does ELevate support?" +msgstr "" + +#: www/templates/elevate/index.html:163 +msgid "" +"Currently ELevate provides Leapp data for migration from CentOS 7 to the " +"following OS:
  • AlmaLinux OS 8
  • CentOS Stream 8
  • " +"
  • Oracle Linux 8
  • Rocky Linux 8
" +msgstr "" + +#: www/templates/elevate/index.html:177 +msgid "Will migration be \"in-place?\"" +msgstr "" + +#: www/templates/elevate/index.html:182 +msgid "Yes. All your data, applications and settings will be kept." +msgstr "" + +#: www/templates/elevate/index.html:190 +msgid "Is this live or does it require a reboot?" +msgstr "" + +#: www/templates/elevate/index.html:195 +msgid "Migrations will require your system to reboot twice." +msgstr "" + +#: www/templates/elevate/index.html:203 +msgid "What does the Package Evolution Service do?" +msgstr "" + +#: www/templates/elevate/index.html:208 +msgid "" +"The Package Evolution Service stores package migration metadata. Metadata " +"answers questions about how packages evolve between major distribution " +"releases. PES supports several classes of rules for packages such as added, " +"removed, renamed, split, merged, and so on. The service also allows everyone " +"to improve the data by adding new actions or even create a custom dataset " +"for packages from third-party or private repositories." +msgstr "" + +#: www/templates/elevate/index.html:220 +msgid "" +"Red Hat offers a data set which is non-freely licensed. Are you using this " +"same data set?" +msgstr "" + +#: www/templates/elevate/index.html:225 +msgid "" +"No. We respect Red Hat’s work and our initial data set was provided by the " +"AlmaLinux Foundation and contributions from Oracle." +msgstr "" + +#: www/templates/elevate/index.html:234 +msgid "What license is your metadata under?" +msgstr "" + +#: www/templates/elevate/index.html:239 +msgid "The metadata is provided under an Apache License." +msgstr "" + +#: www/templates/elevate/index.html:247 +msgid "Why are you supporting migration to other distributions?" +msgstr "" + +#: www/templates/elevate/index.html:252 +msgid "" +"The CentOS ecosystem is a very large and diverse community. We’ve developed " +"this project in good faith in the hope that everyone in the community can " +"use and contribute to, no matter which distro you prefer. That’s the open " +"source way." +msgstr "" + #: www/templates/foundation/members/index.html:6 #: www/templates/foundation/members/index.html:7 #, fuzzy diff --git a/locale/tr/LC_MESSAGES/djangojs.po b/locale/tr/LC_MESSAGES/djangojs.po index 55d03c1..2745683 100644 --- a/locale/tr/LC_MESSAGES/djangojs.po +++ b/locale/tr/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-05 20:01+0000\n" +"POT-Creation-Date: 2021-10-19 06:19+0000\n" "PO-Revision-Date: 2021-07-29 08:43+0000\n" "Last-Translator: Oğuz Ersen \n" "Language-Team: Turkish \n" "Language-Team: Ukrainian =11 && n % 100 <=14 )) ? 2: 3);\n" "X-Generator: Weblate 4.7.2-dev\n" +#: commons/templatetags/motd.py:20 +msgid "Read more" +msgstr "" + #: www/templates/404.html:4 msgid "404 Not Found - AlmaLinux OS" msgstr "404 Не знайдено - AlmaLinux OS" #: www/templates/404.html:6 www/templates/blog/index.html:9 -#: www/templates/index.html:8 www/templates/layouts/base.html:21 -#: www/templates/subscribe_post.html:8 +#: www/templates/blog/post.html:9 www/templates/index.html:8 +#: www/templates/layouts/base.html:21 www/templates/subscribe_post.html:8 msgid "" "An Open Source, community owned and governed, forever-free enterprise Linux " "distribution." @@ -43,11 +47,11 @@ msgid "Sorry, but the page you were trying to access could not be found." msgstr "" "Вибачте, але сторінка до якої ви намагалися отримати доступ не була знайдена." -#: www/templates/_partial/footer.html:11 www/templates/_partial/navbar.html:38 +#: www/templates/_partial/footer.html:11 www/templates/_partial/navbar.html:41 msgid "Resources" msgstr "Ресурси" -#: www/templates/_partial/footer.html:13 www/templates/_partial/navbar.html:28 +#: www/templates/_partial/footer.html:13 www/templates/_partial/navbar.html:31 msgid "Wiki" msgstr "Вікіпедія" @@ -63,85 +67,89 @@ msgstr "Репозиторій" msgid "Downloads" msgstr "Завантаження" -#: www/templates/_partial/footer.html:21 +#: www/templates/_partial/footer.html:18 www/templates/_partial/navbar.html:57 +msgid "Membership" +msgstr "" + +#: www/templates/_partial/footer.html:19 www/templates/_partial/navbar.html:62 +msgid "ELevate" +msgstr "" + +#: www/templates/_partial/footer.html:23 msgid "Community" msgstr "Спільнота" -#: www/templates/_partial/footer.html:25 +#: www/templates/_partial/footer.html:27 msgid "Forums" msgstr "Форуми" -#: www/templates/_partial/footer.html:26 +#: www/templates/_partial/footer.html:28 msgid "Chat" msgstr "Чат" -#: www/templates/_partial/footer.html:31 +#: www/templates/_partial/footer.html:33 msgid "Legal" msgstr "Угоди" -#: www/templates/_partial/footer.html:33 +#: www/templates/_partial/footer.html:35 msgid "Legal Notice" msgstr "Юридичне повідомлення" -#: www/templates/_partial/footer.html:34 www/templates/index.html:352 +#: www/templates/_partial/footer.html:36 www/templates/index.html:352 msgid "Privacy Policy" msgstr "Політика конфіденційності" -#: www/templates/_partial/footer.html:35 +#: www/templates/_partial/footer.html:37 msgid "Terms of Service" msgstr "Умови надання послуг" -#: www/templates/_partial/footer.html:38 +#: www/templates/_partial/footer.html:40 msgid "Licensing Policy" msgstr "Політика ліцензування" -#: www/templates/_partial/footer.html:43 +#: www/templates/_partial/footer.html:45 #, fuzzy #| msgid " Trademark Usage Policy" msgid "Trademark Usage Policy" msgstr " Політика використання торговельних марок" -#: www/templates/_partial/footer.html:48 +#: www/templates/_partial/footer.html:50 msgid "Foundation Bylaws" msgstr "" -#: www/templates/_partial/navbar.html:7 +#: www/templates/_partial/navbar.html:10 msgid "AlmaLinux OS logo" msgstr "Логотип ОС AlmaLinux" -#: www/templates/_partial/navbar.html:16 +#: www/templates/_partial/navbar.html:19 msgid "Toggle navigation" msgstr "Перемкнути навігацію" -#: www/templates/_partial/navbar.html:23 +#: www/templates/_partial/navbar.html:26 msgid "Blog" msgstr "Блог" -#: www/templates/_partial/navbar.html:44 +#: www/templates/_partial/navbar.html:47 msgid "Migrate from CentOS 8" msgstr "Мігрувати з CentOS 8" -#: www/templates/_partial/navbar.html:49 +#: www/templates/_partial/navbar.html:52 msgid "Report Bugs" msgstr "Повідомити про помилки" -#: www/templates/_partial/navbar.html:54 -msgid "Membership" -msgstr "" - -#: www/templates/_partial/navbar.html:62 +#: www/templates/_partial/navbar.html:70 msgid "Shop" msgstr "Крамниця" -#: www/templates/_partial/navbar.html:70 +#: www/templates/_partial/navbar.html:78 msgid "Language" msgstr "Мова" -#: www/templates/_partial/navbar.html:91 +#: www/templates/_partial/navbar.html:102 msgid "Translate" msgstr "" -#: www/templates/_partial/navbar.html:99 www/templates/index.html:52 +#: www/templates/_partial/navbar.html:110 www/templates/index.html:52 msgid "Download" msgstr "Завантажити" @@ -220,6 +228,191 @@ msgstr "Присутність у мережі" msgid "Join AlmaLinux OS community chat" msgstr "Приєднуйтесь до спільноти спільноти ОС AlmaLinux" +#: www/templates/elevate/index.html:6 +#, fuzzy +#| msgid "AlmaLinux OS - Contribute" +msgid "AlmaLinux OS - ELevate Your Distribution" +msgstr "ОС AlmaLinux - внесіть вклад" + +#: www/templates/elevate/index.html:8 +msgid "" +"ELevate enables migration between major versions of RHEL(r) derivatives. " +"Easily go from CentOS 7.x to any 8.x of your choice" +msgstr "" + +#: www/templates/elevate/index.html:23 +msgid "ELevate Your Distribution" +msgstr "" + +#: www/templates/elevate/index.html:27 +msgid "" +"ELevate enables migration between major versions of RHEL® derivatives. " +"Easily go from CentOS 7.x to any 8.x of your choice" +msgstr "" + +#: www/templates/elevate/index.html:37 +msgid "Get Started" +msgstr "" + +#: www/templates/elevate/index.html:42 +msgid "Discuss" +msgstr "" + +#: www/templates/elevate/index.html:58 +msgid "About" +msgstr "" + +#: www/templates/elevate/index.html:63 +msgid "Major Version Upgrades" +msgstr "" + +#: www/templates/elevate/index.html:66 +msgid "" +"It wasn't possible--until now. Easily migrate between major versions of RHEL-" +"based distributions from 7.x to 8.x. Preserve your applications, your data, " +"and your sanity. Run the most recent version of the OS and software you need." +msgstr "" + +#: www/templates/elevate/index.html:77 +msgid "Package Evolution Service" +msgstr "" + +#: www/templates/elevate/index.html:80 +#, python-format +msgid "" +"The beating heart of ELevate is the Package " +"Evolution Service (PES) which allows you to download, customize and even " +"submit new data sets for packages. Users and maintainers can both utilize " +"the PES to help make migrations smooth and easy." +msgstr "" + +#: www/templates/elevate/index.html:93 +#, fuzzy +#| msgid "Community chat" +msgid "Community-wide Project" +msgstr "Чат спільноти" + +#: www/templates/elevate/index.html:96 +msgid "" +"ELevate is developed in a distribution agnostic way and is built as a tool " +"for the whole ecosystem, not just AlmaLinux. ELevate supports migrating to/" +"from other distributions and is open for all to contribute to and enhance." +msgstr "" + +#: www/templates/elevate/index.html:107 +msgid "FAQ" +msgstr "" + +#: www/templates/elevate/index.html:112 +msgid "What is ELevate?" +msgstr "" + +#: www/templates/elevate/index.html:117 +msgid "" +"ELevate is a project aimed to provide the ability to migrate between major " +"versions of RHEL-based distributions from 7.x to 8.x. It combines Red Hat's " +"Leapp framework with a community created library and service for the " +"migration metadata set required for it." +msgstr "" + +#: www/templates/elevate/index.html:127 +msgid "This looks awesome. How can I contribute?" +msgstr "" + +#: www/templates/elevate/index.html:132 +#, python-format +msgid "" +"First, join us at #migration Mattermost " +"channel. You can find the tool code here: " +"%(github_link)s and you can add/edit/interact with package metadata at " +"%(pes_link)s." +msgstr "" + +#: www/templates/elevate/index.html:143 +msgid "Is this ready for production?" +msgstr "" + +#: www/templates/elevate/index.html:148 +msgid "" +"YMMV. Every environment is different and unique based on applications and " +"configurations. Since this is still under development, to avoid any " +"surprises, we highly recommend that you test migrations scenarios in a VM or " +"sandbox before running a migration in production." +msgstr "" + +#: www/templates/elevate/index.html:158 +msgid "What operating systems does ELevate support?" +msgstr "" + +#: www/templates/elevate/index.html:163 +msgid "" +"Currently ELevate provides Leapp data for migration from CentOS 7 to the " +"following OS:
  • AlmaLinux OS 8
  • CentOS Stream 8
  • " +"
  • Oracle Linux 8
  • Rocky Linux 8
" +msgstr "" + +#: www/templates/elevate/index.html:177 +msgid "Will migration be \"in-place?\"" +msgstr "" + +#: www/templates/elevate/index.html:182 +msgid "Yes. All your data, applications and settings will be kept." +msgstr "" + +#: www/templates/elevate/index.html:190 +msgid "Is this live or does it require a reboot?" +msgstr "" + +#: www/templates/elevate/index.html:195 +msgid "Migrations will require your system to reboot twice." +msgstr "" + +#: www/templates/elevate/index.html:203 +msgid "What does the Package Evolution Service do?" +msgstr "" + +#: www/templates/elevate/index.html:208 +msgid "" +"The Package Evolution Service stores package migration metadata. Metadata " +"answers questions about how packages evolve between major distribution " +"releases. PES supports several classes of rules for packages such as added, " +"removed, renamed, split, merged, and so on. The service also allows everyone " +"to improve the data by adding new actions or even create a custom dataset " +"for packages from third-party or private repositories." +msgstr "" + +#: www/templates/elevate/index.html:220 +msgid "" +"Red Hat offers a data set which is non-freely licensed. Are you using this " +"same data set?" +msgstr "" + +#: www/templates/elevate/index.html:225 +msgid "" +"No. We respect Red Hat’s work and our initial data set was provided by the " +"AlmaLinux Foundation and contributions from Oracle." +msgstr "" + +#: www/templates/elevate/index.html:234 +msgid "What license is your metadata under?" +msgstr "" + +#: www/templates/elevate/index.html:239 +msgid "The metadata is provided under an Apache License." +msgstr "" + +#: www/templates/elevate/index.html:247 +msgid "Why are you supporting migration to other distributions?" +msgstr "" + +#: www/templates/elevate/index.html:252 +msgid "" +"The CentOS ecosystem is a very large and diverse community. We’ve developed " +"this project in good faith in the hope that everyone in the community can " +"use and contribute to, no matter which distro you prefer. That’s the open " +"source way." +msgstr "" + #: www/templates/foundation/members/index.html:6 #: www/templates/foundation/members/index.html:7 #, fuzzy diff --git a/locale/uk/LC_MESSAGES/djangojs.po b/locale/uk/LC_MESSAGES/djangojs.po index f78420b..ca807fb 100644 --- a/locale/uk/LC_MESSAGES/djangojs.po +++ b/locale/uk/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-05 20:01+0000\n" +"POT-Creation-Date: 2021-10-19 06:19+0000\n" "PO-Revision-Date: 2021-05-27 11:33+0000\n" "Last-Translator: Ruslan Pisarev \n" "Language-Team: Ukrainian \n" "Language-Team: Chinese (Simplified) Package " +"Evolution Service (PES) which allows you to download, customize and even " +"submit new data sets for packages. Users and maintainers can both utilize " +"the PES to help make migrations smooth and easy." +msgstr "" + +#: www/templates/elevate/index.html:93 +#, fuzzy +#| msgid "Community chat" +msgid "Community-wide Project" +msgstr "社区聊天" + +#: www/templates/elevate/index.html:96 +msgid "" +"ELevate is developed in a distribution agnostic way and is built as a tool " +"for the whole ecosystem, not just AlmaLinux. ELevate supports migrating to/" +"from other distributions and is open for all to contribute to and enhance." +msgstr "" + +#: www/templates/elevate/index.html:107 +msgid "FAQ" +msgstr "" + +#: www/templates/elevate/index.html:112 +msgid "What is ELevate?" +msgstr "" + +#: www/templates/elevate/index.html:117 +msgid "" +"ELevate is a project aimed to provide the ability to migrate between major " +"versions of RHEL-based distributions from 7.x to 8.x. It combines Red Hat's " +"Leapp framework with a community created library and service for the " +"migration metadata set required for it." +msgstr "" + +#: www/templates/elevate/index.html:127 +msgid "This looks awesome. How can I contribute?" +msgstr "" + +#: www/templates/elevate/index.html:132 +#, python-format +msgid "" +"First, join us at #migration Mattermost " +"channel. You can find the tool code here: " +"%(github_link)s and you can add/edit/interact with package metadata at " +"%(pes_link)s." +msgstr "" + +#: www/templates/elevate/index.html:143 +msgid "Is this ready for production?" +msgstr "" + +#: www/templates/elevate/index.html:148 +msgid "" +"YMMV. Every environment is different and unique based on applications and " +"configurations. Since this is still under development, to avoid any " +"surprises, we highly recommend that you test migrations scenarios in a VM or " +"sandbox before running a migration in production." +msgstr "" + +#: www/templates/elevate/index.html:158 +msgid "What operating systems does ELevate support?" +msgstr "" + +#: www/templates/elevate/index.html:163 +msgid "" +"Currently ELevate provides Leapp data for migration from CentOS 7 to the " +"following OS:
  • AlmaLinux OS 8
  • CentOS Stream 8
  • " +"
  • Oracle Linux 8
  • Rocky Linux 8
" +msgstr "" + +#: www/templates/elevate/index.html:177 +msgid "Will migration be \"in-place?\"" +msgstr "" + +#: www/templates/elevate/index.html:182 +msgid "Yes. All your data, applications and settings will be kept." +msgstr "" + +#: www/templates/elevate/index.html:190 +msgid "Is this live or does it require a reboot?" +msgstr "" + +#: www/templates/elevate/index.html:195 +msgid "Migrations will require your system to reboot twice." +msgstr "" + +#: www/templates/elevate/index.html:203 +msgid "What does the Package Evolution Service do?" +msgstr "" + +#: www/templates/elevate/index.html:208 +msgid "" +"The Package Evolution Service stores package migration metadata. Metadata " +"answers questions about how packages evolve between major distribution " +"releases. PES supports several classes of rules for packages such as added, " +"removed, renamed, split, merged, and so on. The service also allows everyone " +"to improve the data by adding new actions or even create a custom dataset " +"for packages from third-party or private repositories." +msgstr "" + +#: www/templates/elevate/index.html:220 +msgid "" +"Red Hat offers a data set which is non-freely licensed. Are you using this " +"same data set?" +msgstr "" + +#: www/templates/elevate/index.html:225 +msgid "" +"No. We respect Red Hat’s work and our initial data set was provided by the " +"AlmaLinux Foundation and contributions from Oracle." +msgstr "" + +#: www/templates/elevate/index.html:234 +msgid "What license is your metadata under?" +msgstr "" + +#: www/templates/elevate/index.html:239 +msgid "The metadata is provided under an Apache License." +msgstr "" + +#: www/templates/elevate/index.html:247 +msgid "Why are you supporting migration to other distributions?" +msgstr "" + +#: www/templates/elevate/index.html:252 +msgid "" +"The CentOS ecosystem is a very large and diverse community. We’ve developed " +"this project in good faith in the hope that everyone in the community can " +"use and contribute to, no matter which distro you prefer. That’s the open " +"source way." +msgstr "" + #: www/templates/foundation/members/index.html:6 #: www/templates/foundation/members/index.html:7 #, fuzzy diff --git a/locale/zh_Hans/LC_MESSAGES/djangojs.po b/locale/zh_Hans/LC_MESSAGES/djangojs.po index dd057a8..77e49e0 100644 --- a/locale/zh_Hans/LC_MESSAGES/djangojs.po +++ b/locale/zh_Hans/LC_MESSAGES/djangojs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-10-05 20:01+0000\n" +"POT-Creation-Date: 2021-10-19 06:19+0000\n" "PO-Revision-Date: 2021-08-02 20:28+0000\n" "Last-Translator: gz83 \n" "Language-Team: Chinese (Simplified) str: return self.file.name + +class MOTD(models.Model): + class Meta: + verbose_name_plural = 'MOTDs' + verbose_name = 'MOTD' + + id: models.AutoField = models.AutoField( + primary_key=True + ) + + published: models.BooleanField = models.BooleanField( + default=True, + help_text='Uncheck to hide' + ) + + text: models.CharField = models.TextField( + max_length=160, + null=False, + help_text='Maximum 160 characters' + ) + + link: models.CharField = models.CharField( + max_length=255, + null=True, + blank=True, + ) + + def __str__(self) -> str: + return self.text diff --git a/www/templates/_partial/footer.html b/www/templates/_partial/footer.html index 4055d50..4ec75cc 100644 --- a/www/templates/_partial/footer.html +++ b/www/templates/_partial/footer.html @@ -15,6 +15,8 @@
  • {% translate 'Bugs' %}
  • {% translate 'Repository' %}
  • {% translate 'Downloads' %}
  • +
  • {% translate 'Membership' %}
  • +
  • {% translate 'ELevate' %}
  • diff --git a/www/templates/_partial/navbar.html b/www/templates/_partial/navbar.html index ff7f410..ecc5a7e 100644 --- a/www/templates/_partial/navbar.html +++ b/www/templates/_partial/navbar.html @@ -1,7 +1,10 @@ {% load static %} {% load i18n %} {% load i18n_utils %} -
    + {% if current_motd %} +
    +
    + +
    {{ current_motd }}
    +
    +
    + {% endif %} diff --git a/www/templates/elevate/index.html b/www/templates/elevate/index.html new file mode 100644 index 0000000..41bfe67 --- /dev/null +++ b/www/templates/elevate/index.html @@ -0,0 +1,262 @@ +{% extends 'layouts/base.html' %} +{% load i18n %} +{% load static %} +{% load encore %} + +{% block title %}{% translate 'AlmaLinux OS - ELevate Your Distribution' %}{% endblock %} +{% block description %} + {% translate 'ELevate enables migration between major versions of RHEL(r) derivatives. Easily go from CentOS 7.x to any 8.x of your choice' %}{% endblock %} + +{% block head_end %} + {% encore_entrypoint_css 'page_elevate' %} +{% endblock %} +{% block body_end %} + {% encore_entrypoint_js 'page_elevate' %} +{% endblock %} + +{% block body %} +
    +
    +
    +
    +

    + {% translate 'ELevate Your Distribution' %} +

    + + +
    +
    +
    + +
    +
    +
    +
    +
    +
    {% translate 'About' %}
    +
    +
    +
    +

    + {% translate 'Major Version Upgrades' %} +

    +

    + {% blocktranslate trimmed %} + It wasn't possible--until now. Easily migrate between major versions of RHEL-based + distributions from 7.x to 8.x. Preserve your applications, your data, and your sanity. + Run the most recent version of the OS and software you need. + {% endblocktranslate %} +

    +
    +
    +
    +
    +

    + {% translate 'Package Evolution Service' %} +

    +

    + {% blocktranslate trimmed with pes_link="https://pes.almalinux.org" %} + The beating heart of ELevate is the + Package Evolution Service + (PES) which allows you to download, customize and even submit new data sets for + packages. Users and maintainers can both utilize the PES to help make migrations smooth + and easy. + {% endblocktranslate %} +

    +
    +
    +
    +
    +

    + {% translate 'Community-wide Project' %} +

    +

    + {% blocktranslate trimmed %} + ELevate is developed in a distribution agnostic way and is built as a tool for the whole + ecosystem, not just AlmaLinux. ELevate supports migrating to/from other distributions + and is open for all to contribute to and enhance. + {% endblocktranslate %} +

    +
    +
    +
    +
    +
    +
    {% translate 'FAQ' %}
    +
    + +
    +
    + {% blocktranslate trimmed %} + What is ELevate? + {% endblocktranslate %} +
    +
    + {% blocktranslate trimmed %} + ELevate is a project aimed to provide the ability to migrate between major versions of + RHEL-based distributions from 7.x to 8.x. It combines Red Hat's Leapp framework with a + community created library and service for the migration metadata set required for it. + {% endblocktranslate %} +
    +
    + +
    +
    + {% blocktranslate trimmed %} + This looks awesome. How can I contribute? + {% endblocktranslate %} +
    +
    + {% blocktranslate trimmed with chat_link='https://chat.almalinux.org/almalinux/channels/migration' github_link='https://github.com/AlmaLinux/leapp-repository/tree/almalinux' pes_link='https://pes.almalinux.org' %} + First, join us at #migration Mattermost channel. You can find + the tool code here: + {{ github_link }} and you can add/edit/interact + with package metadata at {{ pes_link }}. + {% endblocktranslate %} +
    +
    + +
    +
    + {% blocktranslate trimmed %} + Is this ready for production? + {% endblocktranslate %} +
    +
    + {% blocktranslate trimmed %} + YMMV. Every environment is different and unique based on applications and configurations. + Since this is still under development, to avoid any surprises, we highly recommend that you + test migrations scenarios in a VM or sandbox before running a migration in production. + {% endblocktranslate %} +
    +
    + +
    +
    + {% blocktranslate trimmed %} + What operating systems does ELevate support? + {% endblocktranslate %} +
    +
    + {% blocktranslate trimmed %} + Currently ELevate provides Leapp data for migration from CentOS 7 to the following OS: +
      +
    • AlmaLinux OS 8
    • +
    • CentOS Stream 8
    • +
    • Oracle Linux 8
    • +
    • Rocky Linux 8
    • +
    + {% endblocktranslate %} +
    +
    + +
    +
    + {% blocktranslate trimmed %} + Will migration be "in-place?" + {% endblocktranslate %} +
    +
    + {% blocktranslate trimmed %} + Yes. All your data, applications and settings will be kept. + {% endblocktranslate %} +
    +
    + +
    +
    + {% blocktranslate trimmed %} + Is this live or does it require a reboot? + {% endblocktranslate %} +
    +
    + {% blocktranslate trimmed %} + Migrations will require your system to reboot twice. + {% endblocktranslate %} +
    +
    + +
    +
    + {% blocktranslate trimmed %} + What does the Package Evolution Service do? + {% endblocktranslate %} +
    +
    + {% blocktranslate trimmed %} + The Package Evolution Service stores package migration metadata. Metadata answers questions + about how packages evolve between major distribution releases. PES supports several classes + of rules for packages such as added, removed, renamed, split, merged, and so on. The service + also allows everyone to improve the data by adding new actions or even create a custom + dataset for packages from third-party or private repositories. + {% endblocktranslate %} +
    +
    + +
    +
    + {% blocktranslate trimmed %} + Red Hat offers a data set which is non-freely licensed. Are you using this same data set? + {% endblocktranslate %} +
    +
    + {% blocktranslate trimmed %} + No. We respect Red Hat’s work and our initial data set was provided by the AlmaLinux + Foundation and contributions from Oracle. + {% endblocktranslate %} +
    +
    + +
    +
    + {% blocktranslate trimmed %} + What license is your metadata under? + {% endblocktranslate %} +
    +
    + {% blocktranslate trimmed %} + The metadata is provided under an Apache License. + {% endblocktranslate %} +
    +
    + +
    +
    + {% blocktranslate trimmed %} + Why are you supporting migration to other distributions? + {% endblocktranslate %} +
    +
    + {% blocktranslate trimmed %} + The CentOS ecosystem is a very large and diverse community. We’ve developed this project in + good faith in the hope that everyone in the community can use and contribute to, no matter + which distro you prefer. That’s the open source way. + {% endblocktranslate %} +
    +
    +
    +
    +
    +{% endblock %} diff --git a/www/urls.py b/www/urls.py index 3bf8dee..9518d5e 100644 --- a/www/urls.py +++ b/www/urls.py @@ -15,4 +15,5 @@ urlpatterns = [ path('foundation/members/', views.foundation_members, name='foundation_members'), path('feed/', BlogPostFeed(), name='feed'), path('media-link/', views.media_element, name='media_element'), + path('elevate', views.elevate, name='elevate'), ] diff --git a/www/views.py b/www/views.py index a3ab4eb..172c5d7 100644 --- a/www/views.py +++ b/www/views.py @@ -14,8 +14,8 @@ from django.views.decorators.cache import never_cache from django.views.decorators.http import require_POST, require_safe from almalinux.settings import HUBSPOT_APIKEY, HUBSPOT_SUB_ID -from .models import Backer, PressArticle, BlogPost, Page, FAQEntry, CommercialSupportVendor, ShowcaseFeature, \ - GovernanceMember, MediaElement +from .models import Backer, PressArticle, BlogPost, Page, FAQEntry, CommercialSupportVendor, GovernanceMember, \ + MediaElement # Public views @@ -203,5 +203,11 @@ def media_element(_: HttpRequest, media_id: int) -> HttpResponse: return redirect(element.file.url) +@require_safe +@never_cache +def elevate(request: HttpRequest) -> HttpResponse: + return render(request, 'elevate/index.html', {}) + + def not_found(request: HttpRequest, exception: Exception) -> HttpResponse: return render(request, '404.html', status=404)