Browse Source

ELevate

pull/25/head
Matīss Treinis 4 years ago
parent
commit
41c522d7fb
No known key found for this signature in database GPG Key ID: 9123B913EBF53D43
  1. 22
      commons/templatetags/motd.py
  2. 20
      frontend/src/common/js/main.js
  3. 35
      frontend/src/common/scss/main.scss
  4. 1
      frontend/src/modules/page_elevate/main.js
  5. 50
      frontend/src/modules/page_elevate/main.scss
  6. 1
      frontend/webpack.config.js
  7. 249
      locale/de/LC_MESSAGES/django.po
  8. 2
      locale/de/LC_MESSAGES/djangojs.po
  9. 249
      locale/es/LC_MESSAGES/django.po
  10. 2
      locale/es/LC_MESSAGES/djangojs.po
  11. 249
      locale/fr/LC_MESSAGES/django.po
  12. 2
      locale/fr/LC_MESSAGES/djangojs.po
  13. 249
      locale/he/LC_MESSAGES/django.po
  14. 2
      locale/he/LC_MESSAGES/djangojs.po
  15. 249
      locale/it/LC_MESSAGES/django.po
  16. 2
      locale/it/LC_MESSAGES/djangojs.po
  17. 249
      locale/ja/LC_MESSAGES/django.po
  18. 2
      locale/ja/LC_MESSAGES/djangojs.po
  19. 249
      locale/lv/LC_MESSAGES/django.po
  20. 2
      locale/lv/LC_MESSAGES/djangojs.po
  21. 249
      locale/pl/LC_MESSAGES/django.po
  22. 2
      locale/pl/LC_MESSAGES/djangojs.po
  23. 249
      locale/pt/LC_MESSAGES/django.po
  24. 2
      locale/pt/LC_MESSAGES/djangojs.po
  25. 249
      locale/pt_BR/LC_MESSAGES/django.po
  26. 2
      locale/pt_BR/LC_MESSAGES/djangojs.po
  27. 249
      locale/ru/LC_MESSAGES/django.po
  28. 2
      locale/ru/LC_MESSAGES/djangojs.po
  29. 249
      locale/tr/LC_MESSAGES/django.po
  30. 2
      locale/tr/LC_MESSAGES/djangojs.po
  31. 249
      locale/uk/LC_MESSAGES/django.po
  32. 2
      locale/uk/LC_MESSAGES/djangojs.po
  33. 249
      locale/zh_Hans/LC_MESSAGES/django.po
  34. 2
      locale/zh_Hans/LC_MESSAGES/djangojs.po
  35. 3
      www/admin.py
  36. 26
      www/migrations/0009_motd.py
  37. 33
      www/models.py
  38. 2
      www/templates/_partial/footer.html
  39. 25
      www/templates/_partial/navbar.html
  40. 262
      www/templates/elevate/index.html
  41. 1
      www/urls.py
  42. 10
      www/views.py

22
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 += (' <a href="%s">' % show_motd.link) + _('Read more') + '</a>'
return SafeString(message)

20
frontend/src/common/js/main.js

@ -5,3 +5,23 @@ import {Dropdown} from 'bootstrap';
// Ensure locales are made for all languages // Ensure locales are made for all languages
// noinspection JSUnusedLocalSymbols // noinspection JSUnusedLocalSymbols
const helloWorld = gettext('Hello World'); 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()
}
});

35
frontend/src/common/scss/main.scss

