Skip to content

Commit

Permalink
Add introduction for the Italian version docs
Browse files Browse the repository at this point in the history
- Update docs for the breaking changes: change the data type for the ConditionalFormatOptions structure field Format as a pointer
  • Loading branch information
xuri committed Apr 13, 2024
1 parent f946a1d commit 3a3634d
Show file tree
Hide file tree
Showing 26 changed files with 207 additions and 150 deletions.
13 changes: 7 additions & 6 deletions LANGS.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
# Languages

* [العربية](ar)
* [Deutsch](de)
* [English](en)
* [Español](es)
* [Français](fr)
* [русский](ru)
* [简体中文](zh-hans)
* [繁體中文](zh-tw)
* [Italiano](it)
* [日本語](ja)
* [한국어](ko)
* [Español](es)
* [Deutsch](de)
* [Português](pt)
* [العربية](ar)
* [русский](ru)
* [简体中文](zh-hans)
* [繁體中文](zh-tw)
2 changes: 1 addition & 1 deletion ar/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Excelize هي مكتبة مكتوبة في الذهاب نقية توفير مج
- go.dev: [pkg.go.dev/github.com/xuri/excelize/v2](https://pkg.go.dev/github.com/xuri/excelize/v2)
- التراخيص: [BSD 3-Clause](https://opensource.org/licenses/BSD-3-Clause)
- الإصدار الأخير: [v2.8.1](https://github.com/xuri/excelize/releases/latest)
- وقت تحديث المستند: شهر فبراير 26, 2024
- وقت تحديث المستند: أبريل 13, 2024

## بعثة المشروع

Expand Down
24 changes: 12 additions & 12 deletions ar/utils.md
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ err := f.SetConditionalFormat("Sheet1", "D1:D10",
{
Type: "cell",
Criteria: ">",
Format: format,
Format: &format,
Value: "6",
},
},
Expand All @@ -497,7 +497,7 @@ err := f.SetConditionalFormat("Sheet1", "D1:D10",
{
Type: "cell",
Criteria: ">",
Format: format,
Format: &format,
Value: "$C$1",
},
},
Expand All @@ -520,7 +520,7 @@ if err != nil {
}
err = f.SetConditionalFormat("Sheet1", "D1:D10",
[]excelize.ConditionalFormatOptions{
{Type: "cell", Criteria: ">", Format: format, Value: "6"},
{Type: "cell", Criteria: ">", Format: &format, Value: "6"},
},
)
```
Expand Down Expand Up @@ -570,7 +570,7 @@ err := f.SetConditionalFormat("Sheet1", "A1:A10",
{
Type: "cell",
Criteria: "between",
Format: format,
Format: &format,
MinValue: "6",
MaxValue: "8",
},
Expand All @@ -589,7 +589,7 @@ err := f.SetConditionalFormat("Sheet1", "A1:A10",
{
Type: "average",
Criteria: "=",
Format: format1,
Format: &format1,
AboveAverage: true,
},
},
Expand All @@ -601,7 +601,7 @@ err := f.SetConditionalFormat("Sheet1", "B1:B10",
{
Type: "average",
Criteria: "=",
Format: format2,
Format: &format2,
AboveAverage: false,
},
},
Expand All @@ -614,7 +614,7 @@ type: `duplicate` - يستخدم النوع `duplicate` لتمييز الخلا
// قاعدة تمييز الخلايا: القيم المكررة...
err := f.SetConditionalFormat("Sheet1", "A1:A10",
[]excelize.ConditionalFormatOptions{
{Type: "duplicate", Criteria: "=", Format: format},
{Type: "duplicate", Criteria: "=", Format: &format},
},
)
```
Expand All @@ -625,7 +625,7 @@ type: `unique` - يستخدم النوع `unique` لإبراز الخلايا ا
// قاعدة تمييز الخلايا: لا تساوي...
err := f.SetConditionalFormat("Sheet1", "A1:A10",
[]excelize.ConditionalFormatOptions{
{Type: "unique", Criteria: "=", Format: format},
{Type: "unique", Criteria: "=", Format: &format},
},
)
```
Expand All @@ -639,7 +639,7 @@ err := f.SetConditionalFormat("Sheet1", "H1:H10",
{
Type: "top",
Criteria: "=",
Format: format,
Format: &format,
Value: "6",
},
},
Expand All @@ -654,7 +654,7 @@ err := f.SetConditionalFormat("Sheet1", "A1:A10",
{
Type: "top",
Criteria: "=",
Format: format,
Format: &format,
Value: "6",
Percent: true,
},
Expand Down Expand Up @@ -875,7 +875,7 @@ func main() {
Type: "bottom",
Criteria: "=",
Value: "1",
Format: red,
Format: &red,
},
},
); err != nil {
Expand Down Expand Up @@ -904,7 +904,7 @@ func main() {
Type: "top",
Criteria: "=",
Value: "1",
Format: green,
Format: &green,
},
},
); err != nil {
Expand Down
2 changes: 1 addition & 1 deletion de/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Excelize ist eine Bibliothek, die in reinem Go geschrieben wurde und eine Reihe
- go.dev: [pkg.go.dev/github.com/xuri/excelize/v2](https://pkg.go.dev/github.com/xuri/excelize/v2)
- Lizenzen: [BSD 3-Clause](https://opensource.org/licenses/BSD-3-Clause)
- Letzte Version: [v2.8.1](https://github.com/xuri/excelize/releases/latest)
- Dokument Aktualisierungszeit: Februar 26, 2024
- Dokument Aktualisierungszeit: April 13, 2024

## Project mission

Expand Down
24 changes: 12 additions & 12 deletions de/utils.md
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ err := f.SetConditionalFormat("Sheet1", "D1:D10",
{
Type: "cell",
Criteria: ">",
Format: format,
Format: &format,
Value: "6",
},
},
Expand All @@ -497,7 +497,7 @@ err := f.SetConditionalFormat("Sheet1", "D1:D10",
{
Type: "cell",
Criteria: ">",
Format: format,
Format: &format,
Value: "$C$1",
},
},
Expand All @@ -520,7 +520,7 @@ if err != nil {
}
err = f.SetConditionalFormat("Sheet1", "D1:D10",
[]excelize.ConditionalFormatOptions{
{Type: "cell", Criteria: ">", Format: format, Value: "6"},
{Type: "cell", Criteria: ">", Format: &format, Value: "6"},
},
)
```
Expand Down Expand Up @@ -570,7 +570,7 @@ err := f.SetConditionalFormat("Sheet1", "A1:A10",
{
Type: "cell",
Criteria: "between",
Format: format,
Format: &format,
MinValue: "6",
MaxValue: "8",
},
Expand All @@ -589,7 +589,7 @@ err := f.SetConditionalFormat("Sheet1", "A1:A10",
{
Type: "average",
Criteria: "=",
Format: format1,
Format: &format1,
AboveAverage: true,
},
},
Expand All @@ -601,7 +601,7 @@ err := f.SetConditionalFormat("Sheet1", "B1:B10",
{
Type: "average",
Criteria: "=",
Format: format2,
Format: &format2,
AboveAverage: false,
},
},
Expand All @@ -614,7 +614,7 @@ type: `duplicate` - Der Typ `duplicate` wird verwendet, um doppelte Zellen in ei
// Markieren Sie die Zellenregeln: Werte duplizieren...
err := f.SetConditionalFormat("Sheet1", "A1:A10",
[]excelize.ConditionalFormatOptions{
{Type: "duplicate", Criteria: "=", Format: format},
{Type: "duplicate", Criteria: "=", Format: &format},
},
)
```
Expand All @@ -625,7 +625,7 @@ type: `unique` - Der Typ `unique` wird verwendet, um eindeutige Zellen in einem
// Markieren Sie die Zellenregeln: Nicht gleich...
err := f.SetConditionalFormat("Sheet1", "A1:A10",
[]excelize.ConditionalFormatOptions{
{Type: "unique", Criteria: "=", Format: format},
{Type: "unique", Criteria: "=", Format: &format},
},
)
```
Expand All @@ -639,7 +639,7 @@ err := f.SetConditionalFormat("Sheet1", "H1:H10",
{
Type: "top",
Criteria: "=",
Format: format,
Format: &format,
Value: "6",
},
},
Expand All @@ -654,7 +654,7 @@ err := f.SetConditionalFormat("Sheet1", "A1:A10",
{
Type: "top",
Criteria: "=",
Format: format,
Format: &format,
Value: "6",
Percent: true,
},
Expand Down Expand Up @@ -855,7 +855,7 @@ func main() {
Type: "bottom",
Criteria: "=",
Value: "1",
Format: red,
Format: &red,
},
},
); err != nil {
Expand Down Expand Up @@ -884,7 +884,7 @@ func main() {
Type: "top",
Criteria: "=",
Value: "1",
Format: green,
Format: &green,
},
},
); err != nil {
Expand Down
2 changes: 1 addition & 1 deletion en/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Excelize is a library written in pure Go providing a set of functions that allow
- go.dev: [pkg.go.dev/github.com/xuri/excelize/v2](https://pkg.go.dev/github.com/xuri/excelize/v2)
- Licenses: [BSD 3-Clause](https://opensource.org/licenses/BSD-3-Clause)
- Last version: [v2.8.1](https://github.com/xuri/excelize/releases/latest)
- Document update time: February 26, 2024
- Document update time: April 13, 2024

## Project mission

Expand Down
24 changes: 12 additions & 12 deletions en/utils.md
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ err := f.SetConditionalFormat("Sheet1", "D1:D10",
{
Type: "cell",
Criteria: ">",
Format: format,
Format: &format,
Value: "6",
},
},
Expand All @@ -497,7 +497,7 @@ err := f.SetConditionalFormat("Sheet1", "D1:D10",
{
Type: "cell",
Criteria: ">",
Format: format,
Format: &format,
Value: "$C$1",
},
},
Expand All @@ -520,7 +520,7 @@ if err != nil {
}
err = f.SetConditionalFormat("Sheet1", "D1:D10",
[]excelize.ConditionalFormatOptions{
{Type: "cell", Criteria: ">", Format: format, Value: "6"},
{Type: "cell", Criteria: ">", Format: &format, Value: "6"},
},
)
```
Expand Down Expand Up @@ -570,7 +570,7 @@ err := f.SetConditionalFormat("Sheet1", "A1:A10",
{
Type: "cell",
Criteria: "between",
Format: format,
Format: &format,
MinValue: "6",
MaxValue: "8",
},
Expand All @@ -589,7 +589,7 @@ err := f.SetConditionalFormat("Sheet1", "A1:A10",
{
Type: "average",
Criteria: "=",
Format: format1,
Format: &format1,
AboveAverage: true,
},
},
Expand All @@ -601,7 +601,7 @@ err := f.SetConditionalFormat("Sheet1", "B1:B10",
{
Type: "average",
Criteria: "=",
Format: format2,
Format: &format2,
AboveAverage: false,
},
},
Expand All @@ -614,7 +614,7 @@ type: `duplicate` - The `duplicate` type is used to highlight duplicate cells in
// Highlight cells rules: Duplicate Values...
err := f.SetConditionalFormat("Sheet1", "A1:A10",
[]excelize.ConditionalFormatOptions{
{Type: "duplicate", Criteria: "=", Format: format},
{Type: "duplicate", Criteria: "=", Format: &format},
},
)
```
Expand All @@ -625,7 +625,7 @@ type: `unique` - The `unique` type is used to highlight unique cells in a range:
// Highlight cells rules: Not Equal To...
err := f.SetConditionalFormat("Sheet1", "A1:A10",
[]excelize.ConditionalFormatOptions{
{Type: "unique", Criteria: "=", Format: format},
{Type: "unique", Criteria: "=", Format: &format},
},
)
```
Expand All @@ -639,7 +639,7 @@ err := f.SetConditionalFormat("Sheet1", "H1:H10",
{
Type: "top",
Criteria: "=",
Format: format,
Format: &format,
Value: "6",
},
},
Expand All @@ -654,7 +654,7 @@ err := f.SetConditionalFormat("Sheet1", "A1:A10",
{
Type: "top",
Criteria: "=",
Format: format,
Format: &format,
Value: "6",
Percent: true,
},
Expand Down Expand Up @@ -855,7 +855,7 @@ func main() {
Type: "bottom",
Criteria: "=",
Value: "1",
Format: red,
Format: &red,
},
},
); err != nil {
Expand Down Expand Up @@ -884,7 +884,7 @@ func main() {
Type: "top",
Criteria: "=",
Value: "1",
Format: green,
Format: &green,
},
},
); err != nil {
Expand Down
2 changes: 1 addition & 1 deletion es/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Excelize es una biblioteca escrita en Go puro que proporciona un conjunto de fun
- go.dev: [pkg.go.dev/github.com/xuri/excelize/v2](https://pkg.go.dev/github.com/xuri/excelize/v2)
- Licencias: [BSD 3-Clause](https://opensource.org/licenses/BSD-3-Clause)
- Ultima versión: [v2.8.1](https://github.com/xuri/excelize/releases/latest)
- Tiempo de actualización del documento: febrero 26, 2024
- Tiempo de actualización del documento: abril 13, 2024

## Misión del proyecto

Expand Down
Loading

0 comments on commit 3a3634d

Please sign in to comment.