translations: init spanish

Signed-off-by: Federico Damián Schonborn <federicoschonborn@disroot.org>
This commit is contained in:
Federico Damián Schonborn 2024-07-15 17:13:43 -03:00
parent 131d0d01b5
commit 4e613a0d93
Signed by: FedericoSchonborn
SSH key fingerprint: SHA256:VQU8kjdC7yKiBGpoDv4uDtfSnUdM0OziTRPiRTrmK7c
2 changed files with 40 additions and 0 deletions

View file

@ -0,0 +1,37 @@
{
"root.description": "Una alternativa al ecosistema Nix",
"header.community": "Comunidad",
"goals.title": "Metas",
"goals.independent.title": "Independiente",
"goals.independent": "Crearemos una alternativa a NixPkgs y NixOS. También vamos a proveer nuestra propia Integración Continua y Cache de Binarios tanto como otros servicios necesarios para el ecosistema. Soporte adicional para proyectos como Nix Darwin y Home Manager va a ser considerado.",
"goals.gov.title": "Gobernanza",
"goals.gov.wiki": "Aprende sobre las estructuras de gobierno de Aux.",
"goals.gov": "Se va a utilizar un modelo democrático con posiciones electas para administrar el proyecto. Un comité directivo va a proveer dirección con comités adicionales manejando tareas logisticas específicas. Características o proyectos individuales van a ser propiedad de Grupos de Interés Especial (SIG). Los SIG colaborarán dentro de Grupos de Trabajo (WG) para lograr sus metas. Cada comité y grupo tendrán sus propias metas, requerimientos, y proceso de administración claramente definidos.",
"goals.education.title": "Educación",
"goals.education": "Documentación, tutoriales, guías y ejempos unificados proveerán una mejor experiencia de introducción para recién llegados y una ciclo de iteración más rápida para expertos.",
"roadmap.title": "Hoja de Ruta",
"roadmap.soft_fork.title": "Preparación y Planeamiento",
"roadmap.soft_fork.1": "Esta fase inicial va a involucrar una estructura administrativa particular debido a su naturaleza de arranque. Como tal, los Valores, Metas y Hoja de Ruta fijadas por el projecto van a servir para mantener a todos los contribuyentes alineados y seguros sabiendo que el trabajo que han contribuido no cambiará. Se formarán grupos para abordar los dominios separados del proyecto, pero aún no serán estructuras de gobierno funcionales.",
"roadmap.soft_fork.2": "Creation of community spaces, organization, and planning for the following phases are key points of this phase. Before technical work can be done, a well thought out solution and proof of concept must exist to drive the following implementation phase.",
"roadmap.hard_fork.title": "Implementation",
"roadmap.hard_fork.1": "Like the previous phase, this phase will involve loosely-formed groups which do not fully adhere to the standards of our envisioned governance structures yet. However, as the project progresses to the next phase, these groups will be transitioned to proper governance units.",
"roadmap.hard_fork.2": "This phase involves the creation of an alternative to NixPkgs and NixOS using the plan created from the Setup & Planning phase. In addition to technical implementation we will also be creating Continuous Integration infrastructure. Depending on availability and funding, a Binary Cache may also be created.",
"roadmap.hard_fork.3": "The project may move to the next phase once a core set of packages are created and stabilized.",
"roadmap.organization.title": "Solidification",
"roadmap.organization.1": "Implementation continues during this phase alongside structural changes to governance. Committees, Special Interest Groups, and Working Groups are now expected to establish charters defining their responsibilities and memberships. Group members will remain the same as the previous phases until reaching the last phase of this roadmap.",
"roadmap.organization.2": "This phase is complete once a usable OS and package set are available.",
"roadmap.alignment.title": "Polish",
"roadmap.alignment.1": "By this point, we've done it. We have created a sustainable, independent fork of the Nix ecosystem. Now that the initial work has been completed we will begin the governance rotation process with our first elections and education as to how project governance works.",
"roadmap.alignment.2": "Documentation, project branding, and packages will be polished and presented as a fully stable release. From this point forward the Steering Committee will be managing the creation of Special Interest Groups and other necessary Committees. All future enhancements will be suggested in Aux Enhancement Proposals which encourage existing SIGs to implement features or encourage the formation of a new SIG to be created for such a purpose. This is not the end, this is only the beginning for Aux.",
"values.title": "Values",
"values.rep.title": "Representation",
"values.rep": "Contributors should have their views represented and organizational structure should be established democratically.",
"values.kindness.title": "Kindness",
"values.kindness": "The project should be welcoming and a safe place for people to participate.",
"values.collab.title": "Collaboration",
"values.collab": "Communication and cooperation should be encouraged.",
"values.sustainability.title": "Sustainability",
"values.sustainability": "Workload, finance, scope, and burnout should all be considered carefully to ensure that the project is stable.",
"values.accessibility.title": "Accessibility",
"values.accessibility": "Elitism is unwelcome, our knowledge is here to be shared and we should provide the tools to help everyone succeed and learn."
}

View file

@ -1,11 +1,13 @@
import de from "../../public/locales/de/translations.json";
import dk from "../../public/locales/dk/translations.json";
import en from "../../public/locales/en/translations.json";
import es from "../../public/locales/es/translations.json";
export const languages = {
de: "Deutsch",
dk: "Dansk",
en: "English",
es: "Español",
};
export const defaultLang = "en";
@ -14,4 +16,5 @@ export const ui = {
de,
dk,
en,
es,
} as const;