@ -40,6 +40,11 @@ h1, h2, h3, h4, h5, h6 {
font-weight: 500; font-weight: 500;
box-shadow: al-shadow(3, 0.5); box-shadow: al-shadow(3, 0.5);
&.with-motd {
padding-bottom: 0;
border-bottom: 0;
}
.dropdown-menu-dark { .dropdown-menu-dark {
background: $al-c-black-pearl; background: $al-c-black-pearl;
border: 0; 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 titles
section h1.al-section-title { section h1.al-section-title {
font-size: 2.6rem; font-size: 2.6rem;

1
frontend/src/modules/page_elevate/main.js

@ -0,0 +1 @@
import './main.scss';

50
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;
}
}
}
}

1
frontend/webpack.config.js

@ -39,6 +39,7 @@ Encore
.addEntry('page_showcase', __dirname + '/src/modules/page_showcase/main.js') .addEntry('page_showcase', __dirname + '/src/modules/page_showcase/main.js')
.addEntry('page_contribute', __dirname + '/src/modules/page_contribute/main.js') .addEntry('page_contribute', __dirname + '/src/modules/page_contribute/main.js')
.addEntry('page_foundation', __dirname + '/src/modules/page_foundation/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()) { if (Encore.isDevServer() || Encore.isDev()) {

249
locale/de/LC_MESSAGES/django.po

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \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" "PO-Revision-Date: 2021-08-12 22:32+0000\n"
"Last-Translator: Conrad <c.one12@outlook.com>\n" "Last-Translator: Conrad <c.one12@outlook.com>\n"
"Language-Team: German <https://hosted.weblate.org/projects/almalinux/website-" "Language-Team: German <https://hosted.weblate.org/projects/almalinux/website-"
@ -19,13 +19,17 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.9-dev\n" "X-Generator: Weblate 4.9-dev\n"
#: commons/templatetags/motd.py:20
msgid "Read more"
msgstr ""
#: www/templates/404.html:4 #: www/templates/404.html:4
msgid "404 Not Found - AlmaLinux OS" msgid "404 Not Found - AlmaLinux OS"
msgstr "404 Nicht gefunden - AlmaLinux OS" msgstr "404 Nicht gefunden - AlmaLinux OS"
#: www/templates/404.html:6 www/templates/blog/index.html:9 #: www/templates/404.html:6 www/templates/blog/index.html:9
#: www/templates/index.html:8 www/templates/layouts/base.html:21 #: www/templates/blog/post.html:9 www/templates/index.html:8
#: www/templates/subscribe_post.html:8 #: www/templates/layouts/base.html:21 www/templates/subscribe_post.html:8
msgid "" msgid ""
"An Open Source, community owned and governed, forever-free enterprise Linux " "An Open Source, community owned and governed, forever-free enterprise Linux "
"distribution." "distribution."
@ -41,11 +45,11 @@ msgstr ""
"Es tut uns leid, aber die Seite die Du versuchst zu öffnen kann nicht " "Es tut uns leid, aber die Seite die Du versuchst zu öffnen kann nicht "
"gefunden werden." "gefunden werden."
#: 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" msgid "Resources"
msgstr "Ressourcen" msgstr "Ressourcen"
#: 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" msgid "Wiki"
msgstr "Wiki" msgstr "Wiki"
@ -61,85 +65,89 @@ msgstr ""
msgid "Downloads" msgid "Downloads"
msgstr "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" msgid "Community"
msgstr "Community" msgstr "Community"
#: www/templates/_partial/footer.html:25 #: www/templates/_partial/footer.html:27
msgid "Forums" msgid "Forums"
msgstr "Foren" msgstr "Foren"
#: www/templates/_partial/footer.html:26 #: www/templates/_partial/footer.html:28
msgid "Chat" msgid "Chat"
msgstr "Chat" msgstr "Chat"
#: www/templates/_partial/footer.html:31 #: www/templates/_partial/footer.html:33
msgid "Legal" msgid "Legal"
msgstr "Legal" msgstr "Legal"
#: www/templates/_partial/footer.html:33 #: www/templates/_partial/footer.html:35
msgid "Legal Notice" msgid "Legal Notice"
msgstr "Rechtlicher Hinweis" msgstr "Rechtlicher Hinweis"
#: 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" msgid "Privacy Policy"
msgstr "Datenschutz-Bestimmungen" msgstr "Datenschutz-Bestimmungen"
#: www/templates/_partial/footer.html:35 #: www/templates/_partial/footer.html:37
msgid "Terms of Service" msgid "Terms of Service"
msgstr "Nutzungsbedingungen" msgstr "Nutzungsbedingungen"
#: www/templates/_partial/footer.html:38 #: www/templates/_partial/footer.html:40
msgid "Licensing Policy" msgid "Licensing Policy"
msgstr "Lizenzbestimmungen" msgstr "Lizenzbestimmungen"
#: www/templates/_partial/footer.html:43 #: www/templates/_partial/footer.html:45
#, fuzzy #, fuzzy
#| msgid " Trademark Usage Policy" #| msgid " Trademark Usage Policy"
msgid "Trademark Usage Policy" msgid "Trademark Usage Policy"
msgstr " Markennutzungsrichtlinie" msgstr " Markennutzungsrichtlinie"
#: www/templates/_partial/footer.html:48 #: www/templates/_partial/footer.html:50
msgid "Foundation Bylaws" msgid "Foundation Bylaws"
msgstr "" msgstr ""
#: www/templates/_partial/navbar.html:7 #: www/templates/_partial/navbar.html:10
msgid "AlmaLinux OS logo" msgid "AlmaLinux OS logo"
msgstr "AlmaLinux OS Logo" msgstr "AlmaLinux OS Logo"
#: www/templates/_partial/navbar.html:16 #: www/templates/_partial/navbar.html:19
msgid "Toggle navigation" msgid "Toggle navigation"
msgstr "Navigation umschalten" msgstr "Navigation umschalten"
#: www/templates/_partial/navbar.html:23 #: www/templates/_partial/navbar.html:26
msgid "Blog" msgid "Blog"
msgstr "Blog" msgstr "Blog"
#: www/templates/_partial/navbar.html:44 #: www/templates/_partial/navbar.html:47
msgid "Migrate from CentOS 8" msgid "Migrate from CentOS 8"
msgstr "Von CentOS 8 migrieren" msgstr "Von CentOS 8 migrieren"
#: www/templates/_partial/navbar.html:49 #: www/templates/_partial/navbar.html:52
msgid "Report Bugs" msgid "Report Bugs"
msgstr "Fehler melden" msgstr "Fehler melden"
#: www/templates/_partial/navbar.html:54 #: www/templates/_partial/navbar.html:70
msgid "Membership"
msgstr ""
#: www/templates/_partial/navbar.html:62
msgid "Shop" msgid "Shop"
msgstr "Shop" msgstr "Shop"
#: www/templates/_partial/navbar.html:70 #: www/templates/_partial/navbar.html:78
msgid "Language" msgid "Language"
msgstr "Sprache" msgstr "Sprache"
#: www/templates/_partial/navbar.html:91 #: www/templates/_partial/navbar.html:102
msgid "Translate" msgid "Translate"
msgstr "" 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" msgid "Download"
msgstr "Download" msgstr "Download"
@ -218,6 +226,191 @@ msgstr "Website"
msgid "Join AlmaLinux OS community chat" msgid "Join AlmaLinux OS community chat"
msgstr "AlmaLinux OS-Community-Chat beitreten" msgstr "AlmaLinux OS-Community-Chat beitreten"
#: www/templates/elevate/index.html:6
#, fuzzy
#| msgid "AlmaLinux OS - Contribute"
msgid "AlmaLinux OS - ELevate Your Distribution"
msgstr "AlmaLinux OS - Unterstützen"
#: 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&reg; 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 <a href=\"%(pes_link)s\">Package "
"Evolution Service</a> (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 <a href=\"%(chat_link)s\">#migration</a> Mattermost "
"channel. You can find the tool code here: <a href=\"%(github_link)s\">"
"%(github_link)s</a> and you can add/edit/interact with package metadata at "
"<a href=\"%(pes_link)s\">%(pes_link)s</a>."
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: <ul> <li>AlmaLinux OS 8</li> <li>CentOS Stream 8</li> "
"<li>Oracle Linux 8</li> <li>Rocky Linux 8</li> </ul>"
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:6
#: www/templates/foundation/members/index.html:7 #: www/templates/foundation/members/index.html:7
#, fuzzy #, fuzzy

2
locale/de/LC_MESSAGES/djangojs.po

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \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" "PO-Revision-Date: 2021-08-12 22:32+0000\n"
"Last-Translator: Free Soft Warrior <freesoftwarrior@protonmail.com>\n" "Last-Translator: Free Soft Warrior <freesoftwarrior@protonmail.com>\n"
"Language-Team: German <https://hosted.weblate.org/projects/almalinux/website-" "Language-Team: German <https://hosted.weblate.org/projects/almalinux/website-"

249
locale/es/LC_MESSAGES/django.po

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \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-09 03:33+0000\n" "PO-Revision-Date: 2021-09-09 03:33+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fitojb@ubuntu.com>\n" "Last-Translator: Adolfo Jayme Barrientos <fitojb@ubuntu.com>\n"
"Language-Team: Spanish <https://hosted.weblate.org/projects/almalinux/" "Language-Team: Spanish <https://hosted.weblate.org/projects/almalinux/"
@ -19,13 +19,17 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.8.1-dev\n" "X-Generator: Weblate 4.8.1-dev\n"
#: commons/templatetags/motd.py:20
msgid "Read more"
msgstr ""
#: www/templates/404.html:4 #: www/templates/404.html:4
msgid "404 Not Found - AlmaLinux OS" msgid "404 Not Found - AlmaLinux OS"
msgstr "404: no encontrado • AlmaLinux OS" msgstr "404: no encontrado • AlmaLinux OS"
#: www/templates/404.html:6 www/templates/blog/index.html:9 #: www/templates/404.html:6 www/templates/blog/index.html:9
#: www/templates/index.html:8 www/templates/layouts/base.html:21 #: www/templates/blog/post.html:9 www/templates/index.html:8
#: www/templates/subscribe_post.html:8 #: www/templates/layouts/base.html:21 www/templates/subscribe_post.html:8
msgid "" msgid ""
"An Open Source, community owned and governed, forever-free enterprise Linux " "An Open Source, community owned and governed, forever-free enterprise Linux "
"distribution." "distribution."
@ -40,11 +44,11 @@ msgid "Sorry, but the page you were trying to access could not be found."
msgstr "" msgstr ""
"Lo sentimos, pero no se pudo encontrar la página a la que intentaba acceder." "Lo sentimos, pero no se pudo encontrar la página a la que intentaba acceder."
#: 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" msgid "Resources"
msgstr "Recursos" 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" msgid "Wiki"
msgstr "Wiki" msgstr "Wiki"
@ -60,85 +64,89 @@ msgstr "Repositorio"
msgid "Downloads" msgid "Downloads"
msgstr "Descargas" msgstr "Descargas"
#: 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" msgid "Community"
msgstr "Comunidad" msgstr "Comunidad"
#: www/templates/_partial/footer.html:25 #: www/templates/_partial/footer.html:27
msgid "Forums" msgid "Forums"
msgstr "Foros" msgstr "Foros"
#: www/templates/_partial/footer.html:26 #: www/templates/_partial/footer.html:28
msgid "Chat" msgid "Chat"
msgstr "Chat" msgstr "Chat"
#: www/templates/_partial/footer.html:31 #: www/templates/_partial/footer.html:33
msgid "Legal" msgid "Legal"
msgstr "Legal" msgstr "Legal"
#: www/templates/_partial/footer.html:33 #: www/templates/_partial/footer.html:35
msgid "Legal Notice" msgid "Legal Notice"
msgstr "Aviso legal" 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" msgid "Privacy Policy"
msgstr "Normativa de privacidad" msgstr "Normativa de privacidad"
#: www/templates/_partial/footer.html:35 #: www/templates/_partial/footer.html:37
msgid "Terms of Service" msgid "Terms of Service"
msgstr "Términos del servicio" msgstr "Términos del servicio"
#: www/templates/_partial/footer.html:38 #: www/templates/_partial/footer.html:40
msgid "Licensing Policy" msgid "Licensing Policy"
msgstr "Normativa de licencias" msgstr "Normativa de licencias"
#: www/templates/_partial/footer.html:43 #: www/templates/_partial/footer.html:45
#, fuzzy #, fuzzy
#| msgid " Trademark Usage Policy" #| msgid " Trademark Usage Policy"
msgid "Trademark Usage Policy" msgid "Trademark Usage Policy"
msgstr " Normativa de uso de marcas comerciales" msgstr " Normativa de uso de marcas comerciales"
#: www/templates/_partial/footer.html:48 #: www/templates/_partial/footer.html:50
msgid "Foundation Bylaws" msgid "Foundation Bylaws"
msgstr "" msgstr ""
#: www/templates/_partial/navbar.html:7 #: www/templates/_partial/navbar.html:10
msgid "AlmaLinux OS logo" msgid "AlmaLinux OS logo"
msgstr "Logotipo de AlmaLinux OS" msgstr "Logotipo de AlmaLinux OS"
#: www/templates/_partial/navbar.html:16 #: www/templates/_partial/navbar.html:19
msgid "Toggle navigation" msgid "Toggle navigation"
msgstr "Alternar la navegación" msgstr "Alternar la navegación"
#: www/templates/_partial/navbar.html:23 #: www/templates/_partial/navbar.html:26
msgid "Blog" msgid "Blog"
msgstr "Blog" msgstr "Blog"
#: www/templates/_partial/navbar.html:44 #: www/templates/_partial/navbar.html:47
msgid "Migrate from CentOS 8" msgid "Migrate from CentOS 8"
msgstr "Migrar desde CentOS 8" msgstr "Migrar desde CentOS 8"
#: www/templates/_partial/navbar.html:49 #: www/templates/_partial/navbar.html:52
msgid "Report Bugs" msgid "Report Bugs"
msgstr "Informar de defectos" msgstr "Informar de defectos"
#: www/templates/_partial/navbar.html:54 #: www/templates/_partial/navbar.html:70
msgid "Membership"
msgstr ""
#: www/templates/_partial/navbar.html:62
msgid "Shop" msgid "Shop"
msgstr "Tienda" msgstr "Tienda"
#: www/templates/_partial/navbar.html:70 #: www/templates/_partial/navbar.html:78
msgid "Language" msgid "Language"
msgstr "Idioma" msgstr "Idioma"
#: www/templates/_partial/navbar.html:91 #: www/templates/_partial/navbar.html:102
msgid "Translate" msgid "Translate"
msgstr "" 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" msgid "Download"
msgstr "Descargar" msgstr "Descargar"
@ -217,6 +225,191 @@ msgstr "Presencia en la Red"
msgid "Join AlmaLinux OS community chat" msgid "Join AlmaLinux OS community chat"
msgstr "Únase a la charla comunitaria de AlmaLinux OS" msgstr "Únase a la charla comunitaria de AlmaLinux OS"
#: www/templates/elevate/index.html:6
#, fuzzy
#| msgid "AlmaLinux OS - Contribute"
msgid "AlmaLinux OS - ELevate Your Distribution"
msgstr "AlmaLinux OS • Contribuir"
#: 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&reg; 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 <a href=\"%(pes_link)s\">Package "
"Evolution Service</a> (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 <a href=\"%(chat_link)s\">#migration</a> Mattermost "
"channel. You can find the tool code here: <a href=\"%(github_link)s\">"
"%(github_link)s</a> and you can add/edit/interact with package metadata at "
"<a href=\"%(pes_link)s\">%(pes_link)s</a>."
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: <ul> <li>AlmaLinux OS 8</li> <li>CentOS Stream 8</li> "
"<li>Oracle Linux 8</li> <li>Rocky Linux 8</li> </ul>"
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:6
#: www/templates/foundation/members/index.html:7 #: www/templates/foundation/members/index.html:7
#, fuzzy #, fuzzy

2
locale/es/LC_MESSAGES/djangojs.po

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \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" "PO-Revision-Date: 2021-08-31 05:32+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fitojb@ubuntu.com>\n" "Last-Translator: Adolfo Jayme Barrientos <fitojb@ubuntu.com>\n"
"Language-Team: Spanish <https://hosted.weblate.org/projects/almalinux/" "Language-Team: Spanish <https://hosted.weblate.org/projects/almalinux/"

249
locale/fr/LC_MESSAGES/django.po

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \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-27 07:34+0000\n" "PO-Revision-Date: 2021-08-27 07:34+0000\n"
"Last-Translator: Nathan <bonnemainsnathan@gmail.com>\n" "Last-Translator: Nathan <bonnemainsnathan@gmail.com>\n"
"Language-Team: French <https://hosted.weblate.org/projects/almalinux/website-" "Language-Team: French <https://hosted.weblate.org/projects/almalinux/website-"
@ -19,13 +19,17 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n" "Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.8.1-dev\n" "X-Generator: Weblate 4.8.1-dev\n"
#: commons/templatetags/motd.py:20
msgid "Read more"
msgstr ""
#: www/templates/404.html:4 #: www/templates/404.html:4
msgid "404 Not Found - AlmaLinux OS" msgid "404 Not Found - AlmaLinux OS"
msgstr "404 Page non trouvée - AlmaLinux OS" msgstr "404 Page non trouvée - AlmaLinux OS"
#: www/templates/404.html:6 www/templates/blog/index.html:9 #: www/templates/404.html:6 www/templates/blog/index.html:9
#: www/templates/index.html:8 www/templates/layouts/base.html:21 #: www/templates/blog/post.html:9 www/templates/index.html:8
#: www/templates/subscribe_post.html:8 #: www/templates/layouts/base.html:21 www/templates/subscribe_post.html:8
msgid "" msgid ""
"An Open Source, community owned and governed, forever-free enterprise Linux " "An Open Source, community owned and governed, forever-free enterprise Linux "
"distribution." "distribution."
@ -40,11 +44,11 @@ msgid "Sorry, but the page you were trying to access could not be found."
msgstr "" msgstr ""
"Désolé, mais la page à laquelle vous tentez d'accéder n'a pas été trouvée." "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" msgid "Resources"
msgstr "Ressources" 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" msgid "Wiki"
msgstr "Wiki" msgstr "Wiki"
@ -60,85 +64,89 @@ msgstr "Dépôt"
msgid "Downloads" msgid "Downloads"
msgstr "Téléchargements" 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" msgid "Community"
msgstr "Communauté" msgstr "Communauté"
#: www/templates/_partial/footer.html:25 #: www/templates/_partial/footer.html:27
msgid "Forums" msgid "Forums"
msgstr "Forums" msgstr "Forums"
#: www/templates/_partial/footer.html:26 #: www/templates/_partial/footer.html:28
msgid "Chat" msgid "Chat"
msgstr "Tchat" msgstr "Tchat"
#: www/templates/_partial/footer.html:31 #: www/templates/_partial/footer.html:33
msgid "Legal" msgid "Legal"
msgstr "Mentions légales" msgstr "Mentions légales"
#: www/templates/_partial/footer.html:33 #: www/templates/_partial/footer.html:35
msgid "Legal Notice" msgid "Legal Notice"
msgstr "Mentions légales" 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" msgid "Privacy Policy"
msgstr "Politique de confidentialité" msgstr "Politique de confidentialité"
#: www/templates/_partial/footer.html:35 #: www/templates/_partial/footer.html:37
msgid "Terms of Service" msgid "Terms of Service"
msgstr "Conditions d'utilisation" msgstr "Conditions d'utilisation"
#: www/templates/_partial/footer.html:38 #: www/templates/_partial/footer.html:40
msgid "Licensing Policy" msgid "Licensing Policy"
msgstr "Politique de license" msgstr "Politique de license"
#: www/templates/_partial/footer.html:43 #: www/templates/_partial/footer.html:45
#, fuzzy #, fuzzy
#| msgid " Trademark Usage Policy" #| msgid " Trademark Usage Policy"
msgid "Trademark Usage Policy" msgid "Trademark Usage Policy"
msgstr " Politique d'utilisation des marques" msgstr " Politique d'utilisation des marques"
#: www/templates/_partial/footer.html:48 #: www/templates/_partial/footer.html:50
msgid "Foundation Bylaws" msgid "Foundation Bylaws"
msgstr "" msgstr ""
#: www/templates/_partial/navbar.html:7 #: www/templates/_partial/navbar.html:10
msgid "AlmaLinux OS logo" msgid "AlmaLinux OS logo"
msgstr "Logo du SE AlmaLinux" msgstr "Logo du SE AlmaLinux"
#: www/templates/_partial/navbar.html:16 #: www/templates/_partial/navbar.html:19
msgid "Toggle navigation" msgid "Toggle navigation"
msgstr "Basculer la navigation" msgstr "Basculer la navigation"
#: www/templates/_partial/navbar.html:23 #: www/templates/_partial/navbar.html:26
msgid "Blog" msgid "Blog"
msgstr "Blog" msgstr "Blog"
#: www/templates/_partial/navbar.html:44 #: www/templates/_partial/navbar.html:47
msgid "Migrate from CentOS 8" msgid "Migrate from CentOS 8"
msgstr "Migrer depuis CentOS 8" msgstr "Migrer depuis CentOS 8"
#: www/templates/_partial/navbar.html:49 #: www/templates/_partial/navbar.html:52
msgid "Report Bugs" msgid "Report Bugs"
msgstr "Signaler des bugs" msgstr "Signaler des bugs"
#: www/templates/_partial/navbar.html:54 #: www/templates/_partial/navbar.html:70
msgid "Membership"
msgstr ""
#: www/templates/_partial/navbar.html:62
msgid "Shop" msgid "Shop"
msgstr "Boutique" msgstr "Boutique"
#: www/templates/_partial/navbar.html:70 #: www/templates/_partial/navbar.html:78
msgid "Language" msgid "Language"
msgstr "Langue" msgstr "Langue"
#: www/templates/_partial/navbar.html:91 #: www/templates/_partial/navbar.html:102
msgid "Translate" msgid "Translate"
msgstr "Traduire" 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" msgid "Download"
msgstr "Télécharger" msgstr "Télécharger"
@ -218,6 +226,191 @@ msgstr "Présence Web"
msgid "Join AlmaLinux OS community chat" msgid "Join AlmaLinux OS community chat"
msgstr "Rejoindre le tchat communautaire d'AlmaLinux OS" 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&reg; 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 <a href=\"%(pes_link)s\">Package "
"Evolution Service</a> (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 <a href=\"%(chat_link)s\">#migration</a> Mattermost "
"channel. You can find the tool code here: <a href=\"%(github_link)s\">"
"%(github_link)s</a> and you can add/edit/interact with package metadata at "
"<a href=\"%(pes_link)s\">%(pes_link)s</a>."
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: <ul> <li>AlmaLinux OS 8</li> <li>CentOS Stream 8</li> "
"<li>Oracle Linux 8</li> <li>Rocky Linux 8</li> </ul>"
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:6
#: www/templates/foundation/members/index.html:7 #: www/templates/foundation/members/index.html:7
#, fuzzy #, fuzzy

2
locale/fr/LC_MESSAGES/djangojs.po

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \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" "PO-Revision-Date: 2021-08-11 16:32+0000\n"
"Last-Translator: Wivik <seb+weblate@zedas.fr>\n" "Last-Translator: Wivik <seb+weblate@zedas.fr>\n"
"Language-Team: French <https://hosted.weblate.org/projects/almalinux/website-" "Language-Team: French <https://hosted.weblate.org/projects/almalinux/website-"

249
locale/he/LC_MESSAGES/django.po

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \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" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -19,13 +19,17 @@ msgstr ""
"n % 10 == 0) ? 2 : 3));\n" "n % 10 == 0) ? 2 : 3));\n"
"X-Generator: Weblate 4.9-dev\n" "X-Generator: Weblate 4.9-dev\n"
#: commons/templatetags/motd.py:20
msgid "Read more"
msgstr ""
#: www/templates/404.html:4 #: www/templates/404.html:4
msgid "404 Not Found - AlmaLinux OS" msgid "404 Not Found - AlmaLinux OS"
msgstr "404 לא נמצא - AlmaLinux OS" msgstr "404 לא נמצא - AlmaLinux OS"
#: www/templates/404.html:6 www/templates/blog/index.html:9 #: www/templates/404.html:6 www/templates/blog/index.html:9
#: www/templates/index.html:8 www/templates/layouts/base.html:21 #: www/templates/blog/post.html:9 www/templates/index.html:8
#: www/templates/subscribe_post.html:8 #: www/templates/layouts/base.html:21 www/templates/subscribe_post.html:8
msgid "" msgid ""
"An Open Source, community owned and governed, forever-free enterprise Linux " "An Open Source, community owned and governed, forever-free enterprise Linux "
"distribution." "distribution."
@ -39,11 +43,11 @@ msgstr "404 לא נמצא"
msgid "Sorry, but the page you were trying to access could not be found." msgid "Sorry, but the page you were trying to access could not be found."
msgstr "מחילה אך הדף אליו ניסית לגשת לא נמצא." 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" msgid "Resources"
msgstr "משאבים" 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" msgid "Wiki"
msgstr "ויקי" msgstr "ויקי"
@ -59,83 +63,87 @@ msgstr "מאגר"
msgid "Downloads" msgid "Downloads"
msgstr "הורדות" 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" msgid "Community"
msgstr "קהילה" msgstr "קהילה"
#: www/templates/_partial/footer.html:25 #: www/templates/_partial/footer.html:27
msgid "Forums" msgid "Forums"
msgstr "פורומים" msgstr "פורומים"
#: www/templates/_partial/footer.html:26 #: www/templates/_partial/footer.html:28
msgid "Chat" msgid "Chat"
msgstr "צ׳אט" msgstr "צ׳אט"
#: www/templates/_partial/footer.html:31 #: www/templates/_partial/footer.html:33
msgid "Legal" msgid "Legal"
msgstr "משפטי" msgstr "משפטי"
#: www/templates/_partial/footer.html:33 #: www/templates/_partial/footer.html:35
msgid "Legal Notice" msgid "Legal Notice"
msgstr "הצהרה משפטית" 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" msgid "Privacy Policy"
msgstr "מדיניות פרטיות" msgstr "מדיניות פרטיות"
#: www/templates/_partial/footer.html:35 #: www/templates/_partial/footer.html:37
msgid "Terms of Service" msgid "Terms of Service"
msgstr "תנאי השירות" msgstr "תנאי השירות"
#: www/templates/_partial/footer.html:38 #: www/templates/_partial/footer.html:40
msgid "Licensing Policy" msgid "Licensing Policy"
msgstr "מדיניות הרישוי" msgstr "מדיניות הרישוי"
#: www/templates/_partial/footer.html:43 #: www/templates/_partial/footer.html:45
msgid "Trademark Usage Policy" msgid "Trademark Usage Policy"
msgstr "" msgstr ""
#: www/templates/_partial/footer.html:48 #: www/templates/_partial/footer.html:50
msgid "Foundation Bylaws" msgid "Foundation Bylaws"
msgstr "" msgstr ""
#: www/templates/_partial/navbar.html:7 #: www/templates/_partial/navbar.html:10
msgid "AlmaLinux OS logo" msgid "AlmaLinux OS logo"
msgstr "הלוגו של AlmaLinux OS" msgstr "הלוגו של AlmaLinux OS"
#: www/templates/_partial/navbar.html:16 #: www/templates/_partial/navbar.html:19
msgid "Toggle navigation" msgid "Toggle navigation"
msgstr "החלפת מצב ניווט" msgstr "החלפת מצב ניווט"
#: www/templates/_partial/navbar.html:23 #: www/templates/_partial/navbar.html:26
msgid "Blog" msgid "Blog"
msgstr "בלוג" msgstr "בלוג"
#: www/templates/_partial/navbar.html:44 #: www/templates/_partial/navbar.html:47
msgid "Migrate from CentOS 8" msgid "Migrate from CentOS 8"
msgstr "הגירה מ־CentOS 8" msgstr "הגירה מ־CentOS 8"
#: www/templates/_partial/navbar.html:49 #: www/templates/_partial/navbar.html:52
msgid "Report Bugs" msgid "Report Bugs"
msgstr "דיווח על תקלות" msgstr "דיווח על תקלות"
#: www/templates/_partial/navbar.html:54 #: www/templates/_partial/navbar.html:70
msgid "Membership"
msgstr ""
#: www/templates/_partial/navbar.html:62
msgid "Shop" msgid "Shop"
msgstr "חנות" msgstr "חנות"
#: www/templates/_partial/navbar.html:70 #: www/templates/_partial/navbar.html:78
msgid "Language" msgid "Language"
msgstr "שפה" msgstr "שפה"
#: www/templates/_partial/navbar.html:91 #: www/templates/_partial/navbar.html:102
msgid "Translate" msgid "Translate"
msgstr "תרגום" 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" msgid "Download"
msgstr "הורדות" msgstr "הורדות"
@ -213,6 +221,191 @@ msgstr "נוכחות ברשת"
msgid "Join AlmaLinux OS community chat" msgid "Join AlmaLinux OS community chat"
msgstr "הצטרפות לצ׳אט הקהילתי של AlmaLinux OS" 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&reg; 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 <a href=\"%(pes_link)s\">Package "
"Evolution Service</a> (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 <a href=\"%(chat_link)s\">#migration</a> Mattermost "
"channel. You can find the tool code here: <a href=\"%(github_link)s\">"
"%(github_link)s</a> and you can add/edit/interact with package metadata at "
"<a href=\"%(pes_link)s\">%(pes_link)s</a>."
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: <ul> <li>AlmaLinux OS 8</li> <li>CentOS Stream 8</li> "
"<li>Oracle Linux 8</li> <li>Rocky Linux 8</li> </ul>"
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:6
#: www/templates/foundation/members/index.html:7 #: www/templates/foundation/members/index.html:7
msgid "AlmaLinux OS Foundation - membership" msgid "AlmaLinux OS Foundation - membership"

2
locale/he/LC_MESSAGES/djangojs.po

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \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" "PO-Revision-Date: 2021-06-03 19:34+0000\n"
"Last-Translator: Jack Aboutboul <jack@jackfoundation.com>\n" "Last-Translator: Jack Aboutboul <jack@jackfoundation.com>\n"
"Language-Team: Hebrew <https://hosted.weblate.org/projects/almalinux/website-" "Language-Team: Hebrew <https://hosted.weblate.org/projects/almalinux/website-"

249
locale/it/LC_MESSAGES/django.po

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \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" "PO-Revision-Date: 2021-07-29 08:43+0000\n"
"Last-Translator: gz83 <uioptt24@gmail.com>\n" "Last-Translator: gz83 <uioptt24@gmail.com>\n"
"Language-Team: Italian <https://hosted.weblate.org/projects/almalinux/" "Language-Team: Italian <https://hosted.weblate.org/projects/almalinux/"
@ -19,13 +19,17 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.7.2-dev\n" "X-Generator: Weblate 4.7.2-dev\n"
#: commons/templatetags/motd.py:20
msgid "Read more"
msgstr ""
#: www/templates/404.html:4 #: www/templates/404.html:4
msgid "404 Not Found - AlmaLinux OS" msgid "404 Not Found - AlmaLinux OS"
msgstr "404 Non Trovato - AlmaLinuxOS" msgstr "404 Non Trovato - AlmaLinuxOS"
#: www/templates/404.html:6 www/templates/blog/index.html:9 #: www/templates/404.html:6 www/templates/blog/index.html:9
#: www/templates/index.html:8 www/templates/layouts/base.html:21 #: www/templates/blog/post.html:9 www/templates/index.html:8
#: www/templates/subscribe_post.html:8 #: www/templates/layouts/base.html:21 www/templates/subscribe_post.html:8
msgid "" msgid ""
"An Open Source, community owned and governed, forever-free enterprise Linux " "An Open Source, community owned and governed, forever-free enterprise Linux "
"distribution." "distribution."
@ -41,11 +45,11 @@ msgstr ""
"Ci dispiace, ma la pagina a cui stavi cercando di accedere non è stata " "Ci dispiace, ma la pagina a cui stavi cercando di accedere non è stata "
"trovata." "trovata."
#: 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" msgid "Resources"
msgstr "Risorse" msgstr "Risorse"
#: 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" msgid "Wiki"
msgstr "wiki" msgstr "wiki"
@ -61,85 +65,89 @@ msgstr "repository"
msgid "Downloads" msgid "Downloads"
msgstr "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" msgid "Community"
msgstr "community" msgstr "community"
#: www/templates/_partial/footer.html:25 #: www/templates/_partial/footer.html:27
msgid "Forums" msgid "Forums"
msgstr "Forum" msgstr "Forum"
#: www/templates/_partial/footer.html:26 #: www/templates/_partial/footer.html:28
msgid "Chat" msgid "Chat"
msgstr "Chat" msgstr "Chat"
#: www/templates/_partial/footer.html:31 #: www/templates/_partial/footer.html:33
msgid "Legal" msgid "Legal"
msgstr "Note Legali" msgstr "Note Legali"
#: www/templates/_partial/footer.html:33 #: www/templates/_partial/footer.html:35
msgid "Legal Notice" msgid "Legal Notice"
msgstr "Avviso legale" msgstr "Avviso legale"
#: 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" msgid "Privacy Policy"
msgstr "Policy sulla Privacy" msgstr "Policy sulla Privacy"
#: www/templates/_partial/footer.html:35 #: www/templates/_partial/footer.html:37
msgid "Terms of Service" msgid "Terms of Service"
msgstr "Termini e condizioni" msgstr "Termini e condizioni"
#: www/templates/_partial/footer.html:38 #: www/templates/_partial/footer.html:40
msgid "Licensing Policy" msgid "Licensing Policy"
msgstr "Politica di licenza" msgstr "Politica di licenza"
#: www/templates/_partial/footer.html:43 #: www/templates/_partial/footer.html:45
#, fuzzy #, fuzzy
#| msgid " Trademark Usage Policy" #| msgid " Trademark Usage Policy"
msgid "Trademark Usage Policy" msgid "Trademark Usage Policy"
msgstr " Politica di utilizzo del marchio" msgstr " Politica di utilizzo del marchio"
#: www/templates/_partial/footer.html:48 #: www/templates/_partial/footer.html:50
msgid "Foundation Bylaws" msgid "Foundation Bylaws"
msgstr "" msgstr ""
#: www/templates/_partial/navbar.html:7 #: www/templates/_partial/navbar.html:10
msgid "AlmaLinux OS logo" msgid "AlmaLinux OS logo"
msgstr "Logo di AlmaLinuxOS" msgstr "Logo di AlmaLinuxOS"
#: www/templates/_partial/navbar.html:16 #: www/templates/_partial/navbar.html:19
msgid "Toggle navigation" msgid "Toggle navigation"
msgstr "Attiva/disattiva navigazione" msgstr "Attiva/disattiva navigazione"
#: www/templates/_partial/navbar.html:23 #: www/templates/_partial/navbar.html:26
msgid "Blog" msgid "Blog"
msgstr "Blog" msgstr "Blog"
#: www/templates/_partial/navbar.html:44 #: www/templates/_partial/navbar.html:47
msgid "Migrate from CentOS 8" msgid "Migrate from CentOS 8"
msgstr "Trasferisci da CentOS 8" msgstr "Trasferisci da CentOS 8"
#: www/templates/_partial/navbar.html:49 #: www/templates/_partial/navbar.html:52
msgid "Report Bugs" msgid "Report Bugs"
msgstr "Segnala dei Bug" msgstr "Segnala dei Bug"
#: www/templates/_partial/navbar.html:54 #: www/templates/_partial/navbar.html:70
msgid "Membership"
msgstr ""
#: www/templates/_partial/navbar.html:62
msgid "Shop" msgid "Shop"
msgstr "Negozio" msgstr "Negozio"
#: www/templates/_partial/navbar.html:70 #: www/templates/_partial/navbar.html:78
msgid "Language" msgid "Language"
msgstr "Lingua" msgstr "Lingua"
#: www/templates/_partial/navbar.html:91 #: www/templates/_partial/navbar.html:102
msgid "Translate" msgid "Translate"
msgstr "" 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" msgid "Download"
msgstr "Scarica" msgstr "Scarica"
@ -219,6 +227,191 @@ msgstr "Presenza sul Web"
msgid "Join AlmaLinux OS community chat" msgid "Join AlmaLinux OS community chat"
msgstr "Entra nella chat della community di AlmaLinuxOS" msgstr "Entra nella chat della community di AlmaLinuxOS"
#: www/templates/elevate/index.html:6
#, fuzzy
#| msgid "AlmaLinux OS - Contribute"
msgid "AlmaLinux OS - ELevate Your Distribution"
msgstr "AlmaLinuxOS - Contribuisci"
#: 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&reg; 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 <a href=\"%(pes_link)s\">Package "
"Evolution Service</a> (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 <a href=\"%(chat_link)s\">#migration</a> Mattermost "
"channel. You can find the tool code here: <a href=\"%(github_link)s\">"
"%(github_link)s</a> and you can add/edit/interact with package metadata at "
"<a href=\"%(pes_link)s\">%(pes_link)s</a>."
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: <ul> <li>AlmaLinux OS 8</li> <li>CentOS Stream 8</li> "
"<li>Oracle Linux 8</li> <li>Rocky Linux 8</li> </ul>"
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:6
#: www/templates/foundation/members/index.html:7 #: www/templates/foundation/members/index.html:7
#, fuzzy #, fuzzy

2
locale/it/LC_MESSAGES/djangojs.po

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \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" "PO-Revision-Date: 2021-06-09 12:34+0000\n"
"Last-Translator: Giacomo <gradaellig@gmail.com>\n" "Last-Translator: Giacomo <gradaellig@gmail.com>\n"
"Language-Team: Italian <https://hosted.weblate.org/projects/almalinux/" "Language-Team: Italian <https://hosted.weblate.org/projects/almalinux/"

249
locale/ja/LC_MESSAGES/django.po

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \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-02 06:32+0000\n" "PO-Revision-Date: 2021-09-02 06:32+0000\n"
"Last-Translator: Srijan <srijanchtrvd18@gmail.com>\n" "Last-Translator: Srijan <srijanchtrvd18@gmail.com>\n"
"Language-Team: Japanese <https://hosted.weblate.org/projects/almalinux/" "Language-Team: Japanese <https://hosted.weblate.org/projects/almalinux/"
@ -19,13 +19,17 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.8.1-dev\n" "X-Generator: Weblate 4.8.1-dev\n"
#: commons/templatetags/motd.py:20
msgid "Read more"
msgstr ""
#: www/templates/404.html:4 #: www/templates/404.html:4
msgid "404 Not Found - AlmaLinux OS" msgid "404 Not Found - AlmaLinux OS"
msgstr "404が見つかりません-AlmaLinuxOS" msgstr "404が見つかりません-AlmaLinuxOS"
#: www/templates/404.html:6 www/templates/blog/index.html:9 #: www/templates/404.html:6 www/templates/blog/index.html:9
#: www/templates/index.html:8 www/templates/layouts/base.html:21 #: www/templates/blog/post.html:9 www/templates/index.html:8
#: www/templates/subscribe_post.html:8 #: www/templates/layouts/base.html:21 www/templates/subscribe_post.html:8
msgid "" msgid ""
"An Open Source, community owned and governed, forever-free enterprise Linux " "An Open Source, community owned and governed, forever-free enterprise Linux "
"distribution." "distribution."
@ -39,11 +43,11 @@ msgstr "404お探しのページが見つかりませんでした"
msgid "Sorry, but the page you were trying to access could not be found." msgid "Sorry, but the page you were trying to access could not be found."
msgstr "申し訳ありませんが、アクセスしようとしたページが見つかりませんでした。" 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" msgid "Resources"
msgstr "資力" 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" msgid "Wiki"
msgstr "ウィキ" msgstr "ウィキ"
@ -59,85 +63,89 @@ msgstr "リポジトリ"
msgid "Downloads" msgid "Downloads"
msgstr "ダウンロード" 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" msgid "Community"
msgstr "コミュニティ" msgstr "コミュニティ"
#: www/templates/_partial/footer.html:25 #: www/templates/_partial/footer.html:27
msgid "Forums" msgid "Forums"
msgstr "フォーラム" msgstr "フォーラム"
#: www/templates/_partial/footer.html:26 #: www/templates/_partial/footer.html:28
msgid "Chat" msgid "Chat"
msgstr "チャット" msgstr "チャット"
#: www/templates/_partial/footer.html:31 #: www/templates/_partial/footer.html:33
msgid "Legal" msgid "Legal"
msgstr "リーガル" msgstr "リーガル"
#: www/templates/_partial/footer.html:33 #: www/templates/_partial/footer.html:35
msgid "Legal Notice" msgid "Legal Notice"
msgstr "法律のお知らせ" 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" msgid "Privacy Policy"
msgstr "プライバシーポリシー" msgstr "プライバシーポリシー"
#: www/templates/_partial/footer.html:35 #: www/templates/_partial/footer.html:37
msgid "Terms of Service" msgid "Terms of Service"
msgstr "利用規約" msgstr "利用規約"
#: www/templates/_partial/footer.html:38 #: www/templates/_partial/footer.html:40
msgid "Licensing Policy" msgid "Licensing Policy"
msgstr "ライセンスポリシー" msgstr "ライセンスポリシー"
#: www/templates/_partial/footer.html:43 #: www/templates/_partial/footer.html:45
#, fuzzy #, fuzzy
#| msgid " Trademark Usage Policy" #| msgid " Trademark Usage Policy"
msgid "Trademark Usage Policy" msgid "Trademark Usage Policy"
msgstr " 商標使用ポリシー" msgstr " 商標使用ポリシー"
#: www/templates/_partial/footer.html:48 #: www/templates/_partial/footer.html:50
msgid "Foundation Bylaws" msgid "Foundation Bylaws"
msgstr "" msgstr ""
#: www/templates/_partial/navbar.html:7 #: www/templates/_partial/navbar.html:10
msgid "AlmaLinux OS logo" msgid "AlmaLinux OS logo"
msgstr "AlmaLinux OS ロゴ" msgstr "AlmaLinux OS ロゴ"
#: www/templates/_partial/navbar.html:16 #: www/templates/_partial/navbar.html:19
msgid "Toggle navigation" msgid "Toggle navigation"
msgstr "ナビゲーションの切り替え" msgstr "ナビゲーションの切り替え"
#: www/templates/_partial/navbar.html:23 #: www/templates/_partial/navbar.html:26
msgid "Blog" msgid "Blog"
msgstr "ブログ" msgstr "ブログ"
#: www/templates/_partial/navbar.html:44 #: www/templates/_partial/navbar.html:47
msgid "Migrate from CentOS 8" msgid "Migrate from CentOS 8"
msgstr "CentOS 8から移行する" msgstr "CentOS 8から移行する"
#: www/templates/_partial/navbar.html:49 #: www/templates/_partial/navbar.html:52
msgid "Report Bugs" msgid "Report Bugs"
msgstr "バグを報告する" msgstr "バグを報告する"
#: www/templates/_partial/navbar.html:54 #: www/templates/_partial/navbar.html:70
msgid "Membership"
msgstr ""
#: www/templates/_partial/navbar.html:62
msgid "Shop" msgid "Shop"
msgstr "ショップ" msgstr "ショップ"
#: www/templates/_partial/navbar.html:70 #: www/templates/_partial/navbar.html:78
msgid "Language" msgid "Language"
msgstr "言語" msgstr "言語"
#: www/templates/_partial/navbar.html:91 #: www/templates/_partial/navbar.html:102
msgid "Translate" msgid "Translate"
msgstr "訳する" 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" msgid "Download"
msgstr "ダウンロード" msgstr "ダウンロード"
@ -216,6 +224,191 @@ msgstr "Webプレゼンス"
msgid "Join AlmaLinux OS community chat" msgid "Join AlmaLinux OS community chat"
msgstr "AlmaLinux OSコミュニティチャットに参加する" 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&reg; 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 <a href=\"%(pes_link)s\">Package "
"Evolution Service</a> (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 <a href=\"%(chat_link)s\">#migration</a> Mattermost "
"channel. You can find the tool code here: <a href=\"%(github_link)s\">"
"%(github_link)s</a> and you can add/edit/interact with package metadata at "
"<a href=\"%(pes_link)s\">%(pes_link)s</a>."
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: <ul> <li>AlmaLinux OS 8</li> <li>CentOS Stream 8</li> "
"<li>Oracle Linux 8</li> <li>Rocky Linux 8</li> </ul>"
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:6
#: www/templates/foundation/members/index.html:7 #: www/templates/foundation/members/index.html:7
#, fuzzy #, fuzzy

2
locale/ja/LC_MESSAGES/djangojs.po

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \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" "PO-Revision-Date: 2021-08-01 04:32+0000\n"
"Last-Translator: gz83 <uioptt24@gmail.com>\n" "Last-Translator: gz83 <uioptt24@gmail.com>\n"
"Language-Team: Japanese <https://hosted.weblate.org/projects/almalinux/" "Language-Team: Japanese <https://hosted.weblate.org/projects/almalinux/"

249
locale/lv/LC_MESSAGES/django.po

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \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" "PO-Revision-Date: 2021-07-29 08:43+0000\n"
"Last-Translator: gz83 <uioptt24@gmail.com>\n" "Last-Translator: gz83 <uioptt24@gmail.com>\n"
"Language-Team: Latvian <https://hosted.weblate.org/projects/almalinux/" "Language-Team: Latvian <https://hosted.weblate.org/projects/almalinux/"
@ -19,13 +19,17 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;\n"
"X-Generator: Weblate 4.7.2-dev\n" "X-Generator: Weblate 4.7.2-dev\n"
#: commons/templatetags/motd.py:20
msgid "Read more"
msgstr ""
#: www/templates/404.html:4 #: www/templates/404.html:4
msgid "404 Not Found - AlmaLinux OS" msgid "404 Not Found - AlmaLinux OS"
msgstr "404 Nav Atrasts - AlmaLinux OS" msgstr "404 Nav Atrasts - AlmaLinux OS"
#: www/templates/404.html:6 www/templates/blog/index.html:9 #: www/templates/404.html:6 www/templates/blog/index.html:9
#: www/templates/index.html:8 www/templates/layouts/base.html:21 #: www/templates/blog/post.html:9 www/templates/index.html:8
#: www/templates/subscribe_post.html:8 #: www/templates/layouts/base.html:21 www/templates/subscribe_post.html:8
msgid "" msgid ""
"An Open Source, community owned and governed, forever-free enterprise Linux " "An Open Source, community owned and governed, forever-free enterprise Linux "
"distribution." "distribution."
@ -39,11 +43,11 @@ msgstr "404 Nav Atrasts"
msgid "Sorry, but the page you were trying to access could not be found." msgid "Sorry, but the page you were trying to access could not be found."
msgstr "Atvaino, bet šī lapa nav pieejama." msgstr "Atvaino, bet šī lapa nav pieejama."
#: 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" msgid "Resources"
msgstr "Resursi" msgstr "Resursi"
#: 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" msgid "Wiki"
msgstr "Wiki" msgstr "Wiki"
@ -59,85 +63,89 @@ msgstr "Repozitorija"
msgid "Downloads" msgid "Downloads"
msgstr "Lejupielādes" msgstr "Lejupielādes"
#: 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" msgid "Community"
msgstr "Kopiena" msgstr "Kopiena"
#: www/templates/_partial/footer.html:25 #: www/templates/_partial/footer.html:27
msgid "Forums" msgid "Forums"
msgstr "Forumi" msgstr "Forumi"
#: www/templates/_partial/footer.html:26 #: www/templates/_partial/footer.html:28
msgid "Chat" msgid "Chat"
msgstr "Čats" msgstr "Čats"
#: www/templates/_partial/footer.html:31 #: www/templates/_partial/footer.html:33
msgid "Legal" msgid "Legal"
msgstr "Noteikumi" msgstr "Noteikumi"
#: www/templates/_partial/footer.html:33 #: www/templates/_partial/footer.html:35
msgid "Legal Notice" msgid "Legal Notice"
msgstr "Juridisks paziņojums" msgstr "Juridisks paziņojums"
#: 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" msgid "Privacy Policy"
msgstr "Privātuma politika" msgstr "Privātuma politika"
#: www/templates/_partial/footer.html:35 #: www/templates/_partial/footer.html:37
msgid "Terms of Service" msgid "Terms of Service"
msgstr "Lietošanas noteikumi" msgstr "Lietošanas noteikumi"
#: www/templates/_partial/footer.html:38 #: www/templates/_partial/footer.html:40
msgid "Licensing Policy" msgid "Licensing Policy"
msgstr "Licencēšanas politika" msgstr "Licencēšanas politika"
#: www/templates/_partial/footer.html:43 #: www/templates/_partial/footer.html:45
#, fuzzy #, fuzzy
#| msgid " Trademark Usage Policy" #| msgid " Trademark Usage Policy"
msgid "Trademark Usage Policy" msgid "Trademark Usage Policy"
msgstr " Preču zīmju lietošanas politika" msgstr " Preču zīmju lietošanas politika"
#: www/templates/_partial/footer.html:48 #: www/templates/_partial/footer.html:50
msgid "Foundation Bylaws" msgid "Foundation Bylaws"
msgstr "" msgstr ""
#: www/templates/_partial/navbar.html:7 #: www/templates/_partial/navbar.html:10
msgid "AlmaLinux OS logo" msgid "AlmaLinux OS logo"
msgstr "AlmaLinux OS logo" msgstr "AlmaLinux OS logo"
#: www/templates/_partial/navbar.html:16 #: www/templates/_partial/navbar.html:19
msgid "Toggle navigation" msgid "Toggle navigation"
msgstr "Atvērt navigāciju" msgstr "Atvērt navigāciju"
#: www/templates/_partial/navbar.html:23 #: www/templates/_partial/navbar.html:26
msgid "Blog" msgid "Blog"
msgstr "Blogs" msgstr "Blogs"
#: www/templates/_partial/navbar.html:44 #: www/templates/_partial/navbar.html:47
msgid "Migrate from CentOS 8" msgid "Migrate from CentOS 8"
msgstr "Migrēt no CentOS 8" msgstr "Migrēt no CentOS 8"
#: www/templates/_partial/navbar.html:49 #: www/templates/_partial/navbar.html:52
msgid "Report Bugs" msgid "Report Bugs"
msgstr "Kļūdu paziņojumi" msgstr "Kļūdu paziņojumi"
#: www/templates/_partial/navbar.html:54 #: www/templates/_partial/navbar.html:70
msgid "Membership"
msgstr ""
#: www/templates/_partial/navbar.html:62
msgid "Shop" msgid "Shop"
msgstr "Veikals" msgstr "Veikals"
#: www/templates/_partial/navbar.html:70 #: www/templates/_partial/navbar.html:78
msgid "Language" msgid "Language"
msgstr "Valoda" msgstr "Valoda"
#: www/templates/_partial/navbar.html:91 #: www/templates/_partial/navbar.html:102
msgid "Translate" msgid "Translate"
msgstr "" 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" msgid "Download"
msgstr "Lejupielādēt" msgstr "Lejupielādēt"
@ -217,6 +225,191 @@ msgstr "Tīmekļa klātbūtne"
msgid "Join AlmaLinux OS community chat" msgid "Join AlmaLinux OS community chat"
msgstr "Pievienoties AlmaLinux OS kopienas čatam" msgstr "Pievienoties AlmaLinux OS kopienas čatam"
#: www/templates/elevate/index.html:6
#, fuzzy
#| msgid "AlmaLinux OS - Contribute"
msgid "AlmaLinux OS - ELevate Your Distribution"
msgstr "AlmaLinux OS - Veicināt"
#: 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&reg; 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 <a href=\"%(pes_link)s\">Package "
"Evolution Service</a> (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 <a href=\"%(chat_link)s\">#migration</a> Mattermost "
"channel. You can find the tool code here: <a href=\"%(github_link)s\">"
"%(github_link)s</a> and you can add/edit/interact with package metadata at "
"<a href=\"%(pes_link)s\">%(pes_link)s</a>."
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: <ul> <li>AlmaLinux OS 8</li> <li>CentOS Stream 8</li> "
"<li>Oracle Linux 8</li> <li>Rocky Linux 8</li> </ul>"
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:6
#: www/templates/foundation/members/index.html:7 #: www/templates/foundation/members/index.html:7
#, fuzzy #, fuzzy

2
locale/lv/LC_MESSAGES/djangojs.po

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \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" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"

249
locale/pl/LC_MESSAGES/django.po

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \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" "PO-Revision-Date: 2021-08-25 16:34+0000\n"
"Last-Translator: A M <augim3@gmail.com>\n" "Last-Translator: A M <augim3@gmail.com>\n"
"Language-Team: Polish <https://hosted.weblate.org/projects/almalinux/website-" "Language-Team: Polish <https://hosted.weblate.org/projects/almalinux/website-"
@ -21,13 +21,17 @@ msgstr ""
"%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" "%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
"X-Generator: Weblate 4.8.1-dev\n" "X-Generator: Weblate 4.8.1-dev\n"
#: commons/templatetags/motd.py:20
msgid "Read more"
msgstr ""
#: www/templates/404.html:4 #: www/templates/404.html:4
msgid "404 Not Found - AlmaLinux OS" msgid "404 Not Found - AlmaLinux OS"
msgstr "404 Nie Znalezniono - AlmaLinux OS" msgstr "404 Nie Znalezniono - AlmaLinux OS"
#: www/templates/404.html:6 www/templates/blog/index.html:9 #: www/templates/404.html:6 www/templates/blog/index.html:9
#: www/templates/index.html:8 www/templates/layouts/base.html:21 #: www/templates/blog/post.html:9 www/templates/index.html:8
#: www/templates/subscribe_post.html:8 #: www/templates/layouts/base.html:21 www/templates/subscribe_post.html:8
msgid "" msgid ""
"An Open Source, community owned and governed, forever-free enterprise Linux " "An Open Source, community owned and governed, forever-free enterprise Linux "
"distribution." "distribution."
@ -43,11 +47,11 @@ msgstr ""
"Przepraszamy, ale nie można znaleźć strony, do której próbujesz uzyskać " "Przepraszamy, ale nie można znaleźć strony, do której próbujesz uzyskać "
"dostęp." "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" msgid "Resources"
msgstr "Zasoby" 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" msgid "Wiki"
msgstr "Wiki" msgstr "Wiki"
@ -63,85 +67,89 @@ msgstr "Magazyn"
msgid "Downloads" msgid "Downloads"
msgstr "Pliki do pobrania" 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" msgid "Community"
msgstr "Społeczność" msgstr "Społeczność"
#: www/templates/_partial/footer.html:25 #: www/templates/_partial/footer.html:27
msgid "Forums" msgid "Forums"
msgstr "Forum" msgstr "Forum"
#: www/templates/_partial/footer.html:26 #: www/templates/_partial/footer.html:28
msgid "Chat" msgid "Chat"
msgstr "Czat" msgstr "Czat"
#: www/templates/_partial/footer.html:31 #: www/templates/_partial/footer.html:33
msgid "Legal" msgid "Legal"
msgstr "Legalne" msgstr "Legalne"
#: www/templates/_partial/footer.html:33 #: www/templates/_partial/footer.html:35
msgid "Legal Notice" msgid "Legal Notice"
msgstr "Nota prawna" 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" msgid "Privacy Policy"
msgstr "Polityka Prywatności" msgstr "Polityka Prywatności"
#: www/templates/_partial/footer.html:35 #: www/templates/_partial/footer.html:37
msgid "Terms of Service" msgid "Terms of Service"
msgstr "Warunki Usługi" msgstr "Warunki Usługi"
#: www/templates/_partial/footer.html:38 #: www/templates/_partial/footer.html:40
msgid "Licensing Policy" msgid "Licensing Policy"
msgstr "Zasady licencjonowania" msgstr "Zasady licencjonowania"
#: www/templates/_partial/footer.html:43 #: www/templates/_partial/footer.html:45
#, fuzzy #, fuzzy
#| msgid " Trademark Usage Policy" #| msgid " Trademark Usage Policy"
msgid "Trademark Usage Policy" msgid "Trademark Usage Policy"
msgstr " Zasady korzystania ze znaków towarowych" msgstr " Zasady korzystania ze znaków towarowych"
#: www/templates/_partial/footer.html:48 #: www/templates/_partial/footer.html:50
msgid "Foundation Bylaws" msgid "Foundation Bylaws"
msgstr "" msgstr ""
#: www/templates/_partial/navbar.html:7 #: www/templates/_partial/navbar.html:10
msgid "AlmaLinux OS logo" msgid "AlmaLinux OS logo"
msgstr "logo AlmaLinux OS" msgstr "logo AlmaLinux OS"
#: www/templates/_partial/navbar.html:16 #: www/templates/_partial/navbar.html:19
msgid "Toggle navigation" msgid "Toggle navigation"
msgstr "Przełącz nawigację" msgstr "Przełącz nawigację"
#: www/templates/_partial/navbar.html:23 #: www/templates/_partial/navbar.html:26
msgid "Blog" msgid "Blog"
msgstr "Blog" msgstr "Blog"
#: www/templates/_partial/navbar.html:44 #: www/templates/_partial/navbar.html:47
msgid "Migrate from CentOS 8" msgid "Migrate from CentOS 8"
msgstr "Migracja z CentOS 8" msgstr "Migracja z CentOS 8"
#: www/templates/_partial/navbar.html:49 #: www/templates/_partial/navbar.html:52
msgid "Report Bugs" msgid "Report Bugs"
msgstr "Zgłoś błędy" msgstr "Zgłoś błędy"
#: www/templates/_partial/navbar.html:54 #: www/templates/_partial/navbar.html:70
msgid "Membership"
msgstr ""
#: www/templates/_partial/navbar.html:62
msgid "Shop" msgid "Shop"
msgstr "Sklep" msgstr "Sklep"
#: www/templates/_partial/navbar.html:70 #: www/templates/_partial/navbar.html:78
msgid "Language" msgid "Language"
msgstr "Język" msgstr "Język"
#: www/templates/_partial/navbar.html:91 #: www/templates/_partial/navbar.html:102
msgid "Translate" msgid "Translate"
msgstr "Przetłumacz" 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" msgid "Download"
msgstr "Pobierz" msgstr "Pobierz"
@ -220,6 +228,191 @@ msgstr "Obecność w sieci"
msgid "Join AlmaLinux OS community chat" msgid "Join AlmaLinux OS community chat"
msgstr "Dołącz do czatu społeczności AlmaLinux OS" 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&reg; 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 <a href=\"%(pes_link)s\">Package "
"Evolution Service</a> (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 <a href=\"%(chat_link)s\">#migration</a> Mattermost "
"channel. You can find the tool code here: <a href=\"%(github_link)s\">"
"%(github_link)s</a> and you can add/edit/interact with package metadata at "
"<a href=\"%(pes_link)s\">%(pes_link)s</a>."
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: <ul> <li>AlmaLinux OS 8</li> <li>CentOS Stream 8</li> "
"<li>Oracle Linux 8</li> <li>Rocky Linux 8</li> </ul>"
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:6
#: www/templates/foundation/members/index.html:7 #: www/templates/foundation/members/index.html:7
#, fuzzy #, fuzzy

2
locale/pl/LC_MESSAGES/djangojs.po

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \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" "PO-Revision-Date: 2021-09-06 22:34+0000\n"
"Last-Translator: Urszula <urszula127@gmail.com>\n" "Last-Translator: Urszula <urszula127@gmail.com>\n"
"Language-Team: Polish <https://hosted.weblate.org/projects/almalinux/website-" "Language-Team: Polish <https://hosted.weblate.org/projects/almalinux/website-"

249
locale/pt/LC_MESSAGES/django.po

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \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" "PO-Revision-Date: 2021-09-06 22:34+0000\n"
"Last-Translator: Hugo Carvalho <hugokarvalho@hotmail.com>\n" "Last-Translator: Hugo Carvalho <hugokarvalho@hotmail.com>\n"
"Language-Team: Portuguese <https://hosted.weblate.org/projects/almalinux/" "Language-Team: Portuguese <https://hosted.weblate.org/projects/almalinux/"
@ -19,13 +19,17 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.8.1-dev\n" "X-Generator: Weblate 4.8.1-dev\n"
#: commons/templatetags/motd.py:20
msgid "Read more"
msgstr ""
#: www/templates/404.html:4 #: www/templates/404.html:4
msgid "404 Not Found - AlmaLinux OS" msgid "404 Not Found - AlmaLinux OS"
msgstr "404 Não Encontrado - AlmaLinux OS" msgstr "404 Não Encontrado - AlmaLinux OS"
#: www/templates/404.html:6 www/templates/blog/index.html:9 #: www/templates/404.html:6 www/templates/blog/index.html:9
#: www/templates/index.html:8 www/templates/layouts/base.html:21 #: www/templates/blog/post.html:9 www/templates/index.html:8
#: www/templates/subscribe_post.html:8 #: www/templates/layouts/base.html:21 www/templates/subscribe_post.html:8
msgid "" msgid ""
"An Open Source, community owned and governed, forever-free enterprise Linux " "An Open Source, community owned and governed, forever-free enterprise Linux "
"distribution." "distribution."
@ -40,11 +44,11 @@ msgid "Sorry, but the page you were trying to access could not be found."
msgstr "" msgstr ""
"Desculpe, mas a página que você estava tentando acessar não foi encontrada." "Desculpe, mas a página que você estava tentando acessar não foi 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" msgid "Resources"
msgstr "Recursos" 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" msgid "Wiki"
msgstr "Wiki" msgstr "Wiki"
@ -60,85 +64,89 @@ msgstr "Repositório"
msgid "Downloads" msgid "Downloads"
msgstr "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" msgid "Community"
msgstr "Comunidade" msgstr "Comunidade"
#: www/templates/_partial/footer.html:25 #: www/templates/_partial/footer.html:27
msgid "Forums" msgid "Forums"
msgstr "Fóruns" msgstr "Fóruns"
#: www/templates/_partial/footer.html:26 #: www/templates/_partial/footer.html:28
msgid "Chat" msgid "Chat"
msgstr "Bate-papo" msgstr "Bate-papo"
#: www/templates/_partial/footer.html:31 #: www/templates/_partial/footer.html:33
msgid "Legal" msgid "Legal"
msgstr "Legal" msgstr "Legal"
#: www/templates/_partial/footer.html:33 #: www/templates/_partial/footer.html:35
msgid "Legal Notice" msgid "Legal Notice"
msgstr "Aviso legal" 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" msgid "Privacy Policy"
msgstr "Política de Privacidade" msgstr "Política de Privacidade"
#: www/templates/_partial/footer.html:35 #: www/templates/_partial/footer.html:37
msgid "Terms of Service" msgid "Terms of Service"
msgstr "Termos de Serviço" msgstr "Termos de Serviço"
#: www/templates/_partial/footer.html:38 #: www/templates/_partial/footer.html:40
msgid "Licensing Policy" msgid "Licensing Policy"
msgstr "Política de Licenciamento" msgstr "Política de Licenciamento"
#: www/templates/_partial/footer.html:43 #: www/templates/_partial/footer.html:45
#, fuzzy #, fuzzy
#| msgid " Trademark Usage Policy" #| msgid " Trademark Usage Policy"
msgid "Trademark Usage Policy" msgid "Trademark Usage Policy"
msgstr " Política de Uso de Marcas Registradas" msgstr " Política de Uso de Marcas Registradas"
#: www/templates/_partial/footer.html:48 #: www/templates/_partial/footer.html:50
msgid "Foundation Bylaws" msgid "Foundation Bylaws"
msgstr "" msgstr ""
#: www/templates/_partial/navbar.html:7 #: www/templates/_partial/navbar.html:10
msgid "AlmaLinux OS logo" msgid "AlmaLinux OS logo"
msgstr "Logotipo do AlmaLinux OS" msgstr "Logotipo do AlmaLinux OS"
#: www/templates/_partial/navbar.html:16 #: www/templates/_partial/navbar.html:19
msgid "Toggle navigation" msgid "Toggle navigation"
msgstr "Alternar navegação" msgstr "Alternar navegação"
#: www/templates/_partial/navbar.html:23 #: www/templates/_partial/navbar.html:26
msgid "Blog" msgid "Blog"
msgstr "Blog" msgstr "Blog"
#: www/templates/_partial/navbar.html:44 #: www/templates/_partial/navbar.html:47
msgid "Migrate from CentOS 8" msgid "Migrate from CentOS 8"
msgstr "Migrar do CentOS 8" msgstr "Migrar do CentOS 8"
#: www/templates/_partial/navbar.html:49 #: www/templates/_partial/navbar.html:52
msgid "Report Bugs" msgid "Report Bugs"
msgstr "Reportar Bugs" msgstr "Reportar Bugs"
#: www/templates/_partial/navbar.html:54 #: www/templates/_partial/navbar.html:70
msgid "Membership"
msgstr ""
#: www/templates/_partial/navbar.html:62
msgid "Shop" msgid "Shop"
msgstr "Loja" msgstr "Loja"
#: www/templates/_partial/navbar.html:70 #: www/templates/_partial/navbar.html:78
msgid "Language" msgid "Language"
msgstr "Idioma" msgstr "Idioma"
#: www/templates/_partial/navbar.html:91 #: www/templates/_partial/navbar.html:102
msgid "Translate" msgid "Translate"
msgstr "" 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" msgid "Download"
msgstr "Download" msgstr "Download"
@ -218,6 +226,191 @@ msgstr "Presença na Web"
msgid "Join AlmaLinux OS community chat" msgid "Join AlmaLinux OS community chat"
msgstr "Junte-se ao chat da comunidade AlmaLinux OS" msgstr "Junte-se ao chat da comunidade AlmaLinux OS"
#: www/templates/elevate/index.html:6
#, fuzzy
#| msgid "AlmaLinux OS - Contribute"
msgid "AlmaLinux OS - ELevate Your Distribution"
msgstr "AlmaLinux OS - Contribua"
#: 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&reg; 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 <a href=\"%(pes_link)s\">Package "
"Evolution Service</a> (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 <a href=\"%(chat_link)s\">#migration</a> Mattermost "
"channel. You can find the tool code here: <a href=\"%(github_link)s\">"
"%(github_link)s</a> and you can add/edit/interact with package metadata at "
"<a href=\"%(pes_link)s\">%(pes_link)s</a>."
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: <ul> <li>AlmaLinux OS 8</li> <li>CentOS Stream 8</li> "
"<li>Oracle Linux 8</li> <li>Rocky Linux 8</li> </ul>"
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:6
#: www/templates/foundation/members/index.html:7 #: www/templates/foundation/members/index.html:7
#, fuzzy #, fuzzy

2
locale/pt/LC_MESSAGES/djangojs.po

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \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" "PO-Revision-Date: 2021-08-11 16:32+0000\n"
"Last-Translator: Hugo Carvalho <hugokarvalho@hotmail.com>\n" "Last-Translator: Hugo Carvalho <hugokarvalho@hotmail.com>\n"
"Language-Team: Portuguese <https://hosted.weblate.org/projects/almalinux/" "Language-Team: Portuguese <https://hosted.weblate.org/projects/almalinux/"

249
locale/pt_BR/LC_MESSAGES/django.po

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \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" "PO-Revision-Date: 2021-08-05 22:34+0000\n"
"Last-Translator: Deleted User <noreply+32631@weblate.org>\n" "Last-Translator: Deleted User <noreply+32631@weblate.org>\n"
"Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/" "Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/"
@ -19,13 +19,17 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n" "Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.8-dev\n" "X-Generator: Weblate 4.8-dev\n"
#: commons/templatetags/motd.py:20
msgid "Read more"
msgstr ""
#: www/templates/404.html:4 #: www/templates/404.html:4
msgid "404 Not Found - AlmaLinux OS" msgid "404 Not Found - AlmaLinux OS"
msgstr "404 Não Encontrado - AlmaLinuxOS" msgstr "404 Não Encontrado - AlmaLinuxOS"
#: www/templates/404.html:6 www/templates/blog/index.html:9 #: www/templates/404.html:6 www/templates/blog/index.html:9
#: www/templates/index.html:8 www/templates/layouts/base.html:21 #: www/templates/blog/post.html:9 www/templates/index.html:8
#: www/templates/subscribe_post.html:8 #: www/templates/layouts/base.html:21 www/templates/subscribe_post.html:8
msgid "" msgid ""
"An Open Source, community owned and governed, forever-free enterprise Linux " "An Open Source, community owned and governed, forever-free enterprise Linux "
"distribution." "distribution."
@ -41,11 +45,11 @@ msgstr ""
"Desculpe, mas a página que você estava tentando acessar não pode ser " "Desculpe, mas a página que você estava tentando acessar não pode ser "
"encontrada." "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" msgid "Resources"
msgstr "Recursos" 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" msgid "Wiki"
msgstr "Wiki" msgstr "Wiki"
@ -61,85 +65,89 @@ msgstr "Repositório"
msgid "Downloads" msgid "Downloads"
msgstr "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" msgid "Community"
msgstr "Comunidade" msgstr "Comunidade"
#: www/templates/_partial/footer.html:25 #: www/templates/_partial/footer.html:27
msgid "Forums" msgid "Forums"
msgstr "Fóruns" msgstr "Fóruns"
#: www/templates/_partial/footer.html:26 #: www/templates/_partial/footer.html:28
msgid "Chat" msgid "Chat"
msgstr "Chat" msgstr "Chat"
#: www/templates/_partial/footer.html:31 #: www/templates/_partial/footer.html:33
msgid "Legal" msgid "Legal"
msgstr "Jurídico" msgstr "Jurídico"
#: www/templates/_partial/footer.html:33 #: www/templates/_partial/footer.html:35
msgid "Legal Notice" msgid "Legal Notice"
msgstr "Aviso Legal" 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" msgid "Privacy Policy"
msgstr "Política de privacidade" msgstr "Política de privacidade"
#: www/templates/_partial/footer.html:35 #: www/templates/_partial/footer.html:37
msgid "Terms of Service" msgid "Terms of Service"
msgstr "Termos de serviço" msgstr "Termos de serviço"
#: www/templates/_partial/footer.html:38 #: www/templates/_partial/footer.html:40
msgid "Licensing Policy" msgid "Licensing Policy"
msgstr "Política de licença" msgstr "Política de licença"
#: www/templates/_partial/footer.html:43 #: www/templates/_partial/footer.html:45
#, fuzzy #, fuzzy
#| msgid " Trademark Usage Policy" #| msgid " Trademark Usage Policy"
msgid "Trademark Usage Policy" msgid "Trademark Usage Policy"
msgstr " Política de Utilização de Marcos" msgstr " Política de Utilização de Marcos"
#: www/templates/_partial/footer.html:48 #: www/templates/_partial/footer.html:50
msgid "Foundation Bylaws" msgid "Foundation Bylaws"
msgstr "" msgstr ""
#: www/templates/_partial/navbar.html:7 #: www/templates/_partial/navbar.html:10
msgid "AlmaLinux OS logo" msgid "AlmaLinux OS logo"
msgstr "logo da AlmaLinux OS" msgstr "logo da AlmaLinux OS"
#: www/templates/_partial/navbar.html:16 #: www/templates/_partial/navbar.html:19
msgid "Toggle navigation" msgid "Toggle navigation"
msgstr "Ative a navegação" msgstr "Ative a navegação"
#: www/templates/_partial/navbar.html:23 #: www/templates/_partial/navbar.html:26
msgid "Blog" msgid "Blog"
msgstr "Blog" msgstr "Blog"
#: www/templates/_partial/navbar.html:44 #: www/templates/_partial/navbar.html:47
msgid "Migrate from CentOS 8" msgid "Migrate from CentOS 8"
msgstr "Migre do CentOS 8" msgstr "Migre do CentOS 8"
#: www/templates/_partial/navbar.html:49 #: www/templates/_partial/navbar.html:52
msgid "Report Bugs" msgid "Report Bugs"
msgstr "Reporte Bugs" msgstr "Reporte Bugs"
#: www/templates/_partial/navbar.html:54 #: www/templates/_partial/navbar.html:70
msgid "Membership"
msgstr ""
#: www/templates/_partial/navbar.html:62
msgid "Shop" msgid "Shop"
msgstr "Loja" msgstr "Loja"
#: www/templates/_partial/navbar.html:70 #: www/templates/_partial/navbar.html:78
msgid "Language" msgid "Language"
msgstr "Língua" msgstr "Língua"
#: www/templates/_partial/navbar.html:91 #: www/templates/_partial/navbar.html:102
msgid "Translate" msgid "Translate"
msgstr "" 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" msgid "Download"
msgstr "Download" msgstr "Download"
@ -218,6 +226,191 @@ msgstr "Presença na web"
msgid "Join AlmaLinux OS community chat" msgid "Join AlmaLinux OS community chat"
msgstr "Junte-se ao chat da comunidade da AlmaLinux OS" 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&reg; 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 <a href=\"%(pes_link)s\">Package "
"Evolution Service</a> (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 <a href=\"%(chat_link)s\">#migration</a> Mattermost "
"channel. You can find the tool code here: <a href=\"%(github_link)s\">"
"%(github_link)s</a> and you can add/edit/interact with package metadata at "
"<a href=\"%(pes_link)s\">%(pes_link)s</a>."
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: <ul> <li>AlmaLinux OS 8</li> <li>CentOS Stream 8</li> "
"<li>Oracle Linux 8</li> <li>Rocky Linux 8</li> </ul>"
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:6
#: www/templates/foundation/members/index.html:7 #: www/templates/foundation/members/index.html:7
#, fuzzy #, fuzzy

2
locale/pt_BR/LC_MESSAGES/djangojs.po

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \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" "PO-Revision-Date: 2021-08-05 22:34+0000\n"
"Last-Translator: Thiago Carmona Monteiro <Guarakami1807@protonmail.ch>\n" "Last-Translator: Thiago Carmona Monteiro <Guarakami1807@protonmail.ch>\n"
"Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/" "Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/"

249
locale/ru/LC_MESSAGES/django.po

@ -2,7 +2,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: almalinuxorg/1.0\n" "Project-Id-Version: almalinuxorg/1.0\n"
"Report-Msgid-Bugs-To: \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" "PO-Revision-Date: 2021-07-29 08:43+0000\n"
"Last-Translator: gz83 <uioptt24@gmail.com>\n" "Last-Translator: gz83 <uioptt24@gmail.com>\n"
"Language-Team: Russian <https://hosted.weblate.org/projects/almalinux/" "Language-Team: Russian <https://hosted.weblate.org/projects/almalinux/"
@ -16,13 +16,17 @@ msgstr ""
"%100>=11 && n%100<=14)? 2 : 3);\n" "%100>=11 && n%100<=14)? 2 : 3);\n"
"X-Generator: Weblate 4.7.2-dev\n" "X-Generator: Weblate 4.7.2-dev\n"
#: commons/templatetags/motd.py:20
msgid "Read more"
msgstr ""
#: www/templates/404.html:4 #: www/templates/404.html:4
msgid "404 Not Found - AlmaLinux OS" msgid "404 Not Found - AlmaLinux OS"
msgstr "404 Не Найдено - AlmaLinux OS" msgstr "404 Не Найдено - AlmaLinux OS"
#: www/templates/404.html:6 www/templates/blog/index.html:9 #: www/templates/404.html:6 www/templates/blog/index.html:9
#: www/templates/index.html:8 www/templates/layouts/base.html:21 #: www/templates/blog/post.html:9 www/templates/index.html:8
#: www/templates/subscribe_post.html:8 #: www/templates/layouts/base.html:21 www/templates/subscribe_post.html:8
msgid "" msgid ""
"An Open Source, community owned and governed, forever-free enterprise Linux " "An Open Source, community owned and governed, forever-free enterprise Linux "
"distribution." "distribution."
@ -37,11 +41,11 @@ msgid "Sorry, but the page you were trying to access could not be found."
msgstr "" 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" msgid "Resources"
msgstr "Ресурсы" 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" msgid "Wiki"
msgstr "Вики" msgstr "Вики"
@ -57,85 +61,89 @@ msgstr "Репозиторий"
msgid "Downloads" msgid "Downloads"
msgstr "Загрузки" 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" msgid "Community"
msgstr "Сообщество" msgstr "Сообщество"
#: www/templates/_partial/footer.html:25 #: www/templates/_partial/footer.html:27
msgid "Forums" msgid "Forums"
msgstr "Форумы" msgstr "Форумы"
#: www/templates/_partial/footer.html:26 #: www/templates/_partial/footer.html:28
msgid "Chat" msgid "Chat"
msgstr "Чат" msgstr "Чат"
#: www/templates/_partial/footer.html:31 #: www/templates/_partial/footer.html:33
msgid "Legal" msgid "Legal"
msgstr "Юридическая" msgstr "Юридическая"
#: www/templates/_partial/footer.html:33 #: www/templates/_partial/footer.html:35
msgid "Legal Notice" msgid "Legal Notice"
msgstr "Правовая информация" 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" msgid "Privacy Policy"
msgstr "Политика конфиденциальности" msgstr "Политика конфиденциальности"
#: www/templates/_partial/footer.html:35 #: www/templates/_partial/footer.html:37
msgid "Terms of Service" msgid "Terms of Service"
msgstr "Условия предоставления услуг" msgstr "Условия предоставления услуг"
#: www/templates/_partial/footer.html:38 #: www/templates/_partial/footer.html:40
msgid "Licensing Policy" msgid "Licensing Policy"
msgstr "Лицензионная политика" msgstr "Лицензионная политика"
#: www/templates/_partial/footer.html:43 #: www/templates/_partial/footer.html:45
#, fuzzy #, fuzzy
#| msgid " Trademark Usage Policy" #| msgid " Trademark Usage Policy"
msgid "Trademark Usage Policy" msgid "Trademark Usage Policy"
msgstr " Политика использования товарных знаков" msgstr " Политика использования товарных знаков"
#: www/templates/_partial/footer.html:48 #: www/templates/_partial/footer.html:50
msgid "Foundation Bylaws" msgid "Foundation Bylaws"
msgstr "" msgstr ""
#: www/templates/_partial/navbar.html:7 #: www/templates/_partial/navbar.html:10
msgid "AlmaLinux OS logo" msgid "AlmaLinux OS logo"
msgstr "Логотип ОС AlmaLinux" msgstr "Логотип ОС AlmaLinux"
#: www/templates/_partial/navbar.html:16 #: www/templates/_partial/navbar.html:19
msgid "Toggle navigation" msgid "Toggle navigation"
msgstr "Переключение навигации" msgstr "Переключение навигации"
#: www/templates/_partial/navbar.html:23 #: www/templates/_partial/navbar.html:26
msgid "Blog" msgid "Blog"
msgstr "Блог" msgstr "Блог"
#: www/templates/_partial/navbar.html:44 #: www/templates/_partial/navbar.html:47
msgid "Migrate from CentOS 8" msgid "Migrate from CentOS 8"
msgstr "Миграция с CentOS 8" msgstr "Миграция с CentOS 8"
#: www/templates/_partial/navbar.html:49 #: www/templates/_partial/navbar.html:52
msgid "Report Bugs" msgid "Report Bugs"
msgstr "Сообщить об ошибках" msgstr "Сообщить об ошибках"
#: www/templates/_partial/navbar.html:54 #: www/templates/_partial/navbar.html:70
msgid "Membership"
msgstr ""
#: www/templates/_partial/navbar.html:62
msgid "Shop" msgid "Shop"
msgstr "Магазин" msgstr "Магазин"
#: www/templates/_partial/navbar.html:70 #: www/templates/_partial/navbar.html:78
msgid "Language" msgid "Language"
msgstr "Язык" msgstr "Язык"
#: www/templates/_partial/navbar.html:91 #: www/templates/_partial/navbar.html:102
msgid "Translate" msgid "Translate"
msgstr "" 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" msgid "Download"
msgstr "Скачать" msgstr "Скачать"
@ -215,6 +223,191 @@ msgstr "Веб-присутствие"
msgid "Join AlmaLinux OS community chat" msgid "Join AlmaLinux OS community chat"
msgstr "Присоединяйтесь к чату сообщества AlmaLinux OS" 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&reg; 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 <a href=\"%(pes_link)s\">Package "
"Evolution Service</a> (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 <a href=\"%(chat_link)s\">#migration</a> Mattermost "
"channel. You can find the tool code here: <a href=\"%(github_link)s\">"
"%(github_link)s</a> and you can add/edit/interact with package metadata at "
"<a href=\"%(pes_link)s\">%(pes_link)s</a>."
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: <ul> <li>AlmaLinux OS 8</li> <li>CentOS Stream 8</li> "
"<li>Oracle Linux 8</li> <li>Rocky Linux 8</li> </ul>"
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:6
#: www/templates/foundation/members/index.html:7 #: www/templates/foundation/members/index.html:7
#, fuzzy #, fuzzy

2
locale/ru/LC_MESSAGES/djangojs.po

@ -3,7 +3,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: almalinuxorg/1.0\n" "Project-Id-Version: almalinuxorg/1.0\n"
"Report-Msgid-Bugs-To: \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" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"

249
locale/tr/LC_MESSAGES/django.po

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \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" "PO-Revision-Date: 2021-08-19 21:35+0000\n"
"Last-Translator: Oğuz Ersen <oguzersen@protonmail.com>\n" "Last-Translator: Oğuz Ersen <oguzersen@protonmail.com>\n"
"Language-Team: Turkish <https://hosted.weblate.org/projects/almalinux/" "Language-Team: Turkish <https://hosted.weblate.org/projects/almalinux/"
@ -19,13 +19,17 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=n > 1;\n" "Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Weblate 4.8-dev\n" "X-Generator: Weblate 4.8-dev\n"
#: commons/templatetags/motd.py:20
msgid "Read more"
msgstr ""
#: www/templates/404.html:4 #: www/templates/404.html:4
msgid "404 Not Found - AlmaLinux OS" msgid "404 Not Found - AlmaLinux OS"
msgstr "404 Sayfa Bulunamadı - AlmaLinux OS" msgstr "404 Sayfa Bulunamadı - AlmaLinux OS"
#: www/templates/404.html:6 www/templates/blog/index.html:9 #: www/templates/404.html:6 www/templates/blog/index.html:9
#: www/templates/index.html:8 www/templates/layouts/base.html:21 #: www/templates/blog/post.html:9 www/templates/index.html:8
#: www/templates/subscribe_post.html:8 #: www/templates/layouts/base.html:21 www/templates/subscribe_post.html:8
msgid "" msgid ""
"An Open Source, community owned and governed, forever-free enterprise Linux " "An Open Source, community owned and governed, forever-free enterprise Linux "
"distribution." "distribution."
@ -39,11 +43,11 @@ msgstr "404 Sayfa Bulunamadı"
msgid "Sorry, but the page you were trying to access could not be found." msgid "Sorry, but the page you were trying to access could not be found."
msgstr "Üzgünüm, aradığınız sayfa bulunamadı." 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" msgid "Resources"
msgstr "Kaynaklar" 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" msgid "Wiki"
msgstr "Wiki" msgstr "Wiki"
@ -59,85 +63,89 @@ msgstr "Depo"
msgid "Downloads" msgid "Downloads"
msgstr "Kurulum" 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" msgid "Community"
msgstr "Topluluk" msgstr "Topluluk"
#: www/templates/_partial/footer.html:25 #: www/templates/_partial/footer.html:27
msgid "Forums" msgid "Forums"
msgstr "Forumlar" msgstr "Forumlar"
#: www/templates/_partial/footer.html:26 #: www/templates/_partial/footer.html:28
msgid "Chat" msgid "Chat"
msgstr "Sohbet" msgstr "Sohbet"
#: www/templates/_partial/footer.html:31 #: www/templates/_partial/footer.html:33
msgid "Legal" msgid "Legal"
msgstr "Yasal" msgstr "Yasal"
#: www/templates/_partial/footer.html:33 #: www/templates/_partial/footer.html:35
msgid "Legal Notice" msgid "Legal Notice"
msgstr "Yasal Uyarı" 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" msgid "Privacy Policy"
msgstr "Gizlilik Politikası" msgstr "Gizlilik Politikası"
#: www/templates/_partial/footer.html:35 #: www/templates/_partial/footer.html:37
msgid "Terms of Service" msgid "Terms of Service"
msgstr "Kullanım Şartları" msgstr "Kullanım Şartları"
#: www/templates/_partial/footer.html:38 #: www/templates/_partial/footer.html:40
msgid "Licensing Policy" msgid "Licensing Policy"
msgstr "Lisans Politikası" msgstr "Lisans Politikası"
#: www/templates/_partial/footer.html:43 #: www/templates/_partial/footer.html:45
#, fuzzy #, fuzzy
#| msgid " Trademark Usage Policy" #| msgid " Trademark Usage Policy"
msgid "Trademark Usage Policy" msgid "Trademark Usage Policy"
msgstr " Ticari Marka Kullanım Politikası" msgstr " Ticari Marka Kullanım Politikası"
#: www/templates/_partial/footer.html:48 #: www/templates/_partial/footer.html:50
msgid "Foundation Bylaws" msgid "Foundation Bylaws"
msgstr "" msgstr ""
#: www/templates/_partial/navbar.html:7 #: www/templates/_partial/navbar.html:10
msgid "AlmaLinux OS logo" msgid "AlmaLinux OS logo"
msgstr "AlmaLinux OS logo" msgstr "AlmaLinux OS logo"
#: www/templates/_partial/navbar.html:16 #: www/templates/_partial/navbar.html:19
msgid "Toggle navigation" msgid "Toggle navigation"
msgstr "Gezinmeyi aç/kapat" msgstr "Gezinmeyi aç/kapat"
#: www/templates/_partial/navbar.html:23 #: www/templates/_partial/navbar.html:26
msgid "Blog" msgid "Blog"
msgstr "Blog" msgstr "Blog"
#: www/templates/_partial/navbar.html:44 #: www/templates/_partial/navbar.html:47
msgid "Migrate from CentOS 8" msgid "Migrate from CentOS 8"
msgstr "CentOS 8'den geçiş yapın" msgstr "CentOS 8'den geçiş yapın"
#: www/templates/_partial/navbar.html:49 #: www/templates/_partial/navbar.html:52
msgid "Report Bugs" msgid "Report Bugs"
msgstr "Yazılım Hata Raporu" msgstr "Yazılım Hata Raporu"
#: www/templates/_partial/navbar.html:54 #: www/templates/_partial/navbar.html:70
msgid "Membership"
msgstr ""
#: www/templates/_partial/navbar.html:62
msgid "Shop" msgid "Shop"
msgstr "Mağaza" msgstr "Mağaza"
#: www/templates/_partial/navbar.html:70 #: www/templates/_partial/navbar.html:78
msgid "Language" msgid "Language"
msgstr "Dil" msgstr "Dil"
#: www/templates/_partial/navbar.html:91 #: www/templates/_partial/navbar.html:102
msgid "Translate" msgid "Translate"
msgstr "Çevir" 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" msgid "Download"
msgstr "Kurulum" msgstr "Kurulum"
@ -216,6 +224,191 @@ msgstr "Web varlığı"
msgid "Join AlmaLinux OS community chat" msgid "Join AlmaLinux OS community chat"
msgstr "AlmaLinux OS topluluk sohbetine katılınız" 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&reg; 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 <a href=\"%(pes_link)s\">Package "
"Evolution Service</a> (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 <a href=\"%(chat_link)s\">#migration</a> Mattermost "
"channel. You can find the tool code here: <a href=\"%(github_link)s\">"
"%(github_link)s</a> and you can add/edit/interact with package metadata at "
"<a href=\"%(pes_link)s\">%(pes_link)s</a>."
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: <ul> <li>AlmaLinux OS 8</li> <li>CentOS Stream 8</li> "
"<li>Oracle Linux 8</li> <li>Rocky Linux 8</li> </ul>"
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:6
#: www/templates/foundation/members/index.html:7 #: www/templates/foundation/members/index.html:7
#, fuzzy #, fuzzy

2
locale/tr/LC_MESSAGES/djangojs.po

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \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" "PO-Revision-Date: 2021-07-29 08:43+0000\n"
"Last-Translator: Oğuz Ersen <oguzersen@protonmail.com>\n" "Last-Translator: Oğuz Ersen <oguzersen@protonmail.com>\n"
"Language-Team: Turkish <https://hosted.weblate.org/projects/almalinux/" "Language-Team: Turkish <https://hosted.weblate.org/projects/almalinux/"

249
locale/uk/LC_MESSAGES/django.po

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \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" "PO-Revision-Date: 2021-07-29 08:43+0000\n"
"Last-Translator: gz83 <uioptt24@gmail.com>\n" "Last-Translator: gz83 <uioptt24@gmail.com>\n"
"Language-Team: Ukrainian <https://hosted.weblate.org/projects/almalinux/" "Language-Team: Ukrainian <https://hosted.weblate.org/projects/almalinux/"
@ -22,13 +22,17 @@ msgstr ""
"(n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" "(n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
"X-Generator: Weblate 4.7.2-dev\n" "X-Generator: Weblate 4.7.2-dev\n"
#: commons/templatetags/motd.py:20
msgid "Read more"
msgstr ""
#: www/templates/404.html:4 #: www/templates/404.html:4
msgid "404 Not Found - AlmaLinux OS" msgid "404 Not Found - AlmaLinux OS"
msgstr "404 Не знайдено - AlmaLinux OS" msgstr "404 Не знайдено - AlmaLinux OS"
#: www/templates/404.html:6 www/templates/blog/index.html:9 #: www/templates/404.html:6 www/templates/blog/index.html:9
#: www/templates/index.html:8 www/templates/layouts/base.html:21 #: www/templates/blog/post.html:9 www/templates/index.html:8
#: www/templates/subscribe_post.html:8 #: www/templates/layouts/base.html:21 www/templates/subscribe_post.html:8
msgid "" msgid ""
"An Open Source, community owned and governed, forever-free enterprise Linux " "An Open Source, community owned and governed, forever-free enterprise Linux "
"distribution." "distribution."
@ -43,11 +47,11 @@ msgid "Sorry, but the page you were trying to access could not be found."
msgstr "" 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" msgid "Resources"
msgstr "Ресурси" 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" msgid "Wiki"
msgstr "Вікіпедія" msgstr "Вікіпедія"
@ -63,85 +67,89 @@ msgstr "Репозиторій"
msgid "Downloads" msgid "Downloads"
msgstr "Завантаження" 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" msgid "Community"
msgstr "Спільнота" msgstr "Спільнота"
#: www/templates/_partial/footer.html:25 #: www/templates/_partial/footer.html:27
msgid "Forums" msgid "Forums"
msgstr "Форуми" msgstr "Форуми"
#: www/templates/_partial/footer.html:26 #: www/templates/_partial/footer.html:28
msgid "Chat" msgid "Chat"
msgstr "Чат" msgstr "Чат"
#: www/templates/_partial/footer.html:31 #: www/templates/_partial/footer.html:33
msgid "Legal" msgid "Legal"
msgstr "Угоди" msgstr "Угоди"
#: www/templates/_partial/footer.html:33 #: www/templates/_partial/footer.html:35
msgid "Legal Notice" msgid "Legal Notice"
msgstr "Юридичне повідомлення" 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" msgid "Privacy Policy"
msgstr "Політика конфіденційності" msgstr "Політика конфіденційності"
#: www/templates/_partial/footer.html:35 #: www/templates/_partial/footer.html:37
msgid "Terms of Service" msgid "Terms of Service"
msgstr "Умови надання послуг" msgstr "Умови надання послуг"
#: www/templates/_partial/footer.html:38 #: www/templates/_partial/footer.html:40
msgid "Licensing Policy" msgid "Licensing Policy"
msgstr "Політика ліцензування" msgstr "Політика ліцензування"
#: www/templates/_partial/footer.html:43 #: www/templates/_partial/footer.html:45
#, fuzzy #, fuzzy
#| msgid " Trademark Usage Policy" #| msgid " Trademark Usage Policy"
msgid "Trademark Usage Policy" msgid "Trademark Usage Policy"
msgstr " Політика використання торговельних марок" msgstr " Політика використання торговельних марок"
#: www/templates/_partial/footer.html:48 #: www/templates/_partial/footer.html:50
msgid "Foundation Bylaws" msgid "Foundation Bylaws"
msgstr "" msgstr ""
#: www/templates/_partial/navbar.html:7 #: www/templates/_partial/navbar.html:10
msgid "AlmaLinux OS logo" msgid "AlmaLinux OS logo"
msgstr "Логотип ОС AlmaLinux" msgstr "Логотип ОС AlmaLinux"
#: www/templates/_partial/navbar.html:16 #: www/templates/_partial/navbar.html:19
msgid "Toggle navigation" msgid "Toggle navigation"
msgstr "Перемкнути навігацію" msgstr "Перемкнути навігацію"
#: www/templates/_partial/navbar.html:23 #: www/templates/_partial/navbar.html:26
msgid "Blog" msgid "Blog"
msgstr "Блог" msgstr "Блог"
#: www/templates/_partial/navbar.html:44 #: www/templates/_partial/navbar.html:47
msgid "Migrate from CentOS 8" msgid "Migrate from CentOS 8"
msgstr "Мігрувати з CentOS 8" msgstr "Мігрувати з CentOS 8"
#: www/templates/_partial/navbar.html:49 #: www/templates/_partial/navbar.html:52
msgid "Report Bugs" msgid "Report Bugs"
msgstr "Повідомити про помилки" msgstr "Повідомити про помилки"
#: www/templates/_partial/navbar.html:54 #: www/templates/_partial/navbar.html:70
msgid "Membership"
msgstr ""
#: www/templates/_partial/navbar.html:62
msgid "Shop" msgid "Shop"
msgstr "Крамниця" msgstr "Крамниця"
#: www/templates/_partial/navbar.html:70 #: www/templates/_partial/navbar.html:78
msgid "Language" msgid "Language"
msgstr "Мова" msgstr "Мова"
#: www/templates/_partial/navbar.html:91 #: www/templates/_partial/navbar.html:102
msgid "Translate" msgid "Translate"
msgstr "" 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" msgid "Download"
msgstr "Завантажити" msgstr "Завантажити"
@ -220,6 +228,191 @@ msgstr "Присутність у мережі"
msgid "Join AlmaLinux OS community chat" msgid "Join AlmaLinux OS community chat"
msgstr "Приєднуйтесь до спільноти спільноти ОС AlmaLinux" 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&reg; 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 <a href=\"%(pes_link)s\">Package "
"Evolution Service</a> (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 <a href=\"%(chat_link)s\">#migration</a> Mattermost "
"channel. You can find the tool code here: <a href=\"%(github_link)s\">"
"%(github_link)s</a> and you can add/edit/interact with package metadata at "
"<a href=\"%(pes_link)s\">%(pes_link)s</a>."
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: <ul> <li>AlmaLinux OS 8</li> <li>CentOS Stream 8</li> "
"<li>Oracle Linux 8</li> <li>Rocky Linux 8</li> </ul>"
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:6
#: www/templates/foundation/members/index.html:7 #: www/templates/foundation/members/index.html:7
#, fuzzy #, fuzzy

2
locale/uk/LC_MESSAGES/djangojs.po

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \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" "PO-Revision-Date: 2021-05-27 11:33+0000\n"
"Last-Translator: Ruslan Pisarev <ruslan@rpisarev.org.ua>\n" "Last-Translator: Ruslan Pisarev <ruslan@rpisarev.org.ua>\n"
"Language-Team: Ukrainian <https://hosted.weblate.org/projects/almalinux/" "Language-Team: Ukrainian <https://hosted.weblate.org/projects/almalinux/"

249
locale/zh_Hans/LC_MESSAGES/django.po

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \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" "PO-Revision-Date: 2021-08-02 20:28+0000\n"
"Last-Translator: gz83 <uioptt24@gmail.com>\n" "Last-Translator: gz83 <uioptt24@gmail.com>\n"
"Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/" "Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/"
@ -19,13 +19,17 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.8-dev\n" "X-Generator: Weblate 4.8-dev\n"
#: commons/templatetags/motd.py:20
msgid "Read more"
msgstr ""
#: www/templates/404.html:4 #: www/templates/404.html:4
msgid "404 Not Found - AlmaLinux OS" msgid "404 Not Found - AlmaLinux OS"
msgstr "404 未找到 - AlmaLinux OS" msgstr "404 未找到 - AlmaLinux OS"
#: www/templates/404.html:6 www/templates/blog/index.html:9 #: www/templates/404.html:6 www/templates/blog/index.html:9
#: www/templates/index.html:8 www/templates/layouts/base.html:21 #: www/templates/blog/post.html:9 www/templates/index.html:8
#: www/templates/subscribe_post.html:8 #: www/templates/layouts/base.html:21 www/templates/subscribe_post.html:8
msgid "" msgid ""
"An Open Source, community owned and governed, forever-free enterprise Linux " "An Open Source, community owned and governed, forever-free enterprise Linux "
"distribution." "distribution."
@ -39,11 +43,11 @@ msgstr "404 未找到"
msgid "Sorry, but the page you were trying to access could not be found." msgid "Sorry, but the page you were trying to access could not be found."
msgstr "抱歉,无法找到您尝试访问的页面。" 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" msgid "Resources"
msgstr "资源" 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" msgid "Wiki"
msgstr "百科" msgstr "百科"
@ -59,85 +63,89 @@ msgstr "存储库"
msgid "Downloads" msgid "Downloads"
msgstr "下载" 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" msgid "Community"
msgstr "社区" msgstr "社区"
#: www/templates/_partial/footer.html:25 #: www/templates/_partial/footer.html:27
msgid "Forums" msgid "Forums"
msgstr "论坛" msgstr "论坛"
#: www/templates/_partial/footer.html:26 #: www/templates/_partial/footer.html:28
msgid "Chat" msgid "Chat"
msgstr "聊天" msgstr "聊天"
#: www/templates/_partial/footer.html:31 #: www/templates/_partial/footer.html:33
msgid "Legal" msgid "Legal"
msgstr "法律" msgstr "法律"
#: www/templates/_partial/footer.html:33 #: www/templates/_partial/footer.html:35
msgid "Legal Notice" msgid "Legal Notice"
msgstr "法律通知" 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" msgid "Privacy Policy"
msgstr "隐私政策" msgstr "隐私政策"
#: www/templates/_partial/footer.html:35 #: www/templates/_partial/footer.html:37
msgid "Terms of Service" msgid "Terms of Service"
msgstr "服务条款" msgstr "服务条款"
#: www/templates/_partial/footer.html:38 #: www/templates/_partial/footer.html:40
msgid "Licensing Policy" msgid "Licensing Policy"
msgstr "许可政策" msgstr "许可政策"
#: www/templates/_partial/footer.html:43 #: www/templates/_partial/footer.html:45
#, fuzzy #, fuzzy
#| msgid " Trademark Usage Policy" #| msgid " Trademark Usage Policy"
msgid "Trademark Usage Policy" msgid "Trademark Usage Policy"
msgstr " 商标使用政策" msgstr " 商标使用政策"
#: www/templates/_partial/footer.html:48 #: www/templates/_partial/footer.html:50
msgid "Foundation Bylaws" msgid "Foundation Bylaws"
msgstr "" msgstr ""
#: www/templates/_partial/navbar.html:7 #: www/templates/_partial/navbar.html:10
msgid "AlmaLinux OS logo" msgid "AlmaLinux OS logo"
msgstr "AlmaLinux OS 图标" msgstr "AlmaLinux OS 图标"
#: www/templates/_partial/navbar.html:16 #: www/templates/_partial/navbar.html:19
msgid "Toggle navigation" msgid "Toggle navigation"
msgstr "切换导航" msgstr "切换导航"
#: www/templates/_partial/navbar.html:23 #: www/templates/_partial/navbar.html:26
msgid "Blog" msgid "Blog"
msgstr "博客" msgstr "博客"
#: www/templates/_partial/navbar.html:44 #: www/templates/_partial/navbar.html:47
msgid "Migrate from CentOS 8" msgid "Migrate from CentOS 8"
msgstr "从 CentOS 8 迁移" msgstr "从 CentOS 8 迁移"
#: www/templates/_partial/navbar.html:49 #: www/templates/_partial/navbar.html:52
msgid "Report Bugs" msgid "Report Bugs"
msgstr "报告错误" msgstr "报告错误"
#: www/templates/_partial/navbar.html:54 #: www/templates/_partial/navbar.html:70
msgid "Membership"
msgstr ""
#: www/templates/_partial/navbar.html:62
msgid "Shop" msgid "Shop"
msgstr "商店" msgstr "商店"
#: www/templates/_partial/navbar.html:70 #: www/templates/_partial/navbar.html:78
msgid "Language" msgid "Language"
msgstr "语言" msgstr "语言"
#: www/templates/_partial/navbar.html:91 #: www/templates/_partial/navbar.html:102
msgid "Translate" msgid "Translate"
msgstr "" 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" msgid "Download"
msgstr "下载" msgstr "下载"
@ -214,6 +222,191 @@ msgstr "网络状态"
msgid "Join AlmaLinux OS community chat" msgid "Join AlmaLinux OS community chat"
msgstr "加入 AlmaLinux OS 社区聊天" 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&reg; 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 <a href=\"%(pes_link)s\">Package "
"Evolution Service</a> (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 <a href=\"%(chat_link)s\">#migration</a> Mattermost "
"channel. You can find the tool code here: <a href=\"%(github_link)s\">"
"%(github_link)s</a> and you can add/edit/interact with package metadata at "
"<a href=\"%(pes_link)s\">%(pes_link)s</a>."
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: <ul> <li>AlmaLinux OS 8</li> <li>CentOS Stream 8</li> "
"<li>Oracle Linux 8</li> <li>Rocky Linux 8</li> </ul>"
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:6
#: www/templates/foundation/members/index.html:7 #: www/templates/foundation/members/index.html:7
#, fuzzy #, fuzzy

2
locale/zh_Hans/LC_MESSAGES/djangojs.po

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \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" "PO-Revision-Date: 2021-08-02 20:28+0000\n"
"Last-Translator: gz83 <uioptt24@gmail.com>\n" "Last-Translator: gz83 <uioptt24@gmail.com>\n"
"Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/" "Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/"

3
www/admin.py

@ -1,4 +1,6 @@
from typing import List from typing import List
from django.contrib import admin
from django.contrib.admin.decorators import display
from .models import * from .models import *
@ -31,6 +33,7 @@ admin.site.register(FAQEntry)
admin.site.register(ShowcaseFeature) admin.site.register(ShowcaseFeature)
admin.site.register(GovernanceMember) admin.site.register(GovernanceMember)
admin.site.register(MediaElement, MediaElementAdmin) admin.site.register(MediaElement, MediaElementAdmin)
admin.site.register(MOTD)
# Admin special URLs (path, template, name, context) # Admin special URLs (path, template, name, context)
www_admin_urls: List = [ www_admin_urls: List = [

26
www/migrations/0009_motd.py

@ -0,0 +1,26 @@
# Generated by Django 3.2.7 on 2021-10-18 21:08
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('www', '0008_auto_20211004_2033'),
]
operations = [
migrations.CreateModel(
name='MOTD',
fields=[
('id', models.AutoField(primary_key=True, serialize=False)),
('published', models.BooleanField(default=True, help_text='Uncheck to hide')),
('text', models.TextField(help_text='Maximum 160 characters', max_length=160)),
('link', models.CharField(blank=True, max_length=255, null=True)),
],
options={
'verbose_name': 'MOTD',
'verbose_name_plural': 'MOTDs',
},
),
]

33
www/models.py

@ -1,7 +1,3 @@
import uuid
from django.contrib import admin
from django.contrib.admin.decorators import display
from django.core.validators import FileExtensionValidator from django.core.validators import FileExtensionValidator
from django.db import models from django.db import models
from django.utils.text import slugify from django.utils.text import slugify
@ -389,3 +385,32 @@ class MediaElement(models.Model):
def __str__(self) -> str: def __str__(self) -> str:
return self.file.name 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

2
www/templates/_partial/footer.html

@ -15,6 +15,8 @@
<li><a href="https://bugs.almalinux.org/">{% translate 'Bugs' %}</a></li> <li><a href="https://bugs.almalinux.org/">{% translate 'Bugs' %}</a></li>
<li><a href="https://repo.almalinux.org/">{% translate 'Repository' %}</a></li> <li><a href="https://repo.almalinux.org/">{% translate 'Repository' %}</a></li>
<li><a href="https://mirrors.almalinux.org/isos.html">{% translate 'Downloads' %}</a></li> <li><a href="https://mirrors.almalinux.org/isos.html">{% translate 'Downloads' %}</a></li>
<li><a href="{% url 'foundation_members' %}">{% translate 'Membership' %}</a></li>
<li><a href="{% url 'elevate' %}">{% translate 'ELevate' %}</a></li>
</ul> </ul>
</div> </div>
<div class="col-6 col-md"> <div class="col-6 col-md">

25
www/templates/_partial/navbar.html

@ -1,7 +1,10 @@
{% load static %} {% load static %}
{% load i18n %} {% load i18n %}
{% load i18n_utils %} {% load i18n_utils %}
<nav class="al-primary-navbar navbar sticky-top navbar-expand-lg navbar-dark"> {% load motd %}
{% motd as current_motd %}
<nav id="al-primary-navbar"
class="al-primary-navbar navbar sticky-top navbar-expand-lg navbar-dark flex-column {% if current_motd %}with-motd{% endif %}">
<div class="container"> <div class="container">
<a class="navbar-brand" href="{% url 'index' %}"> <a class="navbar-brand" href="{% url 'index' %}">
<img src="{% static 'images/logo.svg' %}" alt="{% translate 'AlmaLinux OS logo' %}" width="165.93" <img src="{% static 'images/logo.svg' %}" alt="{% translate 'AlmaLinux OS logo' %}" width="165.93"
@ -54,6 +57,11 @@
{% translate 'Membership' %} {% translate 'Membership' %}
</a> </a>
</li> </li>
<li>
<a class="dropdown-item" href="{% url 'elevate' %}">
{% translate 'ELevate' %}
</a>
</li>
</ul> </ul>
</li> </li>
<li class="nav-item"> <li class="nav-item">
@ -84,9 +92,12 @@
</a> </a>
</li> </li>
{% endfor %} {% endfor %}
<li><hr class="dropdown-divider"></li> <li>
<hr class="dropdown-divider">
</li>
<li class="al-translate-callout"> <li class="al-translate-callout">
<a class="dropdown-item al-language-link" href="https://hosted.weblate.org/engage/almalinux/"> <a class="dropdown-item al-language-link"
href="https://hosted.weblate.org/engage/almalinux/">
<i class="bi bi-pencil"></i> <i class="bi bi-pencil"></i>
{% translate 'Translate' %} {% translate 'Translate' %}
</a> </a>
@ -102,4 +113,12 @@
</ul> </ul>
</div> </div>
</div> </div>
{% if current_motd %}
<div id="al-motd" data-nosnippet>
<div class="container">
<i class="bi bi-info-circle"></i>
<div class="text">{{ current_motd }}</div>
</div>
</div>
{% endif %}
</nav> </nav>

262
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 %}
<section class="al-page-elevate-index">
<div class="container">
<div class="row al-py-lg align-items-center">
<div class="col-12 col-lg-4 al-py-lg pe-md-3">
<h3 class="fw-bold pb-3">
{% translate 'ELevate Your Distribution' %}
</h3>
<div class="al-subtle-links pb-2">
<p>
{% blocktranslate trimmed %}
ELevate enables migration between major versions of RHEL&reg; derivatives.
Easily go from CentOS 7.x to any 8.x of your choice
{% endblocktranslate %}
</p>
</div>
<div>
<a href="https://wiki.almalinux.org/elevate"
class="btn al-cta-learn-how btn-md px-4 me-2">
<i class="bi bi-arrow-up-right-square pe-1"></i>
{% translate 'Get Started' %}
</a>
<a href="https://chat.almalinux.org/almalinux/channels/migration"
class="btn al-cta-discuss btn-md px-4">
<i class="bi bi-chat-left-dots pe-1"></i>
{% translate 'Discuss' %}
</a>
</div>
</div>
<div class="col-12 col-lg-8">
<div class="ratio ratio-16x9">
<iframe
src="https://www.youtube-nocookie.com/embed/WJpa1E6jnok"
title="AlmaLinux OS ELevate" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
</div>
</div>
</div>
</div>
<div class="container pt-2">
<h6 class="pt-5 pb-2 mb-2 text-uppercase border-bottom">{% translate 'About' %}</h6>
<div class="row row-cols-1 row-cols-sm-1 row-cols-md-3 g-4 py-2 py-md-3">
<div class="col d-flex align-items-stretch">
<div>
<h4 class="fw-bold mb-0 pb-3">
{% translate 'Major Version Upgrades' %}
</h4>
<p>
{% 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 %}
</p>
</div>
</div>
<div class="col d-flex align-items-stretch">
<div>
<h4 class="fw-bold mb-0 pb-3">
{% translate 'Package Evolution Service' %}
</h4>
<p>
{% blocktranslate trimmed with pes_link="https://pes.almalinux.org" %}
The beating heart of ELevate is the
<a href="{{ pes_link }}">Package Evolution Service</a>
(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 %}
</p>
</div>
</div>
<div class="col d-flex align-items-stretch">
<div>
<h4 class="fw-bold mb-0 pb-3">
{% translate 'Community-wide Project' %}
</h4>
<p>
{% 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 %}
</p>
</div>
</div>
</div>
</div>
<div class="container pt-2 faq-container">
<h6 class="pt-5 pb-2 mb-2 text-uppercase border-bottom">{% translate 'FAQ' %}</h6>
<div class="al-faq-slim">
<!--Item-->
<div>
<div class="question">
{% blocktranslate trimmed %}
What is ELevate?
{% endblocktranslate %}
</div>
<div class="answer">
{% 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 %}
</div>
</div>
<!--Item-->
<div>
<div class="question">
{% blocktranslate trimmed %}
This looks awesome. How can I contribute?
{% endblocktranslate %}
</div>
<div class="answer">
{% 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 <a href="{{ chat_link }}">#migration</a> Mattermost channel. You can find
the tool code here:
<a href="{{ github_link }}">{{ github_link }}</a> and you can add/edit/interact
with package metadata at <a href="{{ pes_link }}">{{ pes_link }}</a>.
{% endblocktranslate %}
</div>
</div>
<!--Item-->
<div>
<div class="question">
{% blocktranslate trimmed %}
Is this ready for production?
{% endblocktranslate %}
</div>
<div class="answer">
{% 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 %}
</div>
</div>
<!--Item-->
<div>
<div class="question">
{% blocktranslate trimmed %}
What operating systems does ELevate support?
{% endblocktranslate %}
</div>
<div class="answer">
{% blocktranslate trimmed %}
Currently ELevate provides Leapp data for migration from CentOS 7 to the following OS:
<ul>
<li>AlmaLinux OS 8</li>
<li>CentOS Stream 8</li>
<li>Oracle Linux 8</li>
<li>Rocky Linux 8</li>
</ul>
{% endblocktranslate %}
</div>
</div>
<!--Item-->
<div>
<div class="question">
{% blocktranslate trimmed %}
Will migration be "in-place?"
{% endblocktranslate %}
</div>
<div class="answer">
{% blocktranslate trimmed %}
Yes. All your data, applications and settings will be kept.
{% endblocktranslate %}
</div>
</div>
<!--Item-->
<div>
<div class="question">
{% blocktranslate trimmed %}
Is this live or does it require a reboot?
{% endblocktranslate %}
</div>
<div class="answer">
{% blocktranslate trimmed %}
Migrations will require your system to reboot twice.
{% endblocktranslate %}
</div>
</div>
<!--Item-->
<div>
<div class="question">
{% blocktranslate trimmed %}
What does the Package Evolution Service do?
{% endblocktranslate %}
</div>
<div class="answer">
{% 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 %}
</div>
</div>
<!--Item-->
<div>
<div class="question">
{% blocktranslate trimmed %}
Red Hat offers a data set which is non-freely licensed. Are you using this same data set?
{% endblocktranslate %}
</div>
<div class="answer">
{% 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 %}
</div>
</div>
<!--Item-->
<div>
<div class="question">
{% blocktranslate trimmed %}
What license is your metadata under?
{% endblocktranslate %}
</div>
<div class="answer">
{% blocktranslate trimmed %}
The metadata is provided under an Apache License.
{% endblocktranslate %}
</div>
</div>
<!--Item-->
<div>
<div class="question">
{% blocktranslate trimmed %}
Why are you supporting migration to other distributions?
{% endblocktranslate %}
</div>
<div class="answer">
{% 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 %}
</div>
</div>
</div>
</div>
</section>
{% endblock %}

1
www/urls.py

@ -15,4 +15,5 @@ urlpatterns = [
path('foundation/members/', views.foundation_members, name='foundation_members'), path('foundation/members/', views.foundation_members, name='foundation_members'),
path('feed/', BlogPostFeed(), name='feed'), path('feed/', BlogPostFeed(), name='feed'),
path('media-link/<int:media_id>', views.media_element, name='media_element'), path('media-link/<int:media_id>', views.media_element, name='media_element'),
path('elevate', views.elevate, name='elevate'),
] ]

10
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 django.views.decorators.http import require_POST, require_safe
from almalinux.settings import HUBSPOT_APIKEY, HUBSPOT_SUB_ID from almalinux.settings import HUBSPOT_APIKEY, HUBSPOT_SUB_ID
from .models import Backer, PressArticle, BlogPost, Page, FAQEntry, CommercialSupportVendor, ShowcaseFeature, \ from .models import Backer, PressArticle, BlogPost, Page, FAQEntry, CommercialSupportVendor, GovernanceMember, \
GovernanceMember, MediaElement MediaElement
# Public views # Public views
@ -203,5 +203,11 @@ def media_element(_: HttpRequest, media_id: int) -> HttpResponse:
return redirect(element.file.url) 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: def not_found(request: HttpRequest, exception: Exception) -> HttpResponse:
return render(request, '404.html', status=404) return render(request, '404.html', status=404)

Loading…
Cancel
Save