diff --git a/.gitignore b/.gitignore index 737af51..025467f 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,6 @@ +# Exclude PNG images. */PNG/* + +# Exclude backup files. +*/PO/*.po~ +*/PO/*.pot~ diff --git a/rnotes/Makefile b/rnotes/Makefile new file mode 100644 index 0000000..a904bf9 --- /dev/null +++ b/rnotes/Makefile @@ -0,0 +1,154 @@ +############################################################################### +# +# The CentOS Rolling Notes Makefile +# Copyright (C) 2019 Alain Reguera Delgado +# +# This program is free software: you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by the Free +# Software Foundation, either version 3 of the License, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for +# more details. +# +# You should have received a copy of the GNU General Public License along +# with this program. If not, see . +# +############################################################################### + +#============================================================================== +# Configuration +#============================================================================== +lang = en_US +srcdir = SVG +prefix = PNG +datarootdir = $(prefix)/$(lang) +localedir = PO + +#============================================================================== +# Requirements +#============================================================================== +all: \ + $(localedir)/$(lang).pot \ + $(localedir)/$(lang).po \ + $(datarootdir)/01-centos-welcome.png \ + $(datarootdir)/02-centos-sig-core.png \ + $(datarootdir)/03-centos-sig-altarch.png \ + $(datarootdir)/04-centos-sig-artwork.png \ + $(datarootdir)/05-centos-sig-atomic.png \ + $(datarootdir)/06-centos-sig-cloud.png \ + $(datarootdir)/07-centos-sig-cloudinstance.png \ + $(datarootdir)/08-centos-sig-cm.png \ + $(datarootdir)/09-centos-sig-nfv.png \ + $(datarootdir)/10-centos-sig-optools.png \ + $(datarootdir)/11-centos-sig-paas.png \ + $(datarootdir)/12-centos-sig-promo.png \ + $(datarootdir)/13-centos-sig-publicci.png \ + $(datarootdir)/14-centos-sig-sc.png \ + $(datarootdir)/15-centos-sig-storage.png \ + $(datarootdir)/16-centos-sig-virt.png + +#====================================================================== +# Translations +#====================================================================== +$(localedir)/$(lang).pot: $(srcdir)/*.svg + xml2po -o /tmp/$(lang).pot $(srcdir)/*.svg + if [[ ! -f $(localedir)/$(lang).pot ]];then \ + msginit -i /tmp/$(lang).pot -o $(localedir)/$(lang).pot -l $(lang) --no-translator --width=80; \ + else \ + msgmerge -U $(localedir)/$(lang).pot /tmp/$(lang).pot; \ + fi +$(localedir)/$(lang).po: $(localedir)/$(lang).pot + if [[ ! -f $(localedir)/$(lang).po ]];then \ + msginit -i $(localedir)/$(lang).pot -o $(localedir)/$(lang).po -l $(lang) --no-translator --width=80; \ + else \ + msgmerge -U $(localedir)/$(lang).po $(localedir)/$(lang).pot; \ + fi + +#====================================================================== +# Images +#====================================================================== +$(datarootdir): + mkdir -p $(datarootdir) +$(datarootdir)/01-centos-welcome.png: $(datarootdir) $(localedir)/$(lang).po $(srcdir)/01-centos-welcome.svg + xmllint -noout $(srcdir)/01-centos-welcome.svg + xml2po -p $(localedir)/$(lang).po -o /tmp/01-centos-welcome.svg $(srcdir)/01-centos-welcome.svg + inkscape --export-png=$(datarootdir)/01-centos-welcome.png /tmp/01-centos-welcome.svg + rm /tmp/01-centos-welcome.svg +$(datarootdir)/02-centos-sig-core.png: $(datarootdir) $(localedir)/$(lang).po $(srcdir)/02-centos-sig-core.svg + xmllint -noout $(srcdir)/02-centos-sig-core.svg + xml2po -p $(localedir)/$(lang).po -o /tmp/02-centos-sig-core.svg $(srcdir)/02-centos-sig-core.svg + inkscape --export-png=$(datarootdir)/02-centos-sig-core.png /tmp/02-centos-sig-core.svg + rm /tmp/02-centos-sig-core.svg +$(datarootdir)/03-centos-sig-altarch.png: $(datarootdir) $(localedir)/$(lang).po $(srcdir)/03-centos-sig-altarch.svg + xmllint -noout $(srcdir)/03-centos-sig-altarch.svg + xml2po -p $(localedir)/$(lang).po -o /tmp/03-centos-sig-altarch.svg $(srcdir)/03-centos-sig-altarch.svg + inkscape --export-png=$(datarootdir)/03-centos-sig-altarch.png /tmp/03-centos-sig-altarch.svg + rm /tmp/03-centos-sig-altarch.svg +$(datarootdir)/04-centos-sig-artwork.png: $(datarootdir) $(localedir)/$(lang).po $(srcdir)/04-centos-sig-artwork.svg + xmllint -noout $(srcdir)/04-centos-sig-artwork.svg + xml2po -p $(localedir)/$(lang).po -o /tmp/04-centos-sig-artwork.svg $(srcdir)/04-centos-sig-artwork.svg + inkscape --export-png=$(datarootdir)/04-centos-sig-artwork.png /tmp/04-centos-sig-artwork.svg + rm /tmp/04-centos-sig-artwork.svg +$(datarootdir)/05-centos-sig-atomic.png: $(datarootdir) $(localedir)/$(lang).po $(srcdir)/05-centos-sig-atomic.svg + xmllint -noout $(srcdir)/05-centos-sig-atomic.svg + xml2po -p $(localedir)/$(lang).po -o /tmp/05-centos-sig-atomic.svg $(srcdir)/05-centos-sig-atomic.svg + inkscape --export-png=$(datarootdir)/05-centos-sig-atomic.png /tmp/05-centos-sig-atomic.svg + rm /tmp/05-centos-sig-atomic.svg +$(datarootdir)/06-centos-sig-cloud.png: $(datarootdir) $(localedir)/$(lang).po $(srcdir)/06-centos-sig-cloud.svg + xmllint -noout $(srcdir)/06-centos-sig-cloud.svg + xml2po -p $(localedir)/$(lang).po -o /tmp/06-centos-sig-cloud.svg $(srcdir)/06-centos-sig-cloud.svg + inkscape --export-png=$(datarootdir)/06-centos-sig-cloud.png /tmp/06-centos-sig-cloud.svg + rm /tmp/06-centos-sig-cloud.svg +$(datarootdir)/07-centos-sig-cloudinstance.png: $(datarootdir) $(localedir)/$(lang).po $(srcdir)/07-centos-sig-cloudinstance.svg + xmllint -noout $(srcdir)/07-centos-sig-cloudinstance.svg + xml2po -p $(localedir)/$(lang).po -o /tmp/07-centos-sig-cloudinstance.svg $(srcdir)/07-centos-sig-cloudinstance.svg + inkscape --export-png=$(datarootdir)/07-centos-sig-cloudinstance.png /tmp/07-centos-sig-cloudinstance.svg + rm /tmp/07-centos-sig-cloudinstance.svg +$(datarootdir)/08-centos-sig-cm.png: $(datarootdir) $(localedir)/$(lang).po $(srcdir)/08-centos-sig-cm.svg + xmllint -noout $(srcdir)/08-centos-sig-cm.svg + xml2po -p $(localedir)/$(lang).po -o /tmp/08-centos-sig-cm.svg $(srcdir)/08-centos-sig-cm.svg + inkscape --export-png=$(datarootdir)/08-centos-sig-cm.png /tmp/08-centos-sig-cm.svg + rm /tmp/08-centos-sig-cm.svg +$(datarootdir)/09-centos-sig-nfv.png: $(datarootdir) $(localedir)/$(lang).po $(srcdir)/09-centos-sig-nfv.svg + xmllint -noout $(srcdir)/09-centos-sig-nfv.svg + xml2po -p $(localedir)/$(lang).po -o /tmp/09-centos-sig-nfv.svg $(srcdir)/09-centos-sig-nfv.svg + inkscape --export-png=$(datarootdir)/09-centos-sig-nfv.png /tmp/09-centos-sig-nfv.svg + rm /tmp/09-centos-sig-nfv.svg +$(datarootdir)/10-centos-sig-optools.png: $(datarootdir) $(localedir)/$(lang).po $(srcdir)/10-centos-sig-optools.svg + xmllint -noout $(srcdir)/10-centos-sig-optools.svg + xml2po -p $(localedir)/$(lang).po -o /tmp/10-centos-sig-optools.svg $(srcdir)/10-centos-sig-optools.svg + inkscape --export-png=$(datarootdir)/10-centos-sig-optools.png /tmp/10-centos-sig-optools.svg + rm /tmp/10-centos-sig-optools.svg +$(datarootdir)/11-centos-sig-paas.png: $(datarootdir) $(localedir)/$(lang).po $(srcdir)/11-centos-sig-paas.svg + xmllint -noout $(srcdir)/11-centos-sig-paas.svg + xml2po -p $(localedir)/$(lang).po -o /tmp/11-centos-sig-paas.svg $(srcdir)/11-centos-sig-paas.svg + inkscape --export-png=$(datarootdir)/11-centos-sig-paas.png /tmp/11-centos-sig-paas.svg + rm /tmp/11-centos-sig-paas.svg +$(datarootdir)/12-centos-sig-promo.png: $(datarootdir) $(localedir)/$(lang).po $(srcdir)/12-centos-sig-promo.svg + xmllint -noout $(srcdir)/12-centos-sig-promo.svg + xml2po -p $(localedir)/$(lang).po -o /tmp/12-centos-sig-promo.svg $(srcdir)/12-centos-sig-promo.svg + inkscape --export-png=$(datarootdir)/12-centos-sig-promo.png /tmp/12-centos-sig-promo.svg + rm /tmp/12-centos-sig-promo.svg +$(datarootdir)/13-centos-sig-publicci.png: $(datarootdir) $(localedir)/$(lang).po $(srcdir)/13-centos-sig-publicci.svg + xmllint -noout $(srcdir)/13-centos-sig-publicci.svg + xml2po -p $(localedir)/$(lang).po -o /tmp/13-centos-sig-publicci.svg $(srcdir)/13-centos-sig-publicci.svg + inkscape --export-png=$(datarootdir)/13-centos-sig-publicci.png /tmp/13-centos-sig-publicci.svg + rm /tmp/13-centos-sig-publicci.svg +$(datarootdir)/14-centos-sig-sc.png: $(datarootdir) $(localedir)/$(lang).po $(srcdir)/14-centos-sig-sc.svg + xmllint -noout $(srcdir)/14-centos-sig-sc.svg + xml2po -p $(localedir)/$(lang).po -o /tmp/14-centos-sig-sc.svg $(srcdir)/14-centos-sig-sc.svg + inkscape --export-png=$(datarootdir)/14-centos-sig-sc.png /tmp/14-centos-sig-sc.svg + rm /tmp/14-centos-sig-sc.svg +$(datarootdir)/15-centos-sig-storage.png: $(datarootdir) $(localedir)/$(lang).po $(srcdir)/15-centos-sig-storage.svg + xmllint -noout $(srcdir)/15-centos-sig-storage.svg + xml2po -p $(localedir)/$(lang).po -o /tmp/15-centos-sig-storage.svg $(srcdir)/15-centos-sig-storage.svg + inkscape --export-png=$(datarootdir)/15-centos-sig-storage.png /tmp/15-centos-sig-storage.svg + rm /tmp/15-centos-sig-storage.svg +$(datarootdir)/16-centos-sig-virt.png: $(datarootdir) $(localedir)/$(lang).po $(srcdir)/16-centos-sig-virt.svg + xmllint -noout $(srcdir)/16-centos-sig-virt.svg + xml2po -p $(localedir)/$(lang).po -o /tmp/16-centos-sig-virt.svg $(srcdir)/16-centos-sig-virt.svg + inkscape --export-png=$(datarootdir)/16-centos-sig-virt.png /tmp/16-centos-sig-virt.svg + rm /tmp/16-centos-sig-virt.svg diff --git a/rnotes/PO/en.po b/rnotes/PO/en.po new file mode 100644 index 0000000..3d99285 --- /dev/null +++ b/rnotes/PO/en.po @@ -0,0 +1,279 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-04-21 18:18-0300\n" +"PO-Revision-Date: 2019-04-21 18:18-0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: SVG/16-centos-sig-virt.svg:304(format) +#: SVG/15-centos-sig-storage.svg:293(format) +#: SVG/14-centos-sig-sc.svg:327(format) +#: SVG/13-centos-sig-publicci.svg:304(format) +#: SVG/12-centos-sig-promo.svg:304(format) +#: SVG/11-centos-sig-paas.svg:304(format) +#: SVG/10-centos-sig-optools.svg:316(format) +#: SVG/09-centos-sig-nfv.svg:304(format) SVG/08-centos-sig-cm.svg:304(format) +#: SVG/07-centos-sig-cloudinstance.svg:304(format) +#: SVG/06-centos-sig-cloud.svg:304(format) +#: SVG/05-centos-sig-atomic.svg:309(format) +#: SVG/04-centos-sig-artwork.svg:339(format) +#: SVG/03-centos-sig-altarch.svg:268(format) +#: SVG/02-centos-sig-core.svg:305(format) SVG/01-centos-welcome.svg:875(format) +msgid "image/svg+xml" +msgstr "image/svg+xml" + +#: SVG/16-centos-sig-virt.svg:368(tspan) +#, no-wrap +msgid "CentOS Virt SIG" +msgstr "CentOS Virt SIG" + +#: SVG/16-centos-sig-virt.svg:383(flowPara) +#, no-wrap +msgid "Delivers a user consumable full stack for virtualization technologies that want to work with the SIG." +msgstr "Delivers a user consumable full stack for virtualization technologies that want to work with the SIG." + +#: SVG/16-centos-sig-virt.svg:393(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/Virtualization" +msgstr "https://wiki.centos.org/SpecialInterestGroup/Virtualization" + +#: SVG/15-centos-sig-storage.svg:374(tspan) +#, no-wrap +msgid "CentOS Storage SIG" +msgstr "CentOS Storage SIG" + +#: SVG/15-centos-sig-storage.svg:389(flowPara) +#, no-wrap +msgid "Ensures that all Open Source storage options seeking to utilize CentOS as a delivery platform have a voice in packaging, orchestration, deployment, and related work. " +msgstr "Ensures that all Open Source storage options seeking to utilize CentOS as a delivery platform have a voice in packaging, orchestration, deployment, and related work. " + +#: SVG/15-centos-sig-storage.svg:399(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/Storage" +msgstr "https://wiki.centos.org/SpecialInterestGroup/Storage" + +#: SVG/14-centos-sig-sc.svg:512(tspan) +#, no-wrap +msgid "CentOS Software Collection SIG" +msgstr "CentOS Software Collection SIG" + +#: SVG/14-centos-sig-sc.svg:527(flowPara) +#, no-wrap +msgid "Provides an upstream development area for various software collections and related tools. Developers can build on and extend existing SCLs, so they don't need to re-invent the wheel or take responsibility for packaging unnecessary dependencies. " +msgstr "Provides an upstream development area for various software collections and related tools. Developers can build on and extend existing SCLs, so they don't need to re-invent the wheel or take responsibility for packaging unnecessary dependencies. " + +#: SVG/14-centos-sig-sc.svg:537(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/SCLo" +msgstr "https://wiki.centos.org/SpecialInterestGroup/SCLo" + +#: SVG/13-centos-sig-publicci.svg:374(tspan) +#, no-wrap +msgid "CentOS Public CI SIG" +msgstr "CentOS Public CI SIG" + +#: SVG/13-centos-sig-publicci.svg:389(flowPara) +#, no-wrap +msgid "Provides a public testing and proving infrastructure." +msgstr "Provides a public testing and proving infrastructure." + +#: SVG/13-centos-sig-publicci.svg:399(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/PublicCI" +msgstr "https://wiki.centos.org/SpecialInterestGroup/PublicCI" + +#: SVG/12-centos-sig-promo.svg:364(tspan) +#, no-wrap +msgid "CentOS Promotion SIG" +msgstr "CentOS Promotion SIG" + +#: SVG/12-centos-sig-promo.svg:379(flowPara) +#, no-wrap +msgid "Provides promotion, and consistent messaging, of CentOS, both at physical events and online. " +msgstr "Provides promotion, and consistent messaging, of CentOS, both at physical events and online. " + +#: SVG/12-centos-sig-promo.svg:389(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/Promo" +msgstr "https://wiki.centos.org/SpecialInterestGroup/Promo" + +#: SVG/11-centos-sig-paas.svg:368(tspan) +#, no-wrap +msgid "CentOS PaaS SIG" +msgstr "CentOS PaaS SIG" + +#: SVG/11-centos-sig-paas.svg:383(flowPara) +#, no-wrap +msgid "Delivers multiple PaaS Stacks that are built, tested and delivered into the CentOS Ecosystem for end user consumption, run as a service and also provided in various formats (rpms, containers, images, etc.) for other efforts in the CentOS Ecosystem, that can derive value from this content." +msgstr "Delivers multiple PaaS Stacks that are built, tested and delivered into the CentOS Ecosystem for end user consumption, run as a service and also provided in various formats (rpms, containers, images, etc.) for other efforts in the CentOS Ecosystem, that can derive value from this content." + +#: SVG/11-centos-sig-paas.svg:397(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/PaaS" +msgstr "https://wiki.centos.org/SpecialInterestGroup/PaaS" + +#: SVG/10-centos-sig-optools.svg:501(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/OpsTools" +msgstr "https://wiki.centos.org/SpecialInterestGroup/OpsTools" + +#: SVG/10-centos-sig-optools.svg:512(tspan) +#, no-wrap +msgid "CentOS OpsTools SIG" +msgstr "CentOS OpsTools SIG" + +#: SVG/10-centos-sig-optools.svg:527(flowPara) +#, no-wrap +msgid "Provides tools for operators, system administrators, devops and developers doing infrastructure engineering on content based on CentOS Linux. " +msgstr "Provides tools for operators, system administrators, devops and developers doing infrastructure engineering on content based on CentOS Linux. " + +#: SVG/09-centos-sig-nfv.svg:368(tspan) +#, no-wrap +msgid "CentOS NFV SIG" +msgstr "CentOS NFV SIG" + +#: SVG/09-centos-sig-nfv.svg:383(flowPara) +#, no-wrap +msgid "Provides a CentOS-based stack that will serve as a platform for the deployment and testing of virtual network functions (VNFs) and NFV component packages on compliant CentOS platform. " +msgstr "Provides a CentOS-based stack that will serve as a platform for the deployment and testing of virtual network functions (VNFs) and NFV component packages on compliant CentOS platform. " + +#: SVG/09-centos-sig-nfv.svg:393(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/NFV" +msgstr "https://wiki.centos.org/SpecialInterestGroup/NFV" + +#: SVG/08-centos-sig-cm.svg:374(tspan) +#, no-wrap +msgid "CentOS Config Management SIG" +msgstr "CentOS Config Management SIG" + +#: SVG/08-centos-sig-cm.svg:389(flowPara) +#, no-wrap +msgid "Aims to bridge the gap between Config Management tools Power users and traditional users by producing and release RPM packages of several Configuration Management and Orchestration tools. " +msgstr "Aims to bridge the gap between Config Management tools Power users and traditional users by producing and release RPM packages of several Configuration Management and Orchestration tools. " + +#: SVG/08-centos-sig-cm.svg:399(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/ConfigManagementSIG" +msgstr "https://wiki.centos.org/SpecialInterestGroup/ConfigManagementSIG" + +#: SVG/07-centos-sig-cloudinstance.svg:371(tspan) +#, no-wrap +msgid "CentOS Cloud Instance SIG" +msgstr "CentOS Cloud Instance SIG" + +#: SVG/07-centos-sig-cloudinstance.svg:386(flowPara) +#, no-wrap +msgid "Works on the CentOS Linux cloud instances, either on or off premise or in third party Vendor establishments." +msgstr "Works on the CentOS Linux cloud instances, either on or off premise or in third party Vendor establishments." + +#: SVG/07-centos-sig-cloudinstance.svg:396(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/CloudInstance" +msgstr "https://wiki.centos.org/SpecialInterestGroup/CloudInstance" + +#: SVG/06-centos-sig-cloud.svg:371(tspan) +#, no-wrap +msgid "CentOS Cloud SIG" +msgstr "CentOS Cloud SIG" + +#: SVG/06-centos-sig-cloud.svg:386(flowPara) +#, no-wrap +msgid "Works on packaging and maintaining different FOSS based Private cloud infrastructure applications that one can install and run natively on CentOS." +msgstr "Works on packaging and maintaining different FOSS based Private cloud infrastructure applications that one can install and run natively on CentOS." + +#: SVG/06-centos-sig-cloud.svg:396(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/Cloud" +msgstr "https://wiki.centos.org/SpecialInterestGroup/Cloud" + +#: SVG/05-centos-sig-atomic.svg:373(tspan) +#, no-wrap +msgid "CentOS Atomic SIG" +msgstr "CentOS Atomic SIG" + +#: SVG/05-centos-sig-atomic.svg:388(flowPara) +#, no-wrap +msgid "Works on a CentOS-based Atomic Host image that provides a minimal image using rpm-ostree, as well as tools and documentation for users to create their own CentOS/Atomic images with custom package sets. " +msgstr "Works on a CentOS-based Atomic Host image that provides a minimal image using rpm-ostree, as well as tools and documentation for users to create their own CentOS/Atomic images with custom package sets. " + +#: SVG/05-centos-sig-atomic.svg:398(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/Atomic" +msgstr "https://wiki.centos.org/SpecialInterestGroup/Atomic" + +#: SVG/04-centos-sig-artwork.svg:380(tspan) +#, no-wrap +msgid "CentOS Artwork SIG" +msgstr "CentOS Artwork SIG" + +#: SVG/04-centos-sig-artwork.svg:395(flowPara) +#, no-wrap +msgid "Exists to produce The CentOS Project Visual Identity. The group is focused in producing high quality artwork for each visual medium The CentOS Project manifests its existence on reinforcing the visual connection between them all to reach the highest visual recognition." +msgstr "Exists to produce The CentOS Project Visual Identity. The group is focused in producing high quality artwork for each visual medium The CentOS Project manifests its existence on reinforcing the visual connection between them all to reach the highest visual recognition." + +#: SVG/04-centos-sig-artwork.svg:405(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/Artwork" +msgstr "https://wiki.centos.org/SpecialInterestGroup/Artwork" + +#: SVG/03-centos-sig-altarch.svg:337(tspan) +#, no-wrap +msgid "CentOS Alternate Architectures SIG" +msgstr "CentOS Alternate Architectures SIG" + +#: SVG/03-centos-sig-altarch.svg:352(flowPara) +#, no-wrap +msgid "Extends usability base beyond basic architectures (x86_64), including ARM 64-bit and 32-bit, x86 32-bit, Power 8, and so forth." +msgstr "Extends usability base beyond basic architectures (x86_64), including ARM 64-bit and 32-bit, x86 32-bit, Power 8, and so forth." + +#: SVG/03-centos-sig-altarch.svg:362(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/AltArch" +msgstr "https://wiki.centos.org/SpecialInterestGroup/AltArch" + +#: SVG/02-centos-sig-core.svg:380(tspan) +#, no-wrap +msgid "CentOS Core SIG" +msgstr "CentOS Core SIG" + +#: SVG/02-centos-sig-core.svg:395(flowPara) +#, no-wrap +msgid "Produces the CentOS Linux distribution. Some of the actions this group is focused on include to build, sign and release all CentOS Linux packages, as well as create and release all official CentOS Linux ISOs." +msgstr "Produces the CentOS Linux distribution. Some of the actions this group is focused on include to build, sign and release all CentOS Linux packages, as well as create and release all official CentOS Linux ISOs." + +#: SVG/02-centos-sig-core.svg:405(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/Core" +msgstr "https://wiki.centos.org/SpecialInterestGroup/Core" + +#: SVG/01-centos-welcome.svg:1062(tspan) +#, no-wrap +msgid "CentOS" +msgstr "CentOS" + +#: SVG/01-centos-welcome.svg:1060(tspan) +#, no-wrap +msgid "Welcome to Linux" +msgstr "Welcome to Linux" + +#: SVG/01-centos-welcome.svg:1073(tspan) +#, no-wrap +msgid "THE COMMUNITY ENTERPRISE OPERATING SYSTEM" +msgstr "THE COMMUNITY ENTERPRISE OPERATING SYSTEM" + +#: SVG/01-centos-welcome.svg:1084(tspan) +#, no-wrap +msgid "https://www.centos.org/" +msgstr "https://www.centos.org/" + +#. Put one translator per line, in the form of NAME , YEAR1, YEAR2 +#: SVG/01-centos-welcome.svg:0(None) +msgid "translator-credits" +msgstr "translator-credits" diff --git a/rnotes/PO/en.pot b/rnotes/PO/en.pot new file mode 100644 index 0000000..3d99285 --- /dev/null +++ b/rnotes/PO/en.pot @@ -0,0 +1,279 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"POT-Creation-Date: 2019-04-21 18:18-0300\n" +"PO-Revision-Date: 2019-04-21 18:18-0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: SVG/16-centos-sig-virt.svg:304(format) +#: SVG/15-centos-sig-storage.svg:293(format) +#: SVG/14-centos-sig-sc.svg:327(format) +#: SVG/13-centos-sig-publicci.svg:304(format) +#: SVG/12-centos-sig-promo.svg:304(format) +#: SVG/11-centos-sig-paas.svg:304(format) +#: SVG/10-centos-sig-optools.svg:316(format) +#: SVG/09-centos-sig-nfv.svg:304(format) SVG/08-centos-sig-cm.svg:304(format) +#: SVG/07-centos-sig-cloudinstance.svg:304(format) +#: SVG/06-centos-sig-cloud.svg:304(format) +#: SVG/05-centos-sig-atomic.svg:309(format) +#: SVG/04-centos-sig-artwork.svg:339(format) +#: SVG/03-centos-sig-altarch.svg:268(format) +#: SVG/02-centos-sig-core.svg:305(format) SVG/01-centos-welcome.svg:875(format) +msgid "image/svg+xml" +msgstr "image/svg+xml" + +#: SVG/16-centos-sig-virt.svg:368(tspan) +#, no-wrap +msgid "CentOS Virt SIG" +msgstr "CentOS Virt SIG" + +#: SVG/16-centos-sig-virt.svg:383(flowPara) +#, no-wrap +msgid "Delivers a user consumable full stack for virtualization technologies that want to work with the SIG." +msgstr "Delivers a user consumable full stack for virtualization technologies that want to work with the SIG." + +#: SVG/16-centos-sig-virt.svg:393(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/Virtualization" +msgstr "https://wiki.centos.org/SpecialInterestGroup/Virtualization" + +#: SVG/15-centos-sig-storage.svg:374(tspan) +#, no-wrap +msgid "CentOS Storage SIG" +msgstr "CentOS Storage SIG" + +#: SVG/15-centos-sig-storage.svg:389(flowPara) +#, no-wrap +msgid "Ensures that all Open Source storage options seeking to utilize CentOS as a delivery platform have a voice in packaging, orchestration, deployment, and related work. " +msgstr "Ensures that all Open Source storage options seeking to utilize CentOS as a delivery platform have a voice in packaging, orchestration, deployment, and related work. " + +#: SVG/15-centos-sig-storage.svg:399(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/Storage" +msgstr "https://wiki.centos.org/SpecialInterestGroup/Storage" + +#: SVG/14-centos-sig-sc.svg:512(tspan) +#, no-wrap +msgid "CentOS Software Collection SIG" +msgstr "CentOS Software Collection SIG" + +#: SVG/14-centos-sig-sc.svg:527(flowPara) +#, no-wrap +msgid "Provides an upstream development area for various software collections and related tools. Developers can build on and extend existing SCLs, so they don't need to re-invent the wheel or take responsibility for packaging unnecessary dependencies. " +msgstr "Provides an upstream development area for various software collections and related tools. Developers can build on and extend existing SCLs, so they don't need to re-invent the wheel or take responsibility for packaging unnecessary dependencies. " + +#: SVG/14-centos-sig-sc.svg:537(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/SCLo" +msgstr "https://wiki.centos.org/SpecialInterestGroup/SCLo" + +#: SVG/13-centos-sig-publicci.svg:374(tspan) +#, no-wrap +msgid "CentOS Public CI SIG" +msgstr "CentOS Public CI SIG" + +#: SVG/13-centos-sig-publicci.svg:389(flowPara) +#, no-wrap +msgid "Provides a public testing and proving infrastructure." +msgstr "Provides a public testing and proving infrastructure." + +#: SVG/13-centos-sig-publicci.svg:399(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/PublicCI" +msgstr "https://wiki.centos.org/SpecialInterestGroup/PublicCI" + +#: SVG/12-centos-sig-promo.svg:364(tspan) +#, no-wrap +msgid "CentOS Promotion SIG" +msgstr "CentOS Promotion SIG" + +#: SVG/12-centos-sig-promo.svg:379(flowPara) +#, no-wrap +msgid "Provides promotion, and consistent messaging, of CentOS, both at physical events and online. " +msgstr "Provides promotion, and consistent messaging, of CentOS, both at physical events and online. " + +#: SVG/12-centos-sig-promo.svg:389(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/Promo" +msgstr "https://wiki.centos.org/SpecialInterestGroup/Promo" + +#: SVG/11-centos-sig-paas.svg:368(tspan) +#, no-wrap +msgid "CentOS PaaS SIG" +msgstr "CentOS PaaS SIG" + +#: SVG/11-centos-sig-paas.svg:383(flowPara) +#, no-wrap +msgid "Delivers multiple PaaS Stacks that are built, tested and delivered into the CentOS Ecosystem for end user consumption, run as a service and also provided in various formats (rpms, containers, images, etc.) for other efforts in the CentOS Ecosystem, that can derive value from this content." +msgstr "Delivers multiple PaaS Stacks that are built, tested and delivered into the CentOS Ecosystem for end user consumption, run as a service and also provided in various formats (rpms, containers, images, etc.) for other efforts in the CentOS Ecosystem, that can derive value from this content." + +#: SVG/11-centos-sig-paas.svg:397(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/PaaS" +msgstr "https://wiki.centos.org/SpecialInterestGroup/PaaS" + +#: SVG/10-centos-sig-optools.svg:501(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/OpsTools" +msgstr "https://wiki.centos.org/SpecialInterestGroup/OpsTools" + +#: SVG/10-centos-sig-optools.svg:512(tspan) +#, no-wrap +msgid "CentOS OpsTools SIG" +msgstr "CentOS OpsTools SIG" + +#: SVG/10-centos-sig-optools.svg:527(flowPara) +#, no-wrap +msgid "Provides tools for operators, system administrators, devops and developers doing infrastructure engineering on content based on CentOS Linux. " +msgstr "Provides tools for operators, system administrators, devops and developers doing infrastructure engineering on content based on CentOS Linux. " + +#: SVG/09-centos-sig-nfv.svg:368(tspan) +#, no-wrap +msgid "CentOS NFV SIG" +msgstr "CentOS NFV SIG" + +#: SVG/09-centos-sig-nfv.svg:383(flowPara) +#, no-wrap +msgid "Provides a CentOS-based stack that will serve as a platform for the deployment and testing of virtual network functions (VNFs) and NFV component packages on compliant CentOS platform. " +msgstr "Provides a CentOS-based stack that will serve as a platform for the deployment and testing of virtual network functions (VNFs) and NFV component packages on compliant CentOS platform. " + +#: SVG/09-centos-sig-nfv.svg:393(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/NFV" +msgstr "https://wiki.centos.org/SpecialInterestGroup/NFV" + +#: SVG/08-centos-sig-cm.svg:374(tspan) +#, no-wrap +msgid "CentOS Config Management SIG" +msgstr "CentOS Config Management SIG" + +#: SVG/08-centos-sig-cm.svg:389(flowPara) +#, no-wrap +msgid "Aims to bridge the gap between Config Management tools Power users and traditional users by producing and release RPM packages of several Configuration Management and Orchestration tools. " +msgstr "Aims to bridge the gap between Config Management tools Power users and traditional users by producing and release RPM packages of several Configuration Management and Orchestration tools. " + +#: SVG/08-centos-sig-cm.svg:399(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/ConfigManagementSIG" +msgstr "https://wiki.centos.org/SpecialInterestGroup/ConfigManagementSIG" + +#: SVG/07-centos-sig-cloudinstance.svg:371(tspan) +#, no-wrap +msgid "CentOS Cloud Instance SIG" +msgstr "CentOS Cloud Instance SIG" + +#: SVG/07-centos-sig-cloudinstance.svg:386(flowPara) +#, no-wrap +msgid "Works on the CentOS Linux cloud instances, either on or off premise or in third party Vendor establishments." +msgstr "Works on the CentOS Linux cloud instances, either on or off premise or in third party Vendor establishments." + +#: SVG/07-centos-sig-cloudinstance.svg:396(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/CloudInstance" +msgstr "https://wiki.centos.org/SpecialInterestGroup/CloudInstance" + +#: SVG/06-centos-sig-cloud.svg:371(tspan) +#, no-wrap +msgid "CentOS Cloud SIG" +msgstr "CentOS Cloud SIG" + +#: SVG/06-centos-sig-cloud.svg:386(flowPara) +#, no-wrap +msgid "Works on packaging and maintaining different FOSS based Private cloud infrastructure applications that one can install and run natively on CentOS." +msgstr "Works on packaging and maintaining different FOSS based Private cloud infrastructure applications that one can install and run natively on CentOS." + +#: SVG/06-centos-sig-cloud.svg:396(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/Cloud" +msgstr "https://wiki.centos.org/SpecialInterestGroup/Cloud" + +#: SVG/05-centos-sig-atomic.svg:373(tspan) +#, no-wrap +msgid "CentOS Atomic SIG" +msgstr "CentOS Atomic SIG" + +#: SVG/05-centos-sig-atomic.svg:388(flowPara) +#, no-wrap +msgid "Works on a CentOS-based Atomic Host image that provides a minimal image using rpm-ostree, as well as tools and documentation for users to create their own CentOS/Atomic images with custom package sets. " +msgstr "Works on a CentOS-based Atomic Host image that provides a minimal image using rpm-ostree, as well as tools and documentation for users to create their own CentOS/Atomic images with custom package sets. " + +#: SVG/05-centos-sig-atomic.svg:398(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/Atomic" +msgstr "https://wiki.centos.org/SpecialInterestGroup/Atomic" + +#: SVG/04-centos-sig-artwork.svg:380(tspan) +#, no-wrap +msgid "CentOS Artwork SIG" +msgstr "CentOS Artwork SIG" + +#: SVG/04-centos-sig-artwork.svg:395(flowPara) +#, no-wrap +msgid "Exists to produce The CentOS Project Visual Identity. The group is focused in producing high quality artwork for each visual medium The CentOS Project manifests its existence on reinforcing the visual connection between them all to reach the highest visual recognition." +msgstr "Exists to produce The CentOS Project Visual Identity. The group is focused in producing high quality artwork for each visual medium The CentOS Project manifests its existence on reinforcing the visual connection between them all to reach the highest visual recognition." + +#: SVG/04-centos-sig-artwork.svg:405(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/Artwork" +msgstr "https://wiki.centos.org/SpecialInterestGroup/Artwork" + +#: SVG/03-centos-sig-altarch.svg:337(tspan) +#, no-wrap +msgid "CentOS Alternate Architectures SIG" +msgstr "CentOS Alternate Architectures SIG" + +#: SVG/03-centos-sig-altarch.svg:352(flowPara) +#, no-wrap +msgid "Extends usability base beyond basic architectures (x86_64), including ARM 64-bit and 32-bit, x86 32-bit, Power 8, and so forth." +msgstr "Extends usability base beyond basic architectures (x86_64), including ARM 64-bit and 32-bit, x86 32-bit, Power 8, and so forth." + +#: SVG/03-centos-sig-altarch.svg:362(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/AltArch" +msgstr "https://wiki.centos.org/SpecialInterestGroup/AltArch" + +#: SVG/02-centos-sig-core.svg:380(tspan) +#, no-wrap +msgid "CentOS Core SIG" +msgstr "CentOS Core SIG" + +#: SVG/02-centos-sig-core.svg:395(flowPara) +#, no-wrap +msgid "Produces the CentOS Linux distribution. Some of the actions this group is focused on include to build, sign and release all CentOS Linux packages, as well as create and release all official CentOS Linux ISOs." +msgstr "Produces the CentOS Linux distribution. Some of the actions this group is focused on include to build, sign and release all CentOS Linux packages, as well as create and release all official CentOS Linux ISOs." + +#: SVG/02-centos-sig-core.svg:405(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/Core" +msgstr "https://wiki.centos.org/SpecialInterestGroup/Core" + +#: SVG/01-centos-welcome.svg:1062(tspan) +#, no-wrap +msgid "CentOS" +msgstr "CentOS" + +#: SVG/01-centos-welcome.svg:1060(tspan) +#, no-wrap +msgid "Welcome to Linux" +msgstr "Welcome to Linux" + +#: SVG/01-centos-welcome.svg:1073(tspan) +#, no-wrap +msgid "THE COMMUNITY ENTERPRISE OPERATING SYSTEM" +msgstr "THE COMMUNITY ENTERPRISE OPERATING SYSTEM" + +#: SVG/01-centos-welcome.svg:1084(tspan) +#, no-wrap +msgid "https://www.centos.org/" +msgstr "https://www.centos.org/" + +#. Put one translator per line, in the form of NAME , YEAR1, YEAR2 +#: SVG/01-centos-welcome.svg:0(None) +msgid "translator-credits" +msgstr "translator-credits" diff --git a/rnotes/PO/en_US.po b/rnotes/PO/en_US.po new file mode 100644 index 0000000..9ddfdd4 --- /dev/null +++ b/rnotes/PO/en_US.po @@ -0,0 +1,332 @@ +msgid "" +msgstr "" +"Project-Id-Version: RNOTES\n" +"POT-Creation-Date: 2019-04-20 21:13-0300\n" +"PO-Revision-Date: 2019-04-06 17:45-0300\n" +"Last-Translator: Alain Reguera Delgado \n" +"Language-Team: English\n" +"Language: en_US\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: SVG/16-centos-sig-virt.svg:304(format) +#: SVG/15-centos-sig-storage.svg:293(format) +#: SVG/14-centos-sig-sc.svg:327(format) +#: SVG/13-centos-sig-publicci.svg:304(format) +#: SVG/12-centos-sig-promo.svg:304(format) +#: SVG/11-centos-sig-paas.svg:304(format) +#: SVG/10-centos-sig-optools.svg:316(format) +#: SVG/09-centos-sig-nfv.svg:304(format) SVG/08-centos-sig-cm.svg:304(format) +#: SVG/07-centos-sig-cloudinstance.svg:304(format) +#: SVG/06-centos-sig-cloud.svg:304(format) +#: SVG/05-centos-sig-atomic.svg:309(format) +#: SVG/04-centos-sig-artwork.svg:339(format) +#: SVG/03-centos-sig-altarch.svg:268(format) +#: SVG/02-centos-sig-core.svg:305(format) SVG/01-centos-welcome.svg:875(format) +msgid "image/svg+xml" +msgstr "image/svg+xml" + +#: SVG/16-centos-sig-virt.svg:368(tspan) +#, fuzzy, no-wrap +msgid "CentOS Virt SIG" +msgstr "CentOS NFS SIG" + +#: SVG/16-centos-sig-virt.svg:383(flowPara) +#, fuzzy, no-wrap +msgid "Delivers a user consumable full stack for virtualization technologies that want to work with the SIG." +msgstr "Deliver a user consumable full stack for virtualization technologies." + +#: SVG/16-centos-sig-virt.svg:393(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/Virtualization" +msgstr "" + +#: SVG/15-centos-sig-storage.svg:374(tspan) +#, no-wrap +msgid "CentOS Storage SIG" +msgstr "CentOS Storage SIG" + +#: SVG/15-centos-sig-storage.svg:389(flowPara) +#, fuzzy, no-wrap +msgid "Ensures that all Open Source storage options seeking to utilize CentOS as a delivery platform have a voice in packaging, orchestration, deployment, and related work. " +msgstr "Ensure that all Open Source storage options seeking to utilize CentOS as a delivery platform have a voice in packaging, orchestration, deployment, and related work." + +#: SVG/15-centos-sig-storage.svg:399(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/Storage" +msgstr "" + +#: SVG/14-centos-sig-sc.svg:512(tspan) +#, no-wrap +msgid "CentOS Software Collection SIG" +msgstr "CentOS Software Collection SIG" + +#: SVG/14-centos-sig-sc.svg:527(flowPara) +#, no-wrap +msgid "Provides an upstream development area for various software collections and related tools. Developers can build on and extend existing SCLs, so they don't need to re-invent the wheel or take responsibility for packaging unnecessary dependencies. " +msgstr "" + +#: SVG/14-centos-sig-sc.svg:537(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/SCLo" +msgstr "" + +#: SVG/13-centos-sig-publicci.svg:374(tspan) +#, no-wrap +msgid "CentOS Public CI SIG" +msgstr "CentOS Public CI SIG" + +#: SVG/13-centos-sig-publicci.svg:389(flowPara) +#, fuzzy, no-wrap +msgid "Provides a public testing and proving infrastructure." +msgstr "Work on a public testing and proving infrastructure." + +#: SVG/13-centos-sig-publicci.svg:399(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/PublicCI" +msgstr "" + +#: SVG/12-centos-sig-promo.svg:364(tspan) +#, no-wrap +msgid "CentOS Promotion SIG" +msgstr "CentOS Promotion SIG" + +#: SVG/12-centos-sig-promo.svg:379(flowPara) +#, fuzzy, no-wrap +msgid "Provides promotion, and consistent messaging, of CentOS, both at physical events and online. " +msgstr "Provide promotion, and consistent messaging, of CentOS, both at physical events and online." + +#: SVG/12-centos-sig-promo.svg:389(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/Promo" +msgstr "" + +#: SVG/11-centos-sig-paas.svg:368(tspan) +#, no-wrap +msgid "CentOS PaaS SIG" +msgstr "CentOS PaaS SIG" + +#: SVG/11-centos-sig-paas.svg:383(flowPara) +#, fuzzy, no-wrap +msgid "Delivers multiple PaaS Stacks that are built, tested and delivered into the CentOS Ecosystem for end user consumption, run as a service and also provided in various formats (rpms, containers, images, etc.) for other efforts in the CentOS Ecosystem, that can derive value from this content." +msgstr "Work on delivering multiple PaaS Stacks that are built, tested and delivered into the CentOS Ecosystem for end user consumption, run as a service and also provided in various formats (rpms, containers, images etc) for other efforts in the CentOS. Ecosystem, that can derive value from this content. " + +#: SVG/11-centos-sig-paas.svg:397(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/PaaS" +msgstr "" + +#: SVG/10-centos-sig-optools.svg:501(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/OpsTools" +msgstr "" + +#: SVG/10-centos-sig-optools.svg:512(tspan) +#, fuzzy, no-wrap +msgid "CentOS OpsTools SIG" +msgstr "CentOS Core SIG" + +#: SVG/10-centos-sig-optools.svg:527(flowPara) +#, no-wrap +msgid "Provides tools for operators, system administrators, devops and developers doing infrastructure engineering on content based on CentOS Linux. " +msgstr "" + +#: SVG/09-centos-sig-nfv.svg:368(tspan) +#, fuzzy, no-wrap +msgid "CentOS NFV SIG" +msgstr "CentOS NFS SIG" + +#: SVG/09-centos-sig-nfv.svg:383(flowPara) +#, fuzzy, no-wrap +msgid "Provides a CentOS-based stack that will serve as a platform for the deployment and testing of virtual network functions (VNFs) and NFV component packages on compliant CentOS platform. " +msgstr "Network Functions Virtualization (NFV) provides a CentOS-based stack that will serve as a platform for the deployment and testing of virtual network functions (VNFs). " + +#: SVG/09-centos-sig-nfv.svg:393(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/NFV" +msgstr "" + +#: SVG/08-centos-sig-cm.svg:374(tspan) +#, no-wrap +msgid "CentOS Config Management SIG" +msgstr "CentOS Config Management SIG" + +#: SVG/08-centos-sig-cm.svg:389(flowPara) +#, no-wrap +msgid "Aims to bridge the gap between Config Management tools Power users and traditional users by producing and release RPM packages of several Configuration Management and Orchestration tools. " +msgstr "" + +#: SVG/08-centos-sig-cm.svg:399(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/ConfigManagementSIG" +msgstr "" + +#: SVG/07-centos-sig-cloudinstance.svg:371(tspan) +#, no-wrap +msgid "CentOS Cloud Instance SIG" +msgstr "CentOS Cloud Instance SIG" + +#: SVG/07-centos-sig-cloudinstance.svg:386(flowPara) +#, no-wrap +msgid "Works on the CentOS Linux cloud instances, either on or off premise or in third party Vendor establishments." +msgstr "" + +#: SVG/07-centos-sig-cloudinstance.svg:396(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/CloudInstance" +msgstr "" + +#: SVG/06-centos-sig-cloud.svg:371(tspan) +#, no-wrap +msgid "CentOS Cloud SIG" +msgstr "CentOS Cloud SIG" + +#: SVG/06-centos-sig-cloud.svg:386(flowPara) +#, no-wrap +msgid "Works on packaging and maintaining different FOSS based Private cloud infrastructure applications that one can install and run natively on CentOS." +msgstr "" + +#: SVG/06-centos-sig-cloud.svg:396(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/Cloud" +msgstr "" + +#: SVG/05-centos-sig-atomic.svg:373(tspan) +#, no-wrap +msgid "CentOS Atomic SIG" +msgstr "CentOS Atomic SIG" + +#: SVG/05-centos-sig-atomic.svg:388(flowPara) +#, no-wrap +msgid "Works on a CentOS-based Atomic Host image that provides a minimal image using rpm-ostree, as well as tools and documentation for users to create their own CentOS/Atomic images with custom package sets. " +msgstr "" + +#: SVG/05-centos-sig-atomic.svg:398(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/Atomic" +msgstr "" + +#: SVG/04-centos-sig-artwork.svg:380(tspan) +#, no-wrap +msgid "CentOS Artwork SIG" +msgstr "CentOS Artwork SIG" + +#: SVG/04-centos-sig-artwork.svg:395(flowPara) +#, no-wrap +msgid "Exists to produce The CentOS Project Visual Identity. The group is focused in producing high quality artwork for each visual medium The CentOS Project manifests its existence on reinforcing the visual connection between them all to reach the highest visual recognition." +msgstr "" + +#: SVG/04-centos-sig-artwork.svg:405(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/Artwork" +msgstr "" + +#: SVG/03-centos-sig-altarch.svg:337(tspan) +#, no-wrap +msgid "CentOS Alternate Architectures SIG" +msgstr "CentOS Alternate Architectures SIG" + +#: SVG/03-centos-sig-altarch.svg:352(flowPara) +#, fuzzy, no-wrap +msgid "Extends usability base beyond basic architectures (x86_64), including ARM 64-bit and 32-bit, x86 32-bit, Power 8, and so forth." +msgstr "Extend usability base beyond basic architectures (x86_64), including ARM 64-bit and 32-bit, x86 32-bit, Power 8, and so forth. " + +#: SVG/03-centos-sig-altarch.svg:362(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/AltArch" +msgstr "" + +#: SVG/02-centos-sig-core.svg:380(tspan) +#, no-wrap +msgid "CentOS Core SIG" +msgstr "CentOS Core SIG" + +#: SVG/02-centos-sig-core.svg:395(flowPara) +#, no-wrap +msgid "Produces the CentOS Linux distribution. Some of the actions this group is focused on include to build, sign and release all CentOS Linux packages, as well as create and release all official CentOS Linux ISOs." +msgstr "" + +#: SVG/02-centos-sig-core.svg:405(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/Core" +msgstr "" + +#: SVG/01-centos-welcome.svg:1062(tspan) +#, fuzzy, no-wrap +msgid "CentOS" +msgstr "CentOS NFS SIG" + +#: SVG/01-centos-welcome.svg:1060(tspan) +#, fuzzy, no-wrap +msgid "Welcome to Linux" +msgstr "Welcome to CentOS Linux" + +#: SVG/01-centos-welcome.svg:1073(tspan) +#, no-wrap +msgid "THE COMMUNITY ENTERPRISE OPERATING SYSTEM" +msgstr "" + +#: SVG/01-centos-welcome.svg:1084(tspan) +#, no-wrap +msgid "https://www.centos.org/" +msgstr "" + +#. Put one translator per line, in the form of NAME , YEAR1, YEAR2 +#: SVG/01-centos-welcome.svg:0(None) +msgid "translator-credits" +msgstr "translator-credits" + +#~ msgid "Produces the CentOS Linux Distribution." +#~ msgstr "Produces the CentOS Linux Distribution." + +#~ msgid "" +#~ "Provide an upstream development area for various software collections and " +#~ "related tools." +#~ msgstr "" +#~ "Provide an upstream development area for various software collections and " +#~ "related tools." + +#~ msgid "" +#~ "The AtomicSIG aims to build, deliver and maintain an Atomic Host for " +#~ "CentOS Linux. And help bootstrap tooling around the effort." +#~ msgstr "" +#~ "The AtomicSIG aims to build, deliver and maintain an Atomic Host for " +#~ "CentOS Linux. And help bootstrap tooling around the effort." + +#~ msgid "" +#~ "Look into issues around running CentOS Linux Instances in various private " +#~ "and public clouds." +#~ msgstr "" +#~ "Look into issues around running CentOS Linux Instances in various private " +#~ "and public clouds." + +#~ msgid "" +#~ "Look into issues around running Cloud Infrastructure / Hypervisor for " +#~ "onpremise clouds as well as support other SIGs and projects looking to " +#~ "consume some of the shared resources around on-premise cloud infra." +#~ msgstr "" +#~ "Look into issues around running Cloud Infrastructure / Hypervisor for " +#~ "onpremise clouds as well as support other SIGs and projects looking to " +#~ "consume some of the shared resources around on-premise cloud infra." + +#~ msgid "Improving the user experience with high quality artwork." +#~ msgstr "Improving the user experience with high quality artwork." + +#~ msgid "CentOS Operational Tooling SIG" +#~ msgstr "CentOS Operational Tooling SIG" + +#~ msgid "Logging, monitoring and other operational tool development." +#~ msgstr "Logging, monitoring and other operational tool development." + +#~ msgid "CentOS Virtualization SIG" +#~ msgstr "CentOS Virtualization SIG" + +#~ msgid "The Community ENTerprise Operating System" +#~ msgstr "The Community ENTerprise Operating System" + +#~ msgid "" +#~ "Cover configuration management and system lifecycle management on CentOS. " +#~ msgstr "" +#~ "Cover configuration management and system lifecycle management on CentOS. " diff --git a/rnotes/PO/en_US.pot b/rnotes/PO/en_US.pot new file mode 100644 index 0000000..0df845f --- /dev/null +++ b/rnotes/PO/en_US.pot @@ -0,0 +1,279 @@ +msgid "" +msgstr "" +"Project-Id-Version: RNOTES\n" +"POT-Creation-Date: 2019-04-20 21:21-0300\n" +"PO-Revision-Date: 2019-04-20 21:21-0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: en_US\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: SVG/16-centos-sig-virt.svg:304(format) +#: SVG/15-centos-sig-storage.svg:293(format) +#: SVG/14-centos-sig-sc.svg:327(format) +#: SVG/13-centos-sig-publicci.svg:304(format) +#: SVG/12-centos-sig-promo.svg:304(format) +#: SVG/11-centos-sig-paas.svg:304(format) +#: SVG/10-centos-sig-optools.svg:316(format) +#: SVG/09-centos-sig-nfv.svg:304(format) SVG/08-centos-sig-cm.svg:304(format) +#: SVG/07-centos-sig-cloudinstance.svg:304(format) +#: SVG/06-centos-sig-cloud.svg:304(format) +#: SVG/05-centos-sig-atomic.svg:309(format) +#: SVG/04-centos-sig-artwork.svg:339(format) +#: SVG/03-centos-sig-altarch.svg:268(format) +#: SVG/02-centos-sig-core.svg:305(format) SVG/01-centos-welcome.svg:875(format) +msgid "image/svg+xml" +msgstr "image/svg+xml" + +#: SVG/16-centos-sig-virt.svg:368(tspan) +#, no-wrap +msgid "CentOS Virt SIG" +msgstr "CentOS Virt SIG" + +#: SVG/16-centos-sig-virt.svg:383(flowPara) +#, no-wrap +msgid "Delivers a user consumable full stack for virtualization technologies that want to work with the SIG." +msgstr "Delivers a user consumable full stack for virtualization technologies that want to work with the SIG." + +#: SVG/16-centos-sig-virt.svg:393(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/Virtualization" +msgstr "https://wiki.centos.org/SpecialInterestGroup/Virtualization" + +#: SVG/15-centos-sig-storage.svg:374(tspan) +#, no-wrap +msgid "CentOS Storage SIG" +msgstr "CentOS Storage SIG" + +#: SVG/15-centos-sig-storage.svg:389(flowPara) +#, no-wrap +msgid "Ensures that all Open Source storage options seeking to utilize CentOS as a delivery platform have a voice in packaging, orchestration, deployment, and related work. " +msgstr "Ensures that all Open Source storage options seeking to utilize CentOS as a delivery platform have a voice in packaging, orchestration, deployment, and related work. " + +#: SVG/15-centos-sig-storage.svg:399(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/Storage" +msgstr "https://wiki.centos.org/SpecialInterestGroup/Storage" + +#: SVG/14-centos-sig-sc.svg:512(tspan) +#, no-wrap +msgid "CentOS Software Collection SIG" +msgstr "CentOS Software Collection SIG" + +#: SVG/14-centos-sig-sc.svg:527(flowPara) +#, no-wrap +msgid "Provides an upstream development area for various software collections and related tools. Developers can build on and extend existing SCLs, so they don't need to re-invent the wheel or take responsibility for packaging unnecessary dependencies. " +msgstr "Provides an upstream development area for various software collections and related tools. Developers can build on and extend existing SCLs, so they don't need to re-invent the wheel or take responsibility for packaging unnecessary dependencies. " + +#: SVG/14-centos-sig-sc.svg:537(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/SCLo" +msgstr "https://wiki.centos.org/SpecialInterestGroup/SCLo" + +#: SVG/13-centos-sig-publicci.svg:374(tspan) +#, no-wrap +msgid "CentOS Public CI SIG" +msgstr "CentOS Public CI SIG" + +#: SVG/13-centos-sig-publicci.svg:389(flowPara) +#, no-wrap +msgid "Provides a public testing and proving infrastructure." +msgstr "Provides a public testing and proving infrastructure." + +#: SVG/13-centos-sig-publicci.svg:399(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/PublicCI" +msgstr "https://wiki.centos.org/SpecialInterestGroup/PublicCI" + +#: SVG/12-centos-sig-promo.svg:364(tspan) +#, no-wrap +msgid "CentOS Promotion SIG" +msgstr "CentOS Promotion SIG" + +#: SVG/12-centos-sig-promo.svg:379(flowPara) +#, no-wrap +msgid "Provides promotion, and consistent messaging, of CentOS, both at physical events and online. " +msgstr "Provides promotion, and consistent messaging, of CentOS, both at physical events and online. " + +#: SVG/12-centos-sig-promo.svg:389(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/Promo" +msgstr "https://wiki.centos.org/SpecialInterestGroup/Promo" + +#: SVG/11-centos-sig-paas.svg:368(tspan) +#, no-wrap +msgid "CentOS PaaS SIG" +msgstr "CentOS PaaS SIG" + +#: SVG/11-centos-sig-paas.svg:383(flowPara) +#, no-wrap +msgid "Delivers multiple PaaS Stacks that are built, tested and delivered into the CentOS Ecosystem for end user consumption, run as a service and also provided in various formats (rpms, containers, images, etc.) for other efforts in the CentOS Ecosystem, that can derive value from this content." +msgstr "Delivers multiple PaaS Stacks that are built, tested and delivered into the CentOS Ecosystem for end user consumption, run as a service and also provided in various formats (rpms, containers, images, etc.) for other efforts in the CentOS Ecosystem, that can derive value from this content." + +#: SVG/11-centos-sig-paas.svg:397(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/PaaS" +msgstr "https://wiki.centos.org/SpecialInterestGroup/PaaS" + +#: SVG/10-centos-sig-optools.svg:501(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/OpsTools" +msgstr "https://wiki.centos.org/SpecialInterestGroup/OpsTools" + +#: SVG/10-centos-sig-optools.svg:512(tspan) +#, no-wrap +msgid "CentOS OpsTools SIG" +msgstr "CentOS OpsTools SIG" + +#: SVG/10-centos-sig-optools.svg:527(flowPara) +#, no-wrap +msgid "Provides tools for operators, system administrators, devops and developers doing infrastructure engineering on content based on CentOS Linux. " +msgstr "Provides tools for operators, system administrators, devops and developers doing infrastructure engineering on content based on CentOS Linux. " + +#: SVG/09-centos-sig-nfv.svg:368(tspan) +#, no-wrap +msgid "CentOS NFV SIG" +msgstr "CentOS NFV SIG" + +#: SVG/09-centos-sig-nfv.svg:383(flowPara) +#, no-wrap +msgid "Provides a CentOS-based stack that will serve as a platform for the deployment and testing of virtual network functions (VNFs) and NFV component packages on compliant CentOS platform. " +msgstr "Provides a CentOS-based stack that will serve as a platform for the deployment and testing of virtual network functions (VNFs) and NFV component packages on compliant CentOS platform. " + +#: SVG/09-centos-sig-nfv.svg:393(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/NFV" +msgstr "https://wiki.centos.org/SpecialInterestGroup/NFV" + +#: SVG/08-centos-sig-cm.svg:374(tspan) +#, no-wrap +msgid "CentOS Config Management SIG" +msgstr "CentOS Config Management SIG" + +#: SVG/08-centos-sig-cm.svg:389(flowPara) +#, no-wrap +msgid "Aims to bridge the gap between Config Management tools Power users and traditional users by producing and release RPM packages of several Configuration Management and Orchestration tools. " +msgstr "Aims to bridge the gap between Config Management tools Power users and traditional users by producing and release RPM packages of several Configuration Management and Orchestration tools. " + +#: SVG/08-centos-sig-cm.svg:399(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/ConfigManagementSIG" +msgstr "https://wiki.centos.org/SpecialInterestGroup/ConfigManagementSIG" + +#: SVG/07-centos-sig-cloudinstance.svg:371(tspan) +#, no-wrap +msgid "CentOS Cloud Instance SIG" +msgstr "CentOS Cloud Instance SIG" + +#: SVG/07-centos-sig-cloudinstance.svg:386(flowPara) +#, no-wrap +msgid "Works on the CentOS Linux cloud instances, either on or off premise or in third party Vendor establishments." +msgstr "Works on the CentOS Linux cloud instances, either on or off premise or in third party Vendor establishments." + +#: SVG/07-centos-sig-cloudinstance.svg:396(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/CloudInstance" +msgstr "https://wiki.centos.org/SpecialInterestGroup/CloudInstance" + +#: SVG/06-centos-sig-cloud.svg:371(tspan) +#, no-wrap +msgid "CentOS Cloud SIG" +msgstr "CentOS Cloud SIG" + +#: SVG/06-centos-sig-cloud.svg:386(flowPara) +#, no-wrap +msgid "Works on packaging and maintaining different FOSS based Private cloud infrastructure applications that one can install and run natively on CentOS." +msgstr "Works on packaging and maintaining different FOSS based Private cloud infrastructure applications that one can install and run natively on CentOS." + +#: SVG/06-centos-sig-cloud.svg:396(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/Cloud" +msgstr "https://wiki.centos.org/SpecialInterestGroup/Cloud" + +#: SVG/05-centos-sig-atomic.svg:373(tspan) +#, no-wrap +msgid "CentOS Atomic SIG" +msgstr "CentOS Atomic SIG" + +#: SVG/05-centos-sig-atomic.svg:388(flowPara) +#, no-wrap +msgid "Works on a CentOS-based Atomic Host image that provides a minimal image using rpm-ostree, as well as tools and documentation for users to create their own CentOS/Atomic images with custom package sets. " +msgstr "Works on a CentOS-based Atomic Host image that provides a minimal image using rpm-ostree, as well as tools and documentation for users to create their own CentOS/Atomic images with custom package sets. " + +#: SVG/05-centos-sig-atomic.svg:398(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/Atomic" +msgstr "https://wiki.centos.org/SpecialInterestGroup/Atomic" + +#: SVG/04-centos-sig-artwork.svg:380(tspan) +#, no-wrap +msgid "CentOS Artwork SIG" +msgstr "CentOS Artwork SIG" + +#: SVG/04-centos-sig-artwork.svg:395(flowPara) +#, no-wrap +msgid "Exists to produce The CentOS Project Visual Identity. The group is focused in producing high quality artwork for each visual medium The CentOS Project manifests its existence on reinforcing the visual connection between them all to reach the highest visual recognition." +msgstr "Exists to produce The CentOS Project Visual Identity. The group is focused in producing high quality artwork for each visual medium The CentOS Project manifests its existence on reinforcing the visual connection between them all to reach the highest visual recognition." + +#: SVG/04-centos-sig-artwork.svg:405(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/Artwork" +msgstr "https://wiki.centos.org/SpecialInterestGroup/Artwork" + +#: SVG/03-centos-sig-altarch.svg:337(tspan) +#, no-wrap +msgid "CentOS Alternate Architectures SIG" +msgstr "CentOS Alternate Architectures SIG" + +#: SVG/03-centos-sig-altarch.svg:352(flowPara) +#, no-wrap +msgid "Extends usability base beyond basic architectures (x86_64), including ARM 64-bit and 32-bit, x86 32-bit, Power 8, and so forth." +msgstr "Extends usability base beyond basic architectures (x86_64), including ARM 64-bit and 32-bit, x86 32-bit, Power 8, and so forth." + +#: SVG/03-centos-sig-altarch.svg:362(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/AltArch" +msgstr "https://wiki.centos.org/SpecialInterestGroup/AltArch" + +#: SVG/02-centos-sig-core.svg:380(tspan) +#, no-wrap +msgid "CentOS Core SIG" +msgstr "CentOS Core SIG" + +#: SVG/02-centos-sig-core.svg:395(flowPara) +#, no-wrap +msgid "Produces the CentOS Linux distribution. Some of the actions this group is focused on include to build, sign and release all CentOS Linux packages, as well as create and release all official CentOS Linux ISOs." +msgstr "Produces the CentOS Linux distribution. Some of the actions this group is focused on include to build, sign and release all CentOS Linux packages, as well as create and release all official CentOS Linux ISOs." + +#: SVG/02-centos-sig-core.svg:405(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/Core" +msgstr "https://wiki.centos.org/SpecialInterestGroup/Core" + +#: SVG/01-centos-welcome.svg:1062(tspan) +#, no-wrap +msgid "CentOS" +msgstr "CentOS" + +#: SVG/01-centos-welcome.svg:1060(tspan) +#, no-wrap +msgid "Welcome to Linux" +msgstr "Welcome to Linux" + +#: SVG/01-centos-welcome.svg:1073(tspan) +#, no-wrap +msgid "THE COMMUNITY ENTERPRISE OPERATING SYSTEM" +msgstr "THE COMMUNITY ENTERPRISE OPERATING SYSTEM" + +#: SVG/01-centos-welcome.svg:1084(tspan) +#, no-wrap +msgid "https://www.centos.org/" +msgstr "https://www.centos.org/" + +#. Put one translator per line, in the form of NAME , YEAR1, YEAR2 +#: SVG/01-centos-welcome.svg:0(None) +msgid "translator-credits" +msgstr "translator-credits" diff --git a/rnotes/PO/es_ES.po b/rnotes/PO/es_ES.po new file mode 100644 index 0000000..8f686e6 --- /dev/null +++ b/rnotes/PO/es_ES.po @@ -0,0 +1,343 @@ +msgid "" +msgstr "" +"Project-Id-Version: RNOTES \n" +"POT-Creation-Date: 2019-04-20 20:26-0300\n" +"PO-Revision-Date: 2019-04-06 17:45-0300\n" +"Last-Translator: Alain Reguera Delgado \n" +"Language-Team: Spanish\n" +"Language: es_ES\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: SVG/16-centos-sig-virt.svg:304(format) +#: SVG/15-centos-sig-storage.svg:293(format) +#: SVG/14-centos-sig-sc.svg:327(format) +#: SVG/13-centos-sig-publicci.svg:304(format) +#: SVG/12-centos-sig-promo.svg:304(format) +#: SVG/11-centos-sig-paas.svg:304(format) +#: SVG/10-centos-sig-optools.svg:316(format) +#: SVG/09-centos-sig-nfv.svg:304(format) SVG/08-centos-sig-cm.svg:304(format) +#: SVG/07-centos-sig-cloudinstance.svg:304(format) +#: SVG/06-centos-sig-cloud.svg:304(format) +#: SVG/05-centos-sig-atomic.svg:309(format) +#: SVG/04-centos-sig-artwork.svg:339(format) +#: SVG/03-centos-sig-altarch.svg:268(format) +#: SVG/02-centos-sig-core.svg:305(format) SVG/01-centos-welcome.svg:875(format) +msgid "image/svg+xml" +msgstr "image/svg+xml" + +#: SVG/16-centos-sig-virt.svg:368(tspan) +#, no-wrap +msgid "CentOS Virt SIG" +msgstr "" + +#: SVG/16-centos-sig-virt.svg:383(flowPara) +#, no-wrap +msgid "Delivers a user consumable full stack for virtualization technologies that want to work with the SIG." +msgstr "Entrega al usuario un stack completo de las tecnologías de virtualización que han querido trabajar con este grupo." + +#: SVG/16-centos-sig-virt.svg:393(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/Virtualization" +msgstr "" + +#: SVG/15-centos-sig-storage.svg:374(tspan) +#, no-wrap +msgid "CentOS Storage SIG" +msgstr "" + +#: SVG/15-centos-sig-storage.svg:389(flowPara) +#, no-wrap +msgid "Ensures that all Open Source storage options seeking to utilize CentOS as a delivery platform have a voice in packaging, orchestration, deployment, and related work. " +msgstr "Asegura que todas las opciones de almacenamiento open source que usan CentOS como plataforma de entrega tengan voz en el proceso de empaquetado, orquestación, despliegue y trabajos relacionados." + +#: SVG/15-centos-sig-storage.svg:399(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/Storage" +msgstr "" + +#: SVG/14-centos-sig-sc.svg:512(tspan) +#, no-wrap +msgid "CentOS Software Collection SIG" +msgstr "" + +#: SVG/14-centos-sig-sc.svg:527(flowPara) +#, no-wrap +msgid "Provides an upstream development area for various software collections and related tools. Developers can build on and extend existing SCLs, so they don't need to re-invent the wheel or take responsibility for packaging unnecessary dependencies. " +msgstr "Entrega un área de desarrollo upstream para varias colecciones de software y herramientas relacionadas que los desarrolladores pueden construir y extender, para que no tengan que reinventar la rueda o encargarse de las dependencias de paquetes innecesariamente." + +#: SVG/14-centos-sig-sc.svg:537(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/SCLo" +msgstr "" + +#: SVG/13-centos-sig-publicci.svg:374(tspan) +#, no-wrap +msgid "CentOS Public CI SIG" +msgstr "" + +#: SVG/13-centos-sig-publicci.svg:389(flowPara) +#, no-wrap +msgid "Provides a public testing and proving infrastructure." +msgstr "Trabaja en una infraestructura pública donde realizar pruebas." + +#: SVG/13-centos-sig-publicci.svg:399(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/PublicCI" +msgstr "" + +#: SVG/12-centos-sig-promo.svg:364(tspan) +#, no-wrap +msgid "CentOS Promotion SIG" +msgstr "" + +#: SVG/12-centos-sig-promo.svg:379(flowPara) +#, no-wrap +msgid "Provides promotion, and consistent messaging, of CentOS, both at physical events and online. " +msgstr "Ofrece medios de promoción y mensajes consistentes sobre CentOS, tanto físicamente en eventos como en línea." + +#: SVG/12-centos-sig-promo.svg:389(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/Promo" +msgstr "" + +#: SVG/11-centos-sig-paas.svg:368(tspan) +#, no-wrap +msgid "CentOS PaaS SIG" +msgstr "" + +#: SVG/11-centos-sig-paas.svg:383(flowPara) +#, no-wrap +msgid "Delivers multiple PaaS Stacks that are built, tested and delivered into the CentOS Ecosystem for end user consumption, run as a service and also provided in various formats (rpms, containers, images, etc.) for other efforts in the CentOS Ecosystem, that can derive value from this content." +msgstr "Ofrece múltiples PaaS Stacks que son construidos, probados y expuestos al ecosistema CentOS para consumo de los usuarios, ya sea como servicio o a través de varios formatos (rpms, contenedores, imágenes, etc.) a otros esfuerzos en el ecosistema CentOS que puedan encontrar valor en este tipo de contenido." + +#: SVG/11-centos-sig-paas.svg:397(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/PaaS" +msgstr "" + +#: SVG/10-centos-sig-optools.svg:501(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/OpsTools" +msgstr "" + +#: SVG/10-centos-sig-optools.svg:512(tspan) +#, no-wrap +msgid "CentOS OpsTools SIG" +msgstr "" + +#: SVG/10-centos-sig-optools.svg:527(flowPara) +#, no-wrap +msgid "Provides tools for operators, system administrators, devops and developers doing infrastructure engineering on content based on CentOS Linux. " +msgstr "Entrega herramientas para los operadores, administradores de sistema, devops y desarrolladores que hace ingeniería de infraestructura en contenidos basados en CentOS Linux." + +#: SVG/09-centos-sig-nfv.svg:368(tspan) +#, no-wrap +msgid "CentOS NFV SIG" +msgstr "" + +#: SVG/09-centos-sig-nfv.svg:383(flowPara) +#, no-wrap +msgid "Provides a CentOS-based stack that will serve as a platform for the deployment and testing of virtual network functions (VNFs) and NFV component packages on compliant CentOS platform. " +msgstr "Ofrece un stack de virtualización de funciones de red (NFV) basado en CentOS que servirá como plataforma de desarrollo y prueba de componentes NFV en plataformas compatibles con CentOS." + +#: SVG/09-centos-sig-nfv.svg:393(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/NFV" +msgstr "" + +#: SVG/08-centos-sig-cm.svg:374(tspan) +#, no-wrap +msgid "CentOS Config Management SIG" +msgstr "" + +#: SVG/08-centos-sig-cm.svg:389(flowPara) +#, no-wrap +msgid "Aims to bridge the gap between Config Management tools Power users and traditional users by producing and release RPM packages of several Configuration Management and Orchestration tools. " +msgstr "Apunta a cubrir los vacíos que existen entre los usuarios arriesgados de herramientas de configuración gestionada y los usuarios tradicionales que prefieren versiones más estables. Para ello el grupo produce paquetes RPM de varios herramientas de configuración y orquestación." + +#: SVG/08-centos-sig-cm.svg:399(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/ConfigManagementSIG" +msgstr "" + +#: SVG/07-centos-sig-cloudinstance.svg:371(tspan) +#, no-wrap +msgid "CentOS Cloud Instance SIG" +msgstr "" + +#: SVG/07-centos-sig-cloudinstance.svg:386(flowPara) +#, no-wrap +msgid "Works on the CentOS Linux cloud instances, either on or off premise or in third party Vendor establishments." +msgstr "Trabaja en las instancias de CentOS Linux para la nube, ya sea on-premise o no, o para el establecimiento en vendedores terciarizados." + +#: SVG/07-centos-sig-cloudinstance.svg:396(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/CloudInstance" +msgstr "" + +#: SVG/06-centos-sig-cloud.svg:371(tspan) +#, no-wrap +msgid "CentOS Cloud SIG" +msgstr "" + +#: SVG/06-centos-sig-cloud.svg:386(flowPara) +#, no-wrap +msgid "Works on packaging and maintaining different FOSS based Private cloud infrastructure applications that one can install and run natively on CentOS." +msgstr "Trabaja en el empaquetado y mantenimiento de aplicaciones de infraestructuras tipo nube privada basadas en FOSS que uno puede instalar y correr nativamente en CentOS." + +#: SVG/06-centos-sig-cloud.svg:396(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/Cloud" +msgstr "" + +#: SVG/05-centos-sig-atomic.svg:373(tspan) +#, no-wrap +msgid "CentOS Atomic SIG" +msgstr "" + +#: SVG/05-centos-sig-atomic.svg:388(flowPara) +#, no-wrap +msgid "Works on a CentOS-based Atomic Host image that provides a minimal image using rpm-ostree, as well as tools and documentation for users to create their own CentOS/Atomic images with custom package sets. " +msgstr "Trabaja en una imagen de Atomic Host basada en CentOS que provee una imagen mínima usando rpm-ostree, así como herramientas y documentación para que los usuarios puedan crear su propia imagen de Atomic Host basada en CentOS con paquetes personalizados" + +#: SVG/05-centos-sig-atomic.svg:398(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/Atomic" +msgstr "" + +#: SVG/04-centos-sig-artwork.svg:380(tspan) +#, no-wrap +msgid "CentOS Artwork SIG" +msgstr "" + +#: SVG/04-centos-sig-artwork.svg:395(flowPara) +#, no-wrap +msgid "Exists to produce The CentOS Project Visual Identity. The group is focused in producing high quality artwork for each visual medium The CentOS Project manifests its existence on reinforcing the visual connection between them all to reach the highest visual recognition." +msgstr "Existe para producir la identidad visual del Proyecto CentOS. El grupo está enfocado en producir trabajos artísticos de alta calidad para cada medio donde el Proyecto CentOS manifiesta su existencia reforzando la conexión visual entre ellos para alcanzar el reconocimiento visual más alto." + +#: SVG/04-centos-sig-artwork.svg:405(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/Artwork" +msgstr "" + +#: SVG/03-centos-sig-altarch.svg:337(tspan) +#, no-wrap +msgid "CentOS Alternate Architectures SIG" +msgstr "" + +#: SVG/03-centos-sig-altarch.svg:352(flowPara) +#, no-wrap +msgid "Extends usability base beyond basic architectures (x86_64), including ARM 64-bit and 32-bit, x86 32-bit, Power 8, and so forth." +msgstr "Extiende la base de uso más allá de las arquitecturas básicas (x86_64), incluyendo ARM 64-bit y 32-bit, x86 32-bit, Power 8, entre otras. " + +#: SVG/03-centos-sig-altarch.svg:362(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/AltArch" +msgstr "" + +#: SVG/02-centos-sig-core.svg:380(tspan) +#, no-wrap +msgid "CentOS Core SIG" +msgstr "" + +#: SVG/02-centos-sig-core.svg:395(flowPara) +#, no-wrap +msgid "Produces the CentOS Linux distribution. Some of the actions this group is focused on include to build, sign and release all CentOS Linux packages, as well as create and release all official CentOS Linux ISOs." +msgstr "Produce la distribución CentOS Linux. Algunas de las acciones sobre las cuales este grupo tiene foco incluyen la construcción, firma, y entrega de todos los paquetes CentOS Linux y los ISOs oficiales." + +#: SVG/02-centos-sig-core.svg:405(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/Core" +msgstr "" + +#: SVG/01-centos-welcome.svg:1062(tspan) +#, no-wrap +msgid "CentOS" +msgstr "" + +#: SVG/01-centos-welcome.svg:1060(tspan) +#, no-wrap +msgid "Welcome to Linux" +msgstr "Bienvenido a Linux" + +#: SVG/01-centos-welcome.svg:1073(tspan) +#, no-wrap +msgid "THE COMMUNITY ENTERPRISE OPERATING SYSTEM" +msgstr "EL SISTEMA OPERATIVO DE LA COMUNIDAD EMPRESARIAL" + +#: SVG/01-centos-welcome.svg:1084(tspan) +#, no-wrap +msgid "https://www.centos.org/" +msgstr "" + +#. Put one translator per line, in the form of NAME , YEAR1, YEAR2 +#: SVG/01-centos-welcome.svg:0(None) +msgid "translator-credits" +msgstr "Alain Reguera Delgado , 2019" + +#~ msgid "Produces the CentOS Linux Distribution." +#~ msgstr "Produce la distribución CentOS Linux." + +#~ msgid "" +#~ "Provide an upstream development area for various software collections and " +#~ "related tools." +#~ msgstr "" +#~ "Ofrece un área para el desarrollo contracorriente de varias colecciones " +#~ "de software y herramientas relacionadas." + +#~ msgid "" +#~ "The AtomicSIG aims to build, deliver and maintain an Atomic Host for " +#~ "CentOS Linux. And help bootstrap tooling around the effort." +#~ msgstr "" +#~ "Apunta a construir, entregar y mantener Atomic Host para CentOS Linux. " +#~ "También ayudar a impulsar herramientas alrededor de este esfuerzo." + +#~ msgid "" +#~ "Look into issues around running CentOS Linux Instances in various private " +#~ "and public clouds." +#~ msgstr "" +#~ "Atiende los temas relacionados a la ejecución de instancias de CentOS " +#~ "Linux en los distintos tipos de nubes privadas y públicas." + +#~ msgid "" +#~ "Look into issues around running Cloud Infrastructure / Hypervisor for " +#~ "onpremise clouds as well as support other SIGs and projects looking to " +#~ "consume some of the shared resources around on-premise cloud infra." +#~ msgstr "" +#~ "Trabaja temas de infraestructura/hipervisores en nubes de tipo on-" +#~ "premise. También ofrece soporte a otros SIGs y proyectos que buscan " +#~ "consumir estos tipos de recursos compartidos." + +#~ msgid "Improving the user experience with high quality artwork." +#~ msgstr "" +#~ "Busca mejorar la experiencia de usuario con trabajos artísticos de alta " +#~ "calidad." + +#~ msgid "CentOS Operational Tooling SIG" +#~ msgstr "CentOS SIG de Herramientas Operacionales" + +#~ msgid "Logging, monitoring and other operational tool development." +#~ msgstr "" +#~ "Desarrollo de herramientas operacionales de registro, monitoreo, etc." + +#~ msgid "CentOS Virtualization SIG" +#~ msgstr "CentOS SIG de Virtualización" + +#~ msgid "The Community ENTerprise Operating System" +#~ msgstr "El sistema operativo de la comunidad empresarial" + +#~ msgid "" +#~ "Cover configuration management and system lifecycle management on CentOS. " +#~ msgstr "" +#~ "Cover configuration management and system lifecycle management on CentOS. " + +#~ msgid "" +#~ "Work on delivering multiple PaaS Stacks that are built, tested and " +#~ "delivered into the CentOS Ecosystem for end user consumption." +#~ msgstr "" +#~ "Trabaja la entrega de múltiples PaaS Stacks construidos, probados y " +#~ "entregados en el ecosistema de CentOS para el consumo de los usuarios " +#~ "finales." diff --git a/rnotes/PO/es_ES.pot b/rnotes/PO/es_ES.pot new file mode 100644 index 0000000..9d7e45c --- /dev/null +++ b/rnotes/PO/es_ES.pot @@ -0,0 +1,279 @@ +msgid "" +msgstr "" +"Project-Id-Version: RNOTES\n" +"POT-Creation-Date: 2019-04-20 21:21-0300\n" +"PO-Revision-Date: 2019-04-20 21:21-0300\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es_ES\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: SVG/16-centos-sig-virt.svg:304(format) +#: SVG/15-centos-sig-storage.svg:293(format) +#: SVG/14-centos-sig-sc.svg:327(format) +#: SVG/13-centos-sig-publicci.svg:304(format) +#: SVG/12-centos-sig-promo.svg:304(format) +#: SVG/11-centos-sig-paas.svg:304(format) +#: SVG/10-centos-sig-optools.svg:316(format) +#: SVG/09-centos-sig-nfv.svg:304(format) SVG/08-centos-sig-cm.svg:304(format) +#: SVG/07-centos-sig-cloudinstance.svg:304(format) +#: SVG/06-centos-sig-cloud.svg:304(format) +#: SVG/05-centos-sig-atomic.svg:309(format) +#: SVG/04-centos-sig-artwork.svg:339(format) +#: SVG/03-centos-sig-altarch.svg:268(format) +#: SVG/02-centos-sig-core.svg:305(format) SVG/01-centos-welcome.svg:875(format) +msgid "image/svg+xml" +msgstr "" + +#: SVG/16-centos-sig-virt.svg:368(tspan) +#, no-wrap +msgid "CentOS Virt SIG" +msgstr "" + +#: SVG/16-centos-sig-virt.svg:383(flowPara) +#, no-wrap +msgid "Delivers a user consumable full stack for virtualization technologies that want to work with the SIG." +msgstr "" + +#: SVG/16-centos-sig-virt.svg:393(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/Virtualization" +msgstr "" + +#: SVG/15-centos-sig-storage.svg:374(tspan) +#, no-wrap +msgid "CentOS Storage SIG" +msgstr "" + +#: SVG/15-centos-sig-storage.svg:389(flowPara) +#, no-wrap +msgid "Ensures that all Open Source storage options seeking to utilize CentOS as a delivery platform have a voice in packaging, orchestration, deployment, and related work. " +msgstr "" + +#: SVG/15-centos-sig-storage.svg:399(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/Storage" +msgstr "" + +#: SVG/14-centos-sig-sc.svg:512(tspan) +#, no-wrap +msgid "CentOS Software Collection SIG" +msgstr "" + +#: SVG/14-centos-sig-sc.svg:527(flowPara) +#, no-wrap +msgid "Provides an upstream development area for various software collections and related tools. Developers can build on and extend existing SCLs, so they don't need to re-invent the wheel or take responsibility for packaging unnecessary dependencies. " +msgstr "" + +#: SVG/14-centos-sig-sc.svg:537(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/SCLo" +msgstr "" + +#: SVG/13-centos-sig-publicci.svg:374(tspan) +#, no-wrap +msgid "CentOS Public CI SIG" +msgstr "" + +#: SVG/13-centos-sig-publicci.svg:389(flowPara) +#, no-wrap +msgid "Provides a public testing and proving infrastructure." +msgstr "" + +#: SVG/13-centos-sig-publicci.svg:399(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/PublicCI" +msgstr "" + +#: SVG/12-centos-sig-promo.svg:364(tspan) +#, no-wrap +msgid "CentOS Promotion SIG" +msgstr "" + +#: SVG/12-centos-sig-promo.svg:379(flowPara) +#, no-wrap +msgid "Provides promotion, and consistent messaging, of CentOS, both at physical events and online. " +msgstr "" + +#: SVG/12-centos-sig-promo.svg:389(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/Promo" +msgstr "" + +#: SVG/11-centos-sig-paas.svg:368(tspan) +#, no-wrap +msgid "CentOS PaaS SIG" +msgstr "" + +#: SVG/11-centos-sig-paas.svg:383(flowPara) +#, no-wrap +msgid "Delivers multiple PaaS Stacks that are built, tested and delivered into the CentOS Ecosystem for end user consumption, run as a service and also provided in various formats (rpms, containers, images, etc.) for other efforts in the CentOS Ecosystem, that can derive value from this content." +msgstr "" + +#: SVG/11-centos-sig-paas.svg:397(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/PaaS" +msgstr "" + +#: SVG/10-centos-sig-optools.svg:501(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/OpsTools" +msgstr "" + +#: SVG/10-centos-sig-optools.svg:512(tspan) +#, no-wrap +msgid "CentOS OpsTools SIG" +msgstr "" + +#: SVG/10-centos-sig-optools.svg:527(flowPara) +#, no-wrap +msgid "Provides tools for operators, system administrators, devops and developers doing infrastructure engineering on content based on CentOS Linux. " +msgstr "" + +#: SVG/09-centos-sig-nfv.svg:368(tspan) +#, no-wrap +msgid "CentOS NFV SIG" +msgstr "" + +#: SVG/09-centos-sig-nfv.svg:383(flowPara) +#, no-wrap +msgid "Provides a CentOS-based stack that will serve as a platform for the deployment and testing of virtual network functions (VNFs) and NFV component packages on compliant CentOS platform. " +msgstr "" + +#: SVG/09-centos-sig-nfv.svg:393(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/NFV" +msgstr "" + +#: SVG/08-centos-sig-cm.svg:374(tspan) +#, no-wrap +msgid "CentOS Config Management SIG" +msgstr "" + +#: SVG/08-centos-sig-cm.svg:389(flowPara) +#, no-wrap +msgid "Aims to bridge the gap between Config Management tools Power users and traditional users by producing and release RPM packages of several Configuration Management and Orchestration tools. " +msgstr "" + +#: SVG/08-centos-sig-cm.svg:399(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/ConfigManagementSIG" +msgstr "" + +#: SVG/07-centos-sig-cloudinstance.svg:371(tspan) +#, no-wrap +msgid "CentOS Cloud Instance SIG" +msgstr "" + +#: SVG/07-centos-sig-cloudinstance.svg:386(flowPara) +#, no-wrap +msgid "Works on the CentOS Linux cloud instances, either on or off premise or in third party Vendor establishments." +msgstr "" + +#: SVG/07-centos-sig-cloudinstance.svg:396(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/CloudInstance" +msgstr "" + +#: SVG/06-centos-sig-cloud.svg:371(tspan) +#, no-wrap +msgid "CentOS Cloud SIG" +msgstr "" + +#: SVG/06-centos-sig-cloud.svg:386(flowPara) +#, no-wrap +msgid "Works on packaging and maintaining different FOSS based Private cloud infrastructure applications that one can install and run natively on CentOS." +msgstr "" + +#: SVG/06-centos-sig-cloud.svg:396(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/Cloud" +msgstr "" + +#: SVG/05-centos-sig-atomic.svg:373(tspan) +#, no-wrap +msgid "CentOS Atomic SIG" +msgstr "" + +#: SVG/05-centos-sig-atomic.svg:388(flowPara) +#, no-wrap +msgid "Works on a CentOS-based Atomic Host image that provides a minimal image using rpm-ostree, as well as tools and documentation for users to create their own CentOS/Atomic images with custom package sets. " +msgstr "" + +#: SVG/05-centos-sig-atomic.svg:398(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/Atomic" +msgstr "" + +#: SVG/04-centos-sig-artwork.svg:380(tspan) +#, no-wrap +msgid "CentOS Artwork SIG" +msgstr "" + +#: SVG/04-centos-sig-artwork.svg:395(flowPara) +#, no-wrap +msgid "Exists to produce The CentOS Project Visual Identity. The group is focused in producing high quality artwork for each visual medium The CentOS Project manifests its existence on reinforcing the visual connection between them all to reach the highest visual recognition." +msgstr "" + +#: SVG/04-centos-sig-artwork.svg:405(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/Artwork" +msgstr "" + +#: SVG/03-centos-sig-altarch.svg:337(tspan) +#, no-wrap +msgid "CentOS Alternate Architectures SIG" +msgstr "" + +#: SVG/03-centos-sig-altarch.svg:352(flowPara) +#, no-wrap +msgid "Extends usability base beyond basic architectures (x86_64), including ARM 64-bit and 32-bit, x86 32-bit, Power 8, and so forth." +msgstr "" + +#: SVG/03-centos-sig-altarch.svg:362(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/AltArch" +msgstr "" + +#: SVG/02-centos-sig-core.svg:380(tspan) +#, no-wrap +msgid "CentOS Core SIG" +msgstr "" + +#: SVG/02-centos-sig-core.svg:395(flowPara) +#, no-wrap +msgid "Produces the CentOS Linux distribution. Some of the actions this group is focused on include to build, sign and release all CentOS Linux packages, as well as create and release all official CentOS Linux ISOs." +msgstr "" + +#: SVG/02-centos-sig-core.svg:405(tspan) +#, no-wrap +msgid "https://wiki.centos.org/SpecialInterestGroup/Core" +msgstr "" + +#: SVG/01-centos-welcome.svg:1062(tspan) +#, no-wrap +msgid "CentOS" +msgstr "" + +#: SVG/01-centos-welcome.svg:1060(tspan) +#, no-wrap +msgid "Welcome to Linux" +msgstr "" + +#: SVG/01-centos-welcome.svg:1073(tspan) +#, no-wrap +msgid "THE COMMUNITY ENTERPRISE OPERATING SYSTEM" +msgstr "" + +#: SVG/01-centos-welcome.svg:1084(tspan) +#, no-wrap +msgid "https://www.centos.org/" +msgstr "" + +#. Put one translator per line, in the form of NAME , YEAR1, YEAR2 +#: SVG/01-centos-welcome.svg:0(None) +msgid "translator-credits" +msgstr "" diff --git a/rnotes/README.adoc b/rnotes/README.adoc new file mode 100644 index 0000000..ef7ee16 --- /dev/null +++ b/rnotes/README.adoc @@ -0,0 +1,10 @@ += CentOS Rolling Notes + +The CentOS rolling notes (rnotes) appear when you are installing CentOS Linux, +exactly once you have done with configuration screens and you are waiting for +the installer to finish its magic. The rolling notes are great to promote The +CentOS Project, as well as features in the current release of CentOS Linux +being installed. + +.Rolling note describing CentOS Core SIG +image::screenshot.png[width=500] diff --git a/rnotes/SVG/01-centos-welcome.svg b/rnotes/SVG/01-centos-welcome.svg new file mode 100644 index 0000000..bf2ab94 --- /dev/null +++ b/rnotes/SVG/01-centos-welcome.svg @@ -0,0 +1,1087 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Welcome to CentOS Linux + THE COMMUNITY ENTERPRISE OPERATING SYSTEM + https://www.centos.org/ + + + diff --git a/rnotes/SVG/02-centos-sig-core.svg b/rnotes/SVG/02-centos-sig-core.svg new file mode 100644 index 0000000..ffb5be9 --- /dev/null +++ b/rnotes/SVG/02-centos-sig-core.svg @@ -0,0 +1,407 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + CentOS Core SIG + Produces the CentOS Linux distribution. Some of the actions this group is focused on include to build, sign and release all CentOS Linux packages, as well as create and release all official CentOS Linux ISOs. https://wiki.centos.org/SpecialInterestGroup/Core + + diff --git a/rnotes/SVG/03-centos-sig-altarch.svg b/rnotes/SVG/03-centos-sig-altarch.svg new file mode 100644 index 0000000..b109ba4 --- /dev/null +++ b/rnotes/SVG/03-centos-sig-altarch.svg @@ -0,0 +1,364 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + CentOS Alternate Architectures SIG + Extends usability base beyond basic architectures (x86_64), including ARM 64-bit and 32-bit, x86 32-bit, Power 8, and so forth. https://wiki.centos.org/SpecialInterestGroup/AltArch + + diff --git a/rnotes/SVG/04-centos-sig-artwork.svg b/rnotes/SVG/04-centos-sig-artwork.svg new file mode 100644 index 0000000..6b002b3 --- /dev/null +++ b/rnotes/SVG/04-centos-sig-artwork.svg @@ -0,0 +1,467 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + CentOS Artwork SIG + Exists to produce The CentOS Project Visual Identity. The group is focused in producing high quality artwork for each visual medium The CentOS Project manifests its existence on reinforcing the visual connection between them all to reach the highest visual recognition. https://wiki.centos.org/SpecialInterestGroup/Artwork + + + + + + + + + + + + + + + diff --git a/rnotes/SVG/05-centos-sig-atomic.svg b/rnotes/SVG/05-centos-sig-atomic.svg new file mode 100644 index 0000000..c5c8fb9 --- /dev/null +++ b/rnotes/SVG/05-centos-sig-atomic.svg @@ -0,0 +1,400 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + CentOS Atomic SIG + Works on a CentOS-based Atomic Host image that provides a minimal image using rpm-ostree, as well as tools and documentation for users to create their own CentOS/Atomic images with custom package sets. https://wiki.centos.org/SpecialInterestGroup/Atomic + + diff --git a/rnotes/SVG/06-centos-sig-cloud.svg b/rnotes/SVG/06-centos-sig-cloud.svg new file mode 100644 index 0000000..c522527 --- /dev/null +++ b/rnotes/SVG/06-centos-sig-cloud.svg @@ -0,0 +1,398 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + CentOS Cloud SIG + Works on packaging and maintaining different FOSS based Private cloud infrastructure applications that one can install and run natively on CentOS. https://wiki.centos.org/SpecialInterestGroup/Cloud + + diff --git a/rnotes/SVG/07-centos-sig-cloudinstance.svg b/rnotes/SVG/07-centos-sig-cloudinstance.svg new file mode 100644 index 0000000..bcdf453 --- /dev/null +++ b/rnotes/SVG/07-centos-sig-cloudinstance.svg @@ -0,0 +1,398 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + CentOS Cloud Instance SIG + Works on the CentOS Linux cloud instances, either on or off premise or in third party Vendor establishments. https://wiki.centos.org/SpecialInterestGroup/CloudInstance + + diff --git a/rnotes/SVG/08-centos-sig-cm.svg b/rnotes/SVG/08-centos-sig-cm.svg new file mode 100644 index 0000000..5ccc699 --- /dev/null +++ b/rnotes/SVG/08-centos-sig-cm.svg @@ -0,0 +1,401 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + CentOS Config Management SIG + Aims to bridge the gap between Config Management tools Power users and traditional users by producing and release RPM packages of several Configuration Management and Orchestration tools. https://wiki.centos.org/SpecialInterestGroup/ConfigManagementSIG + + diff --git a/rnotes/SVG/09-centos-sig-nfv.svg b/rnotes/SVG/09-centos-sig-nfv.svg new file mode 100644 index 0000000..7ed0996 --- /dev/null +++ b/rnotes/SVG/09-centos-sig-nfv.svg @@ -0,0 +1,395 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + CentOS NFV SIG + Provides a CentOS-based stack that will serve as a platform for the deployment and testing of virtual network functions (VNFs) and NFV component packages on compliant CentOS platform. https://wiki.centos.org/SpecialInterestGroup/NFV + + diff --git a/rnotes/SVG/10-centos-sig-optools.svg b/rnotes/SVG/10-centos-sig-optools.svg new file mode 100644 index 0000000..1634225 --- /dev/null +++ b/rnotes/SVG/10-centos-sig-optools.svg @@ -0,0 +1,528 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + https://wiki.centos.org/SpecialInterestGroup/OpsTools + CentOS OpsTools SIG + Provides tools for operators, system administrators, devops and developers doing infrastructure engineering on content based on CentOS Linux. + diff --git a/rnotes/SVG/11-centos-sig-paas.svg b/rnotes/SVG/11-centos-sig-paas.svg new file mode 100644 index 0000000..e93cb75 --- /dev/null +++ b/rnotes/SVG/11-centos-sig-paas.svg @@ -0,0 +1,399 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + CentOS PaaS SIG + Delivers multiple PaaS Stacks that are built, tested and delivered into the CentOS Ecosystem for end user consumption, run as a service and also provided in various formats (rpms, containers, images, etc.) for other efforts in the CentOS Ecosystem, that can derive value from this content. https://wiki.centos.org/SpecialInterestGroup/PaaS + + diff --git a/rnotes/SVG/12-centos-sig-promo.svg b/rnotes/SVG/12-centos-sig-promo.svg new file mode 100644 index 0000000..3ffa3c7 --- /dev/null +++ b/rnotes/SVG/12-centos-sig-promo.svg @@ -0,0 +1,391 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + CentOS Promotion SIG + Provides promotion, and consistent messaging, of CentOS, both at physical events and online. https://wiki.centos.org/SpecialInterestGroup/Promo + + diff --git a/rnotes/SVG/13-centos-sig-publicci.svg b/rnotes/SVG/13-centos-sig-publicci.svg new file mode 100644 index 0000000..5180bf2 --- /dev/null +++ b/rnotes/SVG/13-centos-sig-publicci.svg @@ -0,0 +1,401 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + CentOS Public CI SIG + Provides a public testing and proving infrastructure. https://wiki.centos.org/SpecialInterestGroup/PublicCI + + diff --git a/rnotes/SVG/14-centos-sig-sc.svg b/rnotes/SVG/14-centos-sig-sc.svg new file mode 100644 index 0000000..d3f80e9 --- /dev/null +++ b/rnotes/SVG/14-centos-sig-sc.svg @@ -0,0 +1,539 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + CentOS Software Collection SIG + Provides an upstream development area for various software collections and related tools. Developers can build on and extend existing SCLs, so they don't need to re-invent the wheel or take responsibility for packaging unnecessary dependencies. https://wiki.centos.org/SpecialInterestGroup/SCLo + + diff --git a/rnotes/SVG/15-centos-sig-storage.svg b/rnotes/SVG/15-centos-sig-storage.svg new file mode 100644 index 0000000..90adb35 --- /dev/null +++ b/rnotes/SVG/15-centos-sig-storage.svg @@ -0,0 +1,401 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + CentOS Storage SIG + Ensures that all Open Source storage options seeking to utilize CentOS as a delivery platform have a voice in packaging, orchestration, deployment, and related work. https://wiki.centos.org/SpecialInterestGroup/Storage + + diff --git a/rnotes/SVG/16-centos-sig-virt.svg b/rnotes/SVG/16-centos-sig-virt.svg new file mode 100644 index 0000000..c3bf63a --- /dev/null +++ b/rnotes/SVG/16-centos-sig-virt.svg @@ -0,0 +1,395 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + CentOS Virt SIG + Delivers a user consumable full stack for virtualization technologies that want to work with the SIG. https://wiki.centos.org/SpecialInterestGroup/Virtualization + + diff --git a/rnotes/screenshot.png b/rnotes/screenshot.png new file mode 100644 index 0000000..2cb0fb9 Binary files /dev/null and b/rnotes/screenshot.png differ