Skip to content
This repository was archived by the owner on Apr 14, 2026. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion fa.lang.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,13 @@ module.exports = {
"Website Copy Right Footer": "پاورقی حق چاپ و استفاده وب سایت",
"View On Github": "مشاهده در Github",
"Axios Project Copy Right Footer": "پاورقی حق استفاده از پروژه Axios",
"License Label Footer": "پاورقی برچسب مجوز"
"License Label Footer": "پاورقی برچسب مجوز",
"Become a sponsor": "اسپانسر شوید",
"Sponsors": "اسپانسر ها",
"Gold Sponsors": "اسپانسر های طلایی",
"Issues": "مشکلات",
"Pull Requests": "درخواست‌های ادغام",
"Code of Conduct": "منشور اخلاقی"
},
sidebar: [
{
Expand Down
1 change: 1 addition & 0 deletions scss/home.scss
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,7 @@ html[dir="rtl"] {
}

.splide {
direction: ltr;
height: 9rem;
padding: 0 45px;
margin: 0 calc(-1 * var(--margin) / 2);
Expand Down
2 changes: 2 additions & 0 deletions scss/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,7 @@ aside {
}

details.dropdown-language {
direction: ltr;
width: calc(100% - 2rem);
background: var(--gray-2);
margin: 1rem;
Expand Down Expand Up @@ -302,6 +303,7 @@ aside {
}

.button-container {
direction: ltr;
box-sizing: border-box;
padding: 2rem;
width: 100%;
Expand Down
2 changes: 2 additions & 0 deletions scss/sponsors.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ body.dark {
}

.splide {
direction: ltr;
height: 7rem;
/* background-color: var(--carousel-bg);*/
border-radius: 5px;
Expand Down Expand Up @@ -277,6 +278,7 @@ li.sponsor-card {
}

.sponsors_container {
direction: ltr;
margin-top: 3rem;

.link-sponsors > * {
Expand Down
4 changes: 2 additions & 2 deletions templates/post.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@
</div>
<div class="links">
<% if (data.attributes.prev_link) { %>
<a href="<%= data.attributes.prev_link %>" class="next-link">
<a href="<%= locale.prefix + data.attributes.prev_link %>" class="next-link">
<span>« <%= locale.t['Previous'] || 'Previous' %></span>
<span class="l"> <%= data.attributes.prev_title %> </span>
</a>
Expand All @@ -245,7 +245,7 @@

</span>
<% if (data.attributes.next_link) { %>
<a href="<%= data.attributes.next_link %>" class="next-link">
<a href="<%= locale.prefix + data.attributes.next_link %>" class="next-link">
<span><%= locale.t['Next'] || 'Next' %> »</span>
<span class="l"> <%= data.attributes.next_title %> </span>
</a>
Expand Down