Skip to content

Commit

Permalink
Merge branch 'main' into updating-guides
Browse files Browse the repository at this point in the history
  • Loading branch information
CBID2 authored Sep 28, 2023
2 parents d1a9fce + 8fff06c commit 87e95b9
Show file tree
Hide file tree
Showing 16 changed files with 2,865 additions and 0 deletions.
281 changes: 281 additions & 0 deletions _articles/hi/best-practices.md

Large diffs are not rendered by default.

278 changes: 278 additions & 0 deletions _articles/hi/building-community.md

Large diffs are not rendered by default.

114 changes: 114 additions & 0 deletions _articles/hi/code-of-conduct.md

Large diffs are not rendered by default.

148 changes: 148 additions & 0 deletions _articles/hi/finding-users.md

Large diffs are not rendered by default.

180 changes: 180 additions & 0 deletions _articles/hi/getting-paid.md

Large diffs are not rendered by default.

520 changes: 520 additions & 0 deletions _articles/hi/how-to-contribute.md

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions _articles/hi/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
layout: index
title: ओपन सोर्स गाइड
lang: hi
permalink: /hi/
---
157 changes: 157 additions & 0 deletions _articles/hi/leadership-and-governance.md

Large diffs are not rendered by default.

162 changes: 162 additions & 0 deletions _articles/hi/legal.md

Large diffs are not rendered by default.

221 changes: 221 additions & 0 deletions _articles/hi/maintaining-balance-for-open-source-maintainers.md

Large diffs are not rendered by default.

128 changes: 128 additions & 0 deletions _articles/hi/metrics.md

Large diffs are not rendered by default.

356 changes: 356 additions & 0 deletions _articles/hi/starting-a-project.md

Large diffs are not rendered by default.

32 changes: 32 additions & 0 deletions _data/locales/hi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
hi:
locale_name: Hindi
nav:
about: बारे में
contribute: योगदान करें
index:
lead: ओपन सोर्स सॉफ़्टवेयर उन लोगों द्वारा बनाया जाता है जैसे कि आप। जानें कि आप कैसे अपने प्रोजेक्ट को शुरू कर सकते हैं और उसे बढ़ा सकते हैं।
opensourcefriday: यह शुक्रवार है! कुछ घंटे निवेश करके उन सॉफ़्टवेयर में योगदान करें जिन्हें आप उपयोग करते हैं और पसंद करते हैं
article:
table_of_contents: सामग्री की सूची
back_to_all_guides: सभी मार्गदर्शिकाओं पर वापस जाएं
related_guides: संबंधित मार्गदर्शिकाएं
footer:
contribute:
heading: योगदान करें
description: क्या आपका कोई सुझाव है? यह सामग्री ओपन सोर्स है। हमें इसे सुधारने में मदद करें।
button: योगदान करें
subscribe:
heading: संपर्क में रहें
description: गिटहब की नवीनतम ओपन सोर्स युक्तियों और संसाधनों की पहली जानकारी पाने के लिए पहले ही सुनें।
label: ईमेल पता
button: सदस्यता लें
byline:
# [code], [love], and [github] will be replaced by octicons
format: "[code] के साथ [love] द्वारा [github] और [friends]"
# Label for code octicon
code_label: कोड
# Label for love octicon
love_label: प्रेम
# Label for the contributors link
friends_label: मित्र

1 change: 1 addition & 0 deletions assets/css/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ $marketing-font-path: "/assets/fonts/";
@import "covers.scss";
@import "anchor.scss";
@import "button.scss";
@import "translate.scss";
41 changes: 41 additions & 0 deletions assets/css/translate.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
// Translation results of " Section x" in articles
// Autor: Olsza
// License: CC-BY-4.0

// Enter the locale code and the translation of "Section" in the language.
// The country code should be the same as the value of the lang attribute in html (use "-" instead of "_")
$section_translation: (
"de": "Abschnitt",
"el": "",
"en": "Section",
"eo": "Sekcio",
"es": "Sección",
"fa": "",
"fr": "Partie",
"hu": "",
"id": "",
"ja": "",
"ko": "섹션",
"ms": "",
"nl": "Sectie",
"pl": "Rozdział",
"pt": "",
"ro": "",
"ru": "",
"ta": "",
"tr": "",
"zh-hant": "章節",
"zh-hans": "章节",
);

@each $locale, $translation in $section_translation {
@if $translation != "" {
html[lang="#{$locale}"] .article-body {
@for $i from 1 through 9 {
h2:nth-of-type(#{$i}):before {
content: "#{$translation} #{$i}";
}
}
}
}
}
240 changes: 240 additions & 0 deletions node_modules/.package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 87e95b9

Please sign in to comment.