-
Notifications
You must be signed in to change notification settings - Fork 14.5k
Commit
- Loading branch information
There are no files selected for viewing
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
layout: index | ||
title: ओपन सोर्स गाइड | ||
lang: hi | ||
permalink: /hi/ | ||
--- |
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
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: मित्र | ||
|
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}"; | ||
} | ||
} | ||
} | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.