diff --git a/README.md b/README.md index 6657a5e..21afc18 100644 --- a/README.md +++ b/README.md @@ -1,35 +1,35 @@ -# Airbnb CSS / Sass Styleguide +# ‏راهنمای سبک Airbnb CSS / Sass -*A mostly reasonable approach to CSS and Sass* +*یک رویکرد عمدتا معقول به CSS و Sass* -## Table of Contents +## فهرست مطالب -1. [Terminology](#terminology) - - [Rule Declaration](#rule-declaration) - - [Selectors](#selectors) - - [Properties](#properties) +1. [ترمینولوژی](#ترمینولوژی) + - [اعلامیه قوانین](#اعلامیه-قوانین) + - [انتخابگرها](#انتخابگرها) + - [ویژگی ها](#ویژگی-ها) 1. [CSS](#css) - - [Formatting](#formatting) - - [Comments](#comments) - - [OOCSS and BEM](#oocss-and-bem) - - [ID Selectors](#id-selectors) - - [JavaScript hooks](#javascript-hooks) - - [Border](#border) + - [قالب بندی](#قالب-بندی) + - [توضیحات](#توضیحات) + - [OOCSS و BEM](#oocss-و-bem) + - [انتخابگرهای شناسه ای](#انتخابگرهای-شناسه-ای) + - [قلاب های جاوا اسکریپتی](#قلاب-های-جاوا-اسکریپتی) + - [حاشیه](#حاشیه) 1. [Sass](#sass) - - [Syntax](#syntax) - - [Ordering](#ordering-of-property-declarations) - - [Variables](#variables) - - [Mixins](#mixins) - - [Extend directive](#extend-directive) - - [Nested selectors](#nested-selectors) -1. [Translation](#translation) -1. [License](#license) + - [سینتکس](#سینتکس) + - [مرتب سازی](#مرتب-سازی-ویژگی-ها) + - [متغیر ها](#متغیر-ها) + - [میکسین ها(Mixins)](#mixins) + - [گسترش بخشنامه](#گسترش-بخشنامه) + - [انتخابگرهای تو در تو](#انتخابگرهای-تو-در-تو) +1. [ترجمه ها](#ترجمه-ها) +1. [مجوز](#مجوز) -## Terminology +## ترمینولوژی -### Rule declaration +### اعلامیه قوانین -A “rule declaration” is the name given to a selector (or a group of selectors) with an accompanying group of properties. Here's an example: +"اعلامیه قوانین" نامی است که به یک انتخابگر (یا گروهی از انتخابگرها) با گروهی از ویژگی ها داده می شود. برای مثال: ```css .listing { @@ -38,9 +38,9 @@ A “rule declaration” is the name given to a selector (or a group of selector } ``` -### Selectors +### انتخابگرها -In a rule declaration, “selectors” are the bits that determine which elements in the DOM tree will be styled by the defined properties. Selectors can match HTML elements, as well as an element's class, ID, or any of its attributes. Here are some examples of selectors: +در یک اعلان قانون، “انتخابگرها“ بیت‌هایی هستند که تعیین می‌کنند کدام عناصر در درخت DOM با ویژگی‌های تعریف‌شده استایل‌بندی شوند. انتخابگرها می توانند عناصر HTML و همچنین کلاس یک عنصر، شناسه یا هر یک از ویژگی های آن را مطابقت دهند. در اینجا چند نمونه از انتخابگرها آورده شده است: ```css .my-element-class { @@ -52,9 +52,9 @@ In a rule declaration, “selectors” are the bits that determine which element } ``` -### Properties +### ویژگی ها -Finally, properties are what give the selected elements of a rule declaration their style. Properties are key-value pairs, and a rule declaration can contain one or more property declarations. Property declarations look like this: +در نهایت، ویژگی‌ها چیزی هستند که به عناصر انتخابی یک اعلان قانون سبک خود را می‌دهند. ویژگی ها جفت های کلید-مقدار هستند و یک اعلان قانون می تواند حاوی یک یا چند اعلان ویژگی باشد. تعریف ویژگی ها به شرح زیر است: ```css /* some selector */ { @@ -63,23 +63,23 @@ Finally, properties are what give the selected elements of a rule declaration th } ``` -**[⬆ back to top](#table-of-contents)** +**[⬆ بازگشت به بالا](#فهرست-مطالب)** -## CSS +## ‏CSS -### Formatting +### قالب بندی -* Use soft tabs (2 spaces) for indentation. -* Prefer dashes over camelCasing in class names. - - Underscores and PascalCasing are okay if you are using BEM (see [OOCSS and BEM](#oocss-and-bem) below). -* Do not use ID selectors. -* When using multiple selectors in a rule declaration, give each selector its own line. -* Put a space before the opening brace `{` in rule declarations. -* In properties, put a space after, but not before, the `:` character. -* Put closing braces `}` of rule declarations on a new line. -* Put blank lines between rule declarations. +* از زبانه های نرم (2 فاصله) برای فرورفتگی استفاده کنید. +* در نام کلاس ها خط تیره را به camelCasing ترجیح دهید. + - اگر از BEM استفاده می کنید، زیرخط و PascalCasing مشکلی ندارد (به [OOCSS and BEM](#oocss-و-bem) در زیر مراجعه کنید). +* از انتخابگرهای ID استفاده نکنید. +* هنگام استفاده از چند انتخابگر در یک اعلان قانون، به هر انتخابگر خط خاص خود را بدهید. +* قبل از بریس باز `{` در اعلان‌های قوانین یک فاصله قرار دهید. +* در ویژگی ها، یک فاصله بعد از کاراکتر `:` قرار دهید، اما نه قبل از آن. +* بریس بسته `}` اعلان‌های قوانین را در یک خط جدید قرار دهید. +* خطوط خالی بین اعلامیه های قوانین قرار دهید. -**Bad** +**بد** ```css .avatar{ @@ -93,7 +93,7 @@ Finally, properties are what give the selected elements of a rule declaration th } ``` -**Good** +**خوب** ```css .avatar { @@ -108,36 +108,36 @@ Finally, properties are what give the selected elements of a rule declaration th } ``` -### Comments +### توضیحات -* Prefer line comments (`//` in Sass-land) to block comments. -* Prefer comments on their own line. Avoid end-of-line comments. -* Write detailed comments for code that isn't self-documenting: - - Uses of z-index - - Compatibility or browser-specific hacks +* برای بلوکی کردن نظرات، نظرات خط (`//` در Sass-land) را ترجیح دهید. +* نظرات را در خط خود ترجیح دهند. از اظهار نظرهای آخر خط خودداری کنید. +* برای کدهایی که مستندسازی نمی‌شوند، نظرات دقیق بنویسید: + - موارد استفاده از z-index + - سازگاری یا کد های خاص مرورگر -### OOCSS and BEM +### ‏OOCSS و BEM -We encourage some combination of OOCSS and BEM for these reasons: +ما ترکیبی از OOCSS و BEM را به دلایل زیر تشویق می کنیم: - * It helps create clear, strict relationships between CSS and HTML - * It helps us create reusable, composable components - * It allows for less nesting and lower specificity - * It helps in building scalable stylesheets + * این به ایجاد روابط واضح و دقیق بین CSS و HTML کمک می کند + * این به ما کمک می کند تا اجزای قابل استفاده مجدد و قابل ترکیب را ایجاد کنیم + * این امکان لانه سازی کمتر و ویژگی کمتر را فراهم می کند + * این به ساختن شیوه نامه های مقیاس پذیر کمک می کند -**OOCSS**, or “Object Oriented CSS”, is an approach for writing CSS that encourages you to think about your stylesheets as a collection of “objects”: reusable, repeatable snippets that can be used independently throughout a website. +**OOCSS**، یا "CSS شی گرا"، رویکردی برای نوشتن CSS است که شما را تشویق می کند تا به شیوه نامه های خود به عنوان مجموعه ای از "اشیاء" فکر کنید: قطعات قابل استفاده مجدد و تکرار شونده که می توانند به طور مستقل در یک وب سایت استفاده شوند. - * Nicole Sullivan's [OOCSS wiki](https://github.com/stubbornella/oocss/wiki) - * Smashing Magazine's [Introduction to OOCSS](http://www.smashingmagazine.com/2011/12/12/an-introduction-to-object-oriented-css-oocss/) + * Nicole Sullivan's [راهنمای OOCSS](https://github.com/stubbornella/oocss/wiki) + * Smashing Magazine's [مقدمه ای بر OOCSS](http://www.smashingmagazine.com/2011/12/12/an-introduction-to-object-oriented-css-oocss/) -**BEM**, or “Block-Element-Modifier”, is a _naming convention_ for classes in HTML and CSS. It was originally developed by Yandex with large codebases and scalability in mind, and can serve as a solid set of guidelines for implementing OOCSS. +**BEM** یا "Block-Element-Modifier" یک قرارداد _نامگذاری_ برای کلاس های HTML و CSS است. این در ابتدا توسط Yandex با پایگاه های کد بزرگ و مقیاس پذیری در ذهن توسعه داده شد و می تواند به عنوان مجموعه ای محکم از دستورالعمل ها برای پیاده سازی OOCSS باشد. * CSS Trick's [BEM 101](https://css-tricks.com/bem-101/) - * Harry Roberts' [introduction to BEM](http://csswizardry.com/2013/01/mindbemding-getting-your-head-round-bem-syntax/) + * Harry Roberts' [مقدمه ای بر BEM](http://csswizardry.com/2013/01/mindbemding-getting-your-head-round-bem-syntax/) -We recommend a variant of BEM with PascalCased “blocks”, which works particularly well when combined with components (e.g. React). Underscores and dashes are still used for modifiers and children. +ما یک نوع BEM را با "بلوک‌های PascalCased" توصیه می‌کنیم، که وقتی با کامپوننت‌ها (به عنوان مثال React) ترکیب می‌شود، به‌خوبی کار می‌کند. زیرخط و خط تیره هنوز برای اصلاح کننده ها و کودکان استفاده می شود. -**Example** +**مثال ها** ```jsx // ListingCard.jsx @@ -164,31 +164,31 @@ function ListingCard() { .ListingCard__content { } ``` - * `.ListingCard` is the “block” and represents the higher-level component - * `.ListingCard__title` is an “element” and represents a descendant of `.ListingCard` that helps compose the block as a whole. - * `.ListingCard--featured` is a “modifier” and represents a different state or variation on the `.ListingCard` block. +* ‏`.ListingCard` «بلوک» است و کامپوننت‌ سطح بالاتر را نشان می دهد +* ‏`.ListingCard__title` یک "عنصر" است و نشان دهنده نسل `.ListingCard` است که به ترکیب بلوک به عنوان یک کل کمک می کند. +* ‏`.ListingCard--featured` یک «تغییردهنده» است و وضعیت یا تغییر دیگری را در بلوک `.ListingCard` نشان می‌دهد. -### ID selectors +### انتخابگرهای شناسه ای -While it is possible to select elements by ID in CSS, it should generally be considered an anti-pattern. ID selectors introduce an unnecessarily high level of [specificity](https://developer.mozilla.org/en-US/docs/Web/CSS/Specificity) to your rule declarations, and they are not reusable. +در حالی که امکان انتخاب عناصر توسط ID در CSS وجود دارد، به طور کلی باید آن را یک ضد الگو در نظر گرفت. انتخابگرهای شناسه سطح غیرضروری بالایی از [ویژگی](https://developer.mozilla.org/en-US/docs/Web/CSS/Specificity) را به اعلامیه‌های قوانین شما معرفی می‌کنند و قابل استفاده مجدد نیستند. -For more on this subject, read [CSS Wizardry's article](http://csswizardry.com/2014/07/hacks-for-dealing-with-specificity/) on dealing with specificity. +برای اطلاعات بیشتر در مورد این موضوع، [مقاله CSS Wizardry](http://csswizardry.com/2014/07/hacks-for-dealing-with-specificity/) را در مورد پرداختن به ویژگی بخوانید. -### JavaScript hooks +### قلاب های جاوا اسکریپتی -Avoid binding to the same class in both your CSS and JavaScript. Conflating the two often leads to, at a minimum, time wasted during refactoring when a developer must cross-reference each class they are changing, and at its worst, developers being afraid to make changes for fear of breaking functionality. +از اتصال به یک کلاس در CSS و JavaScript خودداری کنید. تلفیق این دو اغلب منجر به اتلاف زمان در طول بازسازی مجدد می شود، زمانی که یک توسعه دهنده باید به هر کلاسی که در حال تغییر است ارجاع دهد، و در بدترین حالت، توسعه دهندگان از ترس شکستن عملکرد می ترسند که تغییراتی ایجاد کنند. -We recommend creating JavaScript-specific classes to bind to, prefixed with `.js-`: +توصیه می‌کنیم کلاس‌های اختصاصی جاوا اسکریپت را برای اتصال به آن‌ها با پیشوند `.js-` ایجاد کنید: ```html ``` -### Border +### حاشیه -Use `0` instead of `none` to specify that a style has no border. +از `0` به جای `none` استفاده کنید تا مشخص کنید یک سبک حاشیه ندارد. -**Bad** +**بد** ```css .foo { @@ -196,54 +196,54 @@ Use `0` instead of `none` to specify that a style has no border. } ``` -**Good** +**خوب** ```css .foo { border: 0; } ``` -**[⬆ back to top](#table-of-contents)** +**[⬆ بازگشت به بالا](#فهرست-مطالب)** -## Sass +## ‏Sass -### Syntax +### سینتکس -* Use the `.scss` syntax, never the original `.sass` syntax -* Order your regular CSS and `@include` declarations logically (see below) +* از نحو `.scss` استفاده کنید، نه از نحو اصلی `.sass`. +* اعلان‌های CSS معمولی و `@include` خود را به صورت منطقی ترتیب دهید (به زیر مراجعه کنید) -### Ordering of property declarations +### مرتب سازی ویژگی ها -1. Property declarations +1. تعریف ویژگی ها - List all standard property declarations, anything that isn't an `@include` or a nested selector. + همه تعریف ویژگی های استاندارد، هر چیزی که `@include` یا انتخابگر تودرتو نیست را لیست کنید. - ```scss +```scss .btn-green { background: green; font-weight: bold; // ... } - ``` +``` -2. `@include` declarations +2.‏`@include` تعریف - Grouping `@include`s at the end makes it easier to read the entire selector. +گروه بندی `@include` ها در پایان خواندن کل انتخابگر را آسان تر می کند. - ```scss +```scss .btn-green { background: green; font-weight: bold; @include transition(background 0.5s ease); // ... } - ``` +``` -3. Nested selectors +3. انتخابگرهای تو در تو - Nested selectors, _if necessary_, go last, and nothing goes after them. Add whitespace between your rule declarations and nested selectors, as well as between adjacent nested selectors. Apply the same guidelines as above to your nested selectors. + انتخابگرهای تودرتو، _اگر لازم باشد_، به آخر می‌روند، و هیچ چیز به دنبال آنها نمی‌رود. بین اعلان‌های قوانین و انتخابگرهای تودرتو و همچنین بین انتخابگرهای تودرتوی مجاور، فضای خالی اضافه کنید. همان دستورالعمل های بالا را برای انتخابگرهای تودرتو اعمال کنید. - ```scss +```scss .btn { background: green; font-weight: bold; @@ -253,71 +253,71 @@ Use `0` instead of `none` to specify that a style has no border. margin-right: 10px; } } - ``` +``` -### Variables +### متغیر ها -Prefer dash-cased variable names (e.g. `$my-variable`) over camelCased or snake_cased variable names. It is acceptable to prefix variable names that are intended to be used only within the same file with an underscore (e.g. `$_my-variable`). +نام متغیرهای dash-cased (مانند `$my-variable`) را به نام متغیر camelCased یا snake_cased ترجیح دهید. پیشوند نام متغیرهایی که قرار است فقط در یک فایل مورد استفاده قرار گیرند با زیرخط (مثلاً `$_my-variable`) قابل قبول است. -### Mixins +### ‏Mixins -Mixins should be used to DRY up your code, add clarity, or abstract complexity--in much the same way as well-named functions. Mixins that accept no arguments can be useful for this, but note that if you are not compressing your payload (e.g. gzip), this may contribute to unnecessary code duplication in the resulting styles. +میکسین ها باید برای جلوگیری از تکرار کد شما، اضافه کردن وضوح یا پیچیدگی انتزاعی استفاده شوند - به همان روشی که توابع نام‌گذاری شده خوب هستند. ترکیب‌هایی که هیچ آرگومانی را نمی‌پذیرند می‌توانند برای این کار مفید باشند، اما توجه داشته باشید که اگر بار خود را فشرده نمی‌کنید (به عنوان مثال gzip)، ممکن است باعث تکرار کدهای غیرضروری در سبک‌های حاصل شود. -### Extend directive +### گسترش بخشنامه -`@extend` should be avoided because it has unintuitive and potentially dangerous behavior, especially when used with nested selectors. Even extending top-level placeholder selectors can cause problems if the order of selectors ends up changing later (e.g. if they are in other files and the order the files are loaded shifts). Gzipping should handle most of the savings you would have gained by using `@extend`, and you can DRY up your stylesheets nicely with mixins. +از `@extend` باید اجتناب شود، زیرا رفتار نامشهود و بالقوه خطرناکی دارد، به‌ویژه وقتی با انتخابگرهای تودرتو استفاده می‌شود. حتی اگر ترتیب انتخابگرها بعداً تغییر کند (مثلاً اگر در فایل‌های دیگر باشند و ترتیب بارگذاری فایل‌ها تغییر کند) می‌تواند باعث ایجاد مشکل شود. Gzipping باید بیشتر صرفه‌جویی‌هایی را که با استفاده از `@extend` به دست می‌آورید، انجام دهد، و می‌توانید با میکس‌ها تکرار کد در برگه‌های سبک خود را به خوبی کم کنید. -### Nested selectors +### انتخابگرهای تو در تو -**Do not nest selectors more than three levels deep!** +**انتخابگرها را بیش از سه سطح در عمق قرار ندهید!** ```scss .page-container { .content { .profile { - // STOP! + // ‎!توقف کنید } } } ``` -When selectors become this long, you're likely writing CSS that is: +وقتی انتخابگرها اینقدر طولانی می شوند، احتمالاً CSS می نویسید که: -* Strongly coupled to the HTML (fragile) *—OR—* -* Overly specific (powerful) *—OR—* -* Not reusable +* به شدت با HTML (شکننده) همراه است *— یا —* +* بیش از حد خاص (قدرتمند) *— یا —* +* قابل استفاده مجدد نیست -Again: **never nest ID selectors!** +تاکید میکنیم: **هرگز انتخابگرهای شناسه را تودرتو نکنید** -If you must use an ID selector in the first place (and you should really try not to), they should never be nested. If you find yourself doing this, you need to revisit your markup, or figure out why such strong specificity is needed. If you are writing well formed HTML and CSS, you should **never** need to do this. +اگر در وهله اول باید از انتخابگر ID استفاده کنید (و واقعاً باید سعی کنید از این کار استفاده نکنید)، آنها هرگز نباید تو در تو باشند. اگر متوجه شدید که این کار را انجام می‌دهید، باید دوباره به نشانه‌گذاری خود مراجعه کنید یا بفهمید که چرا به چنین ویژگی قوی نیاز است. اگر HTML و CSS خوب می نویسید، **هرگز** نباید این کار را انجام دهید. -**[⬆ back to top](#table-of-contents)** +**[⬆ بازگشت به بالا](#فهرست-مطالب)** -## Translation +## ترجمه ها - This style guide is also available in other languages: + این راهنمای سبک به زبان های دیگر نیز موجود است: - - ![id](https://raw.githubusercontent.com/gosquared/flags/master/flags/flags/shiny/24/Indonesia.png) **Bahasa Indonesia**: [mazipan/css-style-guide](https://github.com/mazipan/css-style-guide) - - ![tw](https://raw.githubusercontent.com/gosquared/flags/master/flags/flags/shiny/24/Taiwan.png) **Chinese (Traditional)**: [ArvinH/css-style-guide](https://github.com/ArvinH/css-style-guide) - - ![cn](https://raw.githubusercontent.com/gosquared/flags/master/flags/flags/shiny/24/China.png) **Chinese (Simplified)**: [Zhangjd/css-style-guide](https://github.com/Zhangjd/css-style-guide) - - ![fr](https://raw.githubusercontent.com/gosquared/flags/master/flags/flags/shiny/24/France.png) **French**: [mat-u/css-style-guide](https://github.com/mat-u/css-style-guide) - - ![ka](https://raw.githubusercontent.com/gosquared/flags/master/flags/flags/shiny/24/Georgia.png) **Georgian**: [DavidKadaria/css-style-guide](https://github.com/davidkadaria/css-style-guide) - - ![ja](https://raw.githubusercontent.com/gosquared/flags/master/flags/flags/shiny/24/Japan.png) **Japanese**: [nao215/css-style-guide](https://github.com/nao215/css-style-guide) - - ![ko](https://raw.githubusercontent.com/gosquared/flags/master/flags/flags/shiny/24/South-Korea.png) **Korean**: [CodeMakeBros/css-style-guide](https://github.com/CodeMakeBros/css-style-guide) - - ![PT-BR](https://raw.githubusercontent.com/gosquared/flags/master/flags/flags/shiny/24/Brazil.png) **Portuguese (Brazil)**: [felipevolpatto/css-style-guide](https://github.com/felipevolpatto/css-style-guide) - - ![pt-PT](https://raw.githubusercontent.com/gosquared/flags/master/flags/flags/shiny/24/Portugal.png) **Portuguese (Portugal)**: [SandroMiguel/airbnb-css-style-guide](https://github.com/SandroMiguel/airbnb-css-style-guide) - - ![ru](https://raw.githubusercontent.com/gosquared/flags/master/flags/flags/shiny/24/Russia.png) **Russian**: [rtplv/airbnb-css-ru](https://github.com/rtplv/airbnb-css-ru) - - ![es](https://raw.githubusercontent.com/gosquared/flags/master/flags/flags/shiny/24/Spain.png) **Spanish**: [ismamz/guia-de-estilo-css](https://github.com/ismamz/guia-de-estilo-css) - - ![vn](https://raw.githubusercontent.com/gosquared/flags/master/flags/flags/shiny/24/Vietnam.png) **Vietnamese**: [trungk18/css-style-guide](https://github.com/trungk18/css-style-guide) - - ![vn](https://raw.githubusercontent.com/gosquared/flags/master/flags/flags/shiny/24/Italy.png) **Italian**: [antoniofull/linee-guida-css](https://github.com/antoniofull/linee-guida-css) - - ![de](https://raw.githubusercontent.com/gosquared/flags/master/flags/flags/shiny/24/Germany.png) **German**: [tderflinger/css-styleguide](https://github.com/tderflinger/css-styleguide) + - ![id](https://raw.githubusercontent.com/gosquared/flags/master/flags/flags/shiny/24/Indonesia.png) **باهاسا اندونزی**: [mazipan/css-style-guide](https://github.com/mazipan/css-style-guide) + - ![tw](https://raw.githubusercontent.com/gosquared/flags/master/flags/flags/shiny/24/Taiwan.png) **چینی (سنتی)**: [ArvinH/css-style-guide](https://github.com/ArvinH/css-style-guide) + - ![cn](https://raw.githubusercontent.com/gosquared/flags/master/flags/flags/shiny/24/China.png) **زبان چینی ساده شده**: [Zhangjd/css-style-guide](https://github.com/Zhangjd/css-style-guide) + - ![fr](https://raw.githubusercontent.com/gosquared/flags/master/flags/flags/shiny/24/France.png) **فرانسوی**: [mat-u/css-style-guide](https://github.com/mat-u/css-style-guide) + - ![ka](https://raw.githubusercontent.com/gosquared/flags/master/flags/flags/shiny/24/Georgia.png) **گرجی**: [DavidKadaria/css-style-guide](https://github.com/davidkadaria/css-style-guide) + - ![ja](https://raw.githubusercontent.com/gosquared/flags/master/flags/flags/shiny/24/Japan.png) **ژاپنی**: [nao215/css-style-guide](https://github.com/nao215/css-style-guide) + - ![ko](https://raw.githubusercontent.com/gosquared/flags/master/flags/flags/shiny/24/South-Korea.png) **کره ای**: [CodeMakeBros/css-style-guide](https://github.com/CodeMakeBros/css-style-guide) + - ![PT-BR](https://raw.githubusercontent.com/gosquared/flags/master/flags/flags/shiny/24/Brazil.png) **پرتغالی (برزیل)**: [felipevolpatto/css-style-guide](https://github.com/felipevolpatto/css-style-guide) + - ![pt-PT](https://raw.githubusercontent.com/gosquared/flags/master/flags/flags/shiny/24/Portugal.png) **پرتغالی (پرتغال)**: [SandroMiguel/airbnb-css-style-guide](https://github.com/SandroMiguel/airbnb-css-style-guide) + - ![ru](https://raw.githubusercontent.com/gosquared/flags/master/flags/flags/shiny/24/Russia.png) **روسی**: [rtplv/airbnb-css-ru](https://github.com/rtplv/airbnb-css-ru) + - ![es](https://raw.githubusercontent.com/gosquared/flags/master/flags/flags/shiny/24/Spain.png) **اسپانیایی**: [ismamz/guia-de-estilo-css](https://github.com/ismamz/guia-de-estilo-css) + - ![vn](https://raw.githubusercontent.com/gosquared/flags/master/flags/flags/shiny/24/Vietnam.png) **ویتنامی**: [trungk18/css-style-guide](https://github.com/trungk18/css-style-guide) + - ![vn](https://raw.githubusercontent.com/gosquared/flags/master/flags/flags/shiny/24/Italy.png) **ایتالیایی**: [antoniofull/linee-guida-css](https://github.com/antoniofull/linee-guida-css) + - ![de](https://raw.githubusercontent.com/gosquared/flags/master/flags/flags/shiny/24/Germany.png) **آلمانی**: [tderflinger/css-styleguide](https://github.com/tderflinger/css-styleguide) -**[⬆ back to top](#table-of-contents)** +**[⬆ بازگشت به بالا](#فهرست-مطالب)** -## License +## مجوز -(The MIT License) +(مجوز MIT) Copyright (c) 2015 Airbnb @@ -327,4 +327,4 @@ The above copyright notice and this permission notice shall be included in all c THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -**[⬆ back to top](#table-of-contents)** +**[⬆ بازگشت به بالا](#فهرست-مطالب)**