docs: fix typos
This commit is contained in:
parent
fc447269ae
commit
924c04072d
@ -169,7 +169,7 @@ To join the stakeholders, you must be part of one of the groups described above.
|
|||||||
Partners are individuals or companies that are financially contributing to the platform’s Open Collective organization,
|
Partners are individuals or companies that are financially contributing to the platform’s Open Collective organization,
|
||||||
in exchange for a pre-established set of benefits, mainly the ability to vote during stakeholder meetings.
|
in exchange for a pre-established set of benefits, mainly the ability to vote during stakeholder meetings.
|
||||||
|
|
||||||
To join the stakeholders group as Partner, it's just needed that you setup a monthy donation via Open Collective with any of
|
To join the stakeholders group as Partner, it's just needed that you setup a monthly donation via Open Collective with any of
|
||||||
following partnership tiers:
|
following partnership tiers:
|
||||||
|
|
||||||
- **Supporter ($10/month)**: Doesn’t guarantee access to a partnership program.
|
- **Supporter ($10/month)**: Doesn’t guarantee access to a partnership program.
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
[](https://www.codetriage.com/solidusio/solidus)
|
[](https://www.codetriage.com/solidusio/solidus)
|
||||||
[](http://slack.solidus.io)
|
[](http://slack.solidus.io)
|
||||||
|
|
||||||
**A free, open-source ecommerce platform that gives you complete control over your store.**
|
**A free, open-source e-commerce platform that gives you complete control over your store.**
|
||||||
|
|
||||||
- **Visit our website**: [https://solidus.io/](https://solidus.io/)
|
- **Visit our website**: [https://solidus.io/](https://solidus.io/)
|
||||||
- **Read our Community Guidelines**: [https://guides.solidus.io/policies/community-guidelines/](https://guides.solidus.io/policies/community-guidelines/)
|
- **Read our Community Guidelines**: [https://guides.solidus.io/policies/community-guidelines/](https://guides.solidus.io/policies/community-guidelines/)
|
||||||
@ -53,7 +53,7 @@ Support this project by becoming a Solidus Ambassador. Your logo will show up he
|
|||||||
|
|
||||||
## Summary
|
## Summary
|
||||||
|
|
||||||
Solidus is a complete open source ecommerce solution built with Ruby on Rails.
|
Solidus is a complete open source e-commerce solution built with Ruby on Rails.
|
||||||
It is a fork of [Spree](https://spreecommerce.org).
|
It is a fork of [Spree](https://spreecommerce.org).
|
||||||
|
|
||||||
See the [Solidus class documentation](http://docs.solidus.io) and the [Solidus
|
See the [Solidus class documentation](http://docs.solidus.io) and the [Solidus
|
||||||
@ -69,7 +69,7 @@ Solidus consists of several gems. When you require the `solidus` gem in your
|
|||||||
- [`solidus_sample`](https://github.com/solidusio/solidus/tree/master/sample) (Sample data)
|
- [`solidus_sample`](https://github.com/solidusio/solidus/tree/master/sample) (Sample data)
|
||||||
|
|
||||||
All of the gems are designed to work together to provide a fully functional
|
All of the gems are designed to work together to provide a fully functional
|
||||||
ecommerce platform. However, you may only want to use the
|
e-commerce platform. However, you may only want to use the
|
||||||
[`solidus_core`](https://github.com/solidusio/solidus/tree/master/core) gem
|
[`solidus_core`](https://github.com/solidusio/solidus/tree/master/core) gem
|
||||||
combine it with your own custom frontend, admin interface, and API.
|
combine it with your own custom frontend, admin interface, and API.
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# Solidus Admin
|
# Solidus Admin
|
||||||
|
|
||||||
A Rails engine that provides an administrative interface to the Solidus ecommerce platform.
|
A Rails engine that provides an administrative interface to the Solidus e-commerce platform.
|
||||||
|
|
||||||
## Overview
|
## Overview
|
||||||
|
|
||||||
|
@ -2,11 +2,11 @@
|
|||||||
|
|
||||||
Components are the main building blocks of the admin interface. They are implemented as ViewComponents and are rendered directly by controllers.
|
Components are the main building blocks of the admin interface. They are implemented as ViewComponents and are rendered directly by controllers.
|
||||||
|
|
||||||
The following documentation assumes familiariry with ViewComponents. If you are not please refer to the [ViewComponent documentation](https://viewcomponent.org/guide/).
|
The following documentation assumes familiarity with ViewComponents. If you are not please refer to the [ViewComponent documentation](https://viewcomponent.org/guide/).
|
||||||
|
|
||||||
There are two types of components:
|
There are two types of components:
|
||||||
|
|
||||||
- **UI components** are the building blocks of the interface. Tipically, they are small components that are used to build more complex components and are generic enough to be reused in various contexts. UI components are located under the `app/components/solidus_admin/ui` folder.
|
- **UI components** are the building blocks of the interface. Typically, they are small components that are used to build more complex components and are generic enough to be reused in various contexts. UI components are located under the `app/components/solidus_admin/ui` folder.
|
||||||
- **Page components** are the primary components rendered by the controllers. Generally, they are full-page components rendered directly by the controllers. They are located under the `app/components/solidus_admin` directory following the naming convention of the controller and action names they are used in. For example `app/components/solidus_admin/orders/index/component.rb` is the component that is rendered by the `SolidusAdmin::OrdersController#index` action.
|
- **Page components** are the primary components rendered by the controllers. Generally, they are full-page components rendered directly by the controllers. They are located under the `app/components/solidus_admin` directory following the naming convention of the controller and action names they are used in. For example `app/components/solidus_admin/orders/index/component.rb` is the component that is rendered by the `SolidusAdmin::OrdersController#index` action.
|
||||||
|
|
||||||
## Generating components
|
## Generating components
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
This project uses [StimulusJS](https://stimulusjs.org) to add interactivity to the admin interface.
|
This project uses [StimulusJS](https://stimulusjs.org) to add interactivity to the admin interface.
|
||||||
|
|
||||||
## Using ther `stimulus_id` helper
|
## Using the `stimulus_id` helper
|
||||||
|
|
||||||
All JavaScript files are imported using `import-maps`, eliminating the need for compilation.
|
All JavaScript files are imported using `import-maps`, eliminating the need for compilation.
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
Summary
|
Summary
|
||||||
------
|
------
|
||||||
Solidus Core provides the essential ecommerce data models upon which the
|
Solidus Core provides the essential e-commerce data models upon which the
|
||||||
Solidus system depends.
|
Solidus system depends.
|
||||||
|
|
||||||
Core models
|
Core models
|
||||||
|
@ -32,7 +32,7 @@ end
|
|||||||
|
|
||||||
### Types of Benefits
|
### Types of Benefits
|
||||||
|
|
||||||
The new Solidus Promotions Systems ships with three benefit types: `AdjustLineItem`, `AdjustShipment` and `CreateDiscountedItem`. To allow more efficient processing of returns and reduce the complexity for bookkeping and support departmentes fixed discount to all line items in an order can now be given through the `AdjustLineItem` benefit through the `DistributedAmount` calculator significantly reducing amministration issues with refunds.
|
The new Solidus Promotions Systems ships with three benefit types: `AdjustLineItem`, `AdjustShipment` and `CreateDiscountedItem`. To allow more efficient processing of returns and reduce the complexity for bookkeping and support departments fixed discount to all line items in an order can now be given through the `AdjustLineItem` benefit through the `DistributedAmount` calculator significantly reducing administration issues with refunds.
|
||||||
|
|
||||||
#### `AdjustLineItem`
|
#### `AdjustLineItem`
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user