Skip to content

Commit

Permalink
Update out date reference link, and update website style sheet
Browse files Browse the repository at this point in the history
- Update docs for the form control examples
- Sort the languages order by alphabet
- Add image resource for the Portuguese version docs
  • Loading branch information
xuri committed Feb 1, 2024
1 parent 9811deb commit e1c2092
Show file tree
Hide file tree
Showing 45 changed files with 130 additions and 55 deletions.
5 changes: 2 additions & 3 deletions ar/contribution.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,9 @@
### مرجع

* [تنسيقات ملفات ECMA-376 Office Open XML القياسية](https://www.ecma-international.org/publications-and-standards/standards/ecma-376/)
* [وثائق مطور المكتب](https://developer.microsoft.com/ar-sa/office/docs)
* [هيكل مستند SpreadsheetML (Open XML SDK)](https://learn.microsoft.com/ar-sa/office/open-xml/structure-of-a-spreadsheetml-document)
* [هيكل مستند SpreadsheetML (Open XML SDK)](https://learn.microsoft.com/ar-sa/office/open-xml/spreadsheet/structure-of-a-spreadsheetml-document)
* [افتح XML SDK 2.5 لـ Microsoft Office (يعمل فقط على Windows)](https://github.com/OfficeDev/Open-XML-SDK/releases/tag/v2.5)
* [فهم تنسيقات ملفات Open XML](https://learn.microsoft.com/ar-sa/office/open-xml/understanding-the-open-xml-file-formats)
* [يدعم المعايير](https://learn.microsoft.com/ar-sa/openspecs/standards_support/ms-stdsuplp/17a32be7-10b3-4025-bea4-133a66b4c689)
* [ملحقات Google Chrome: أدوات OOXML](https://chrome.google.com/webstore/detail/ooxml-tools/bjmmjfdegplhkefakjkccocjanekbapn)
* [[MS-OFFCRYPTO]: مواصفات بنية تشفير مستندات Office](https://learn.microsoft.com/ar-sa/openspecs/office_file_formats/ms-offcrypto/3c34d72a-1a61-4b52-a893-196f9157f083)

Expand Down
3 changes: 3 additions & 0 deletions ar/formControl.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ func (f *File) AddFormControl(sheet string, opts FormControl) error
<p align="center"><img width="180" src="./images/form_ctrl_button.gif" alt="إضافة عنصر تحكم نموذج زر باستخدام Excelize"></p>

```go
enable := true
err := f.AddFormControl("ورقة1", excelize.FormControl{
Cell: "A2",
Type: excelize.FormControlButton,
Expand Down Expand Up @@ -73,13 +74,15 @@ if err := f.AddFormControl("ورقة1", excelize.FormControl{
Type: excelize.FormControlOptionButton,
Text: "Option Button 1",
Checked: true,
Height: 20,
}); err != nil {
fmt.Println(err)
}
if err := f.AddFormControl("ورقة1", excelize.FormControl{
Cell: "A2",
Type: excelize.FormControlOptionButton,
Text: "Option Button 2",
Height: 20,
}); err != nil {
fmt.Println(err)
}
Expand Down
2 changes: 1 addition & 1 deletion ar/styles/website.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
}

.dropdown-menu {
min-width: 260px;
min-width: 270px;
}

@media (min-width: 1240px) {
Expand Down
5 changes: 2 additions & 3 deletions de/contribution.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,9 @@ Die Microsoft Excel&trade; 2007-Version unterstützt das XML-basierte Dokumentfo
### Referenz

* [Standard ECMA-376 Office Open XML-Dateiformate](https://www.ecma-international.org/publications-and-standards/standards/ecma-376/)
* [Office-Entwicklerdokumentation](https://developer.microsoft.com/de-de/office/docs)
* [Struktur eines SpreadsheetML-Dokuments (Open XML SDK)](https://learn.microsoft.com/de-de/office/open-xml/structure-of-a-spreadsheetml-document)
* [Struktur eines SpreadsheetML-Dokuments (Open XML SDK)](https://learn.microsoft.com/de-de/office/open-xml/spreadsheet/structure-of-a-spreadsheetml-document)
* [Öffnen Sie XML SDK 2.5 für Microsoft Office (funktioniert nur unter Windows)](https://github.com/OfficeDev/Open-XML-SDK/releases/tag/v2.5)
* [Grundlegendes zu den Open XML-Dateiformaten](https://learn.microsoft.com/de-de/office/open-xml/understanding-the-open-xml-file-formats)
* [Standards unterstützt](https://learn.microsoft.com/de-de/openspecs/standards_support/ms-stdsuplp/17a32be7-10b3-4025-bea4-133a66b4c689)
* [Google Chrome-Erweiterungen: OOXML-Tools](https://chrome.google.com/webstore/detail/ooxml-tools/bjmmjfdegplhkefakjkccocjanekbapn)
* [[MS-OFFCRYPTO]: Strukturspezifikation für Office Document Cryptography](https://learn.microsoft.com/de-de/openspecs/office_file_formats/ms-offcrypto/3c34d72a-1a61-4b52-a893-196f9157f083)

Expand Down
3 changes: 3 additions & 0 deletions de/formControl.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ Beispiel 1: Fügen Sie eine Schaltflächenformularsteuerung mit Makro, Rich-Text
<p align="center"><img width="180" src="./images/form_ctrl_button.gif" alt="Hinzufügen von Schaltflächenformularsteuerelementen mit Excelize"></p>

```go
enable := true
err := f.AddFormControl("Tabelle1", excelize.FormControl{
Cell: "A2",
Type: excelize.FormControlButton,
Expand Down Expand Up @@ -73,13 +74,15 @@ if err := f.AddFormControl("Tabelle1", excelize.FormControl{
Type: excelize.FormControlOptionButton,
Text: "Option Button 1",
Checked: true,
Height: 20,
}); err != nil {
fmt.Println(err)
}
if err := f.AddFormControl("Tabelle1", excelize.FormControl{
Cell: "A2",
Type: excelize.FormControlOptionButton,
Text: "Option Button 2",
Height: 20,
}); err != nil {
fmt.Println(err)
}
Expand Down
2 changes: 1 addition & 1 deletion de/styles/website.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
}

.dropdown-menu {
min-width: 260px;
min-width: 270px;
}

@media (min-width: 1240px) {
Expand Down
4 changes: 2 additions & 2 deletions en/chart.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,9 @@ The parameter `ShowBlanksAs` provides the "Hide and empty cells" setting. The de

Parameter|Explanation
---|---
gap | space
gap | Space
span | Connect data points with straight lines
zero | zero value
zero | Zero value

Set the bubble size in all data series for the bubble chart or 3D bubble chart by `BubbleSizes` property. The `BubbleSizes` property is optional. The default width is `100`, and the value should be great than 0 and less or equal than 300.

Expand Down
5 changes: 2 additions & 3 deletions en/contribution.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,9 @@ The Microsoft Excel&trade; 2007 release supports the XML-based document format O
### Reference

* [Standard ECMA-376 Office Open XML File Formats](https://www.ecma-international.org/publications-and-standards/standards/ecma-376/)
* [Office developer documentation](https://developer.microsoft.com/en-us/office/docs)
* [Structure of a SpreadsheetML document (Open XML SDK)](https://learn.microsoft.com/en-us/office/open-xml/structure-of-a-spreadsheetml-document)
* [Structure of a SpreadsheetML document (Open XML SDK)](https://learn.microsoft.com/en-us/office/open-xml/spreadsheet/structure-of-a-spreadsheetml-document)
* [Open XML SDK 2.5 for Microsoft Office (only works on the Windows)](https://github.com/OfficeDev/Open-XML-SDK/releases/tag/v2.5)
* [Understanding the Open XML file formats](https://learn.microsoft.com/en-us/office/open-xml/understanding-the-open-xml-file-formats)
* [Standards Support](https://learn.microsoft.com/en-us/openspecs/standards_support/ms-stdsuplp/17a32be7-10b3-4025-bea4-133a66b4c689)
* [Google Chrome Extensions: OOXML Tools](https://chrome.google.com/webstore/detail/ooxml-tools/bjmmjfdegplhkefakjkccocjanekbapn)
* [[MS-OFFCRYPTO]: Office Document Cryptography Structure Specification](https://learn.microsoft.com/en-us/openspecs/office_file_formats/ms-offcrypto/3c34d72a-1a61-4b52-a893-196f9157f083)

Expand Down
3 changes: 3 additions & 0 deletions en/formControl.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ Example 1, add button form control with macro, rich-text, custom button size, pr
<p align="center"><img width="180" src="./images/form_ctrl_button.gif" alt="add button form control with Excelize"></p>

```go
enable := true
err := f.AddFormControl("Sheet1", excelize.FormControl{
Cell: "A2",
Type: excelize.FormControlButton,
Expand Down Expand Up @@ -73,13 +74,15 @@ if err := f.AddFormControl("Sheet1", excelize.FormControl{
Type: excelize.FormControlOptionButton,
Text: "Option Button 1",
Checked: true,
Height: 20,
}); err != nil {
fmt.Println(err)
}
if err := f.AddFormControl("Sheet1", excelize.FormControl{
Cell: "A2",
Type: excelize.FormControlOptionButton,
Text: "Option Button 2",
Height: 20,
}); err != nil {
fmt.Println(err)
}
Expand Down
2 changes: 1 addition & 1 deletion en/styles/website.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
}

.dropdown-menu {
min-width: 260px;
min-width: 270px;
}

@media (min-width: 1240px) {
Expand Down
5 changes: 2 additions & 3 deletions es/contribution.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,9 @@ La versión de Microsoft Excel&trade; 2007 admite el formato de documento basado
### Referencia

* [Formatos de archivo XML abiertos de Office ECMA-376 estándar](https://www.ecma-international.org/publications-and-standards/standards/ecma-376/)
* [Documentación para desarrolladores de Office](https://developer.microsoft.com/es-es/office/docs)
* [Estructura de un documento SpreadsheetML (Open XML SDK)](https://learn.microsoft.com/es-es/office/open-xml/structure-of-a-spreadsheetml-document)
* [Estructura de un documento SpreadsheetML (Open XML SDK)](https://learn.microsoft.com/es-es/office/open-xml/spreadsheet/structure-of-a-spreadsheetml-document)
* [Open XML SDK 2.5 para Microsoft Office (solo funciona en Windows)](https://github.com/OfficeDev/Open-XML-SDK/releases/tag/v2.5)
* [Comprensión de los formatos de archivo Open XML](https://learn.microsoft.com/es-es/office/open-xml/understanding-the-open-xml-file-formats)
* [Soportes de estándares](https://learn.microsoft.com/es-es/openspecs/standards_support/ms-stdsuplp/17a32be7-10b3-4025-bea4-133a66b4c689)
* [Extensiones de Google Chrome: herramientas OOXML](https://chrome.google.com/webstore/detail/ooxml-tools/bjmmjfdegplhkefakjkccocjanekbapn)
* [[MS-OFFCRYPTO]: Especificación de la estructura de criptografía de documentos de Office](https://learn.microsoft.com/es-es/openspecs/office_file_formats/ms-offcrypto/3c34d72a-1a61-4b52-a893-196f9157f083)

Expand Down
3 changes: 3 additions & 0 deletions es/formControl.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ Ejemplo 1, agregue un control de formulario de botón con macro, texto enriqueci
<p align="center"><img width="180" src="./images/form_ctrl_button.gif" alt="agregar control de formulario de botón con Excelize"></p>

```go
enable := true
err := f.AddFormControl("Hoja1", excelize.FormControl{
Cell: "A2",
Type: excelize.FormControlButton,
Expand Down Expand Up @@ -73,13 +74,15 @@ if err := f.AddFormControl("Hoja1", excelize.FormControl{
Type: excelize.FormControlOptionButton,
Text: "Option Button 1",
Checked: true,
Height: 20,
}); err != nil {
fmt.Println(err)
}
if err := f.AddFormControl("Hoja1", excelize.FormControl{
Cell: "A2",
Type: excelize.FormControlOptionButton,
Text: "Option Button 2",
Height: 20,
}); err != nil {
fmt.Println(err)
}
Expand Down
2 changes: 1 addition & 1 deletion es/styles/website.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
}

.dropdown-menu {
min-width: 260px;
min-width: 270px;
}

@media (min-width: 1240px) {
Expand Down
5 changes: 2 additions & 3 deletions fr/contribution.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,9 @@ La version Microsoft Excel&trade; 2007 prend en charge le format de document XML
### Référence

* [Standard ECMA-376 Office Open XML File Formats](https://www.ecma-international.org/publications-and-standards/standards/ecma-376/)
* [Office developer documentation](https://developer.microsoft.com/en-us/office/docs)
* [Structure of a SpreadsheetML document (Open XML SDK)](https://learn.microsoft.com/en-us/office/open-xml/structure-of-a-spreadsheetml-document)
* [Structure of a SpreadsheetML document (Open XML SDK)](https://learn.microsoft.com/en-us/office/open-xml/spreadsheet/structure-of-a-spreadsheetml-document)
* [Open XML SDK 2.5 for Microsoft Office (only works on the Windows)](https://github.com/OfficeDev/Open-XML-SDK/releases/tag/v2.5)
* [Understanding the Open XML file formats](https://learn.microsoft.com/en-us/office/open-xml/understanding-the-open-xml-file-formats)
* [Standards Support](https://learn.microsoft.com/en-us/openspecs/standards_support/ms-stdsuplp/17a32be7-10b3-4025-bea4-133a66b4c689)
* [Google Chrome Extensions: OOXML Tools](https://chrome.google.com/webstore/detail/ooxml-tools/bjmmjfdegplhkefakjkccocjanekbapn)
* [[MS-OFFCRYPTO]: Office Document Cryptography Structure Specification](https://learn.microsoft.com/en-us/openspecs/office_file_formats/ms-offcrypto/3c34d72a-1a61-4b52-a893-196f9157f083)

Expand Down
3 changes: 3 additions & 0 deletions fr/formControl.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ Exemple 1, ajout d'un contrôle de formulaire de bouton avec macro, texte enrich
<p align="center"><img width="180" src="./images/form_ctrl_button.gif" alt="ajouter un contrôle de formulaire de bouton avec Excelize"></p>

```go
enable := true
err := f.AddFormControl("Feuil1", excelize.FormControl{
Cell: "A2",
Type: excelize.FormControlButton,
Expand Down Expand Up @@ -73,13 +74,15 @@ if err := f.AddFormControl("Feuil1", excelize.FormControl{
Type: excelize.FormControlOptionButton,
Text: "Option Button 1",
Checked: true,
Height: 20,
}); err != nil {
fmt.Println(err)
}
if err := f.AddFormControl("Feuil1", excelize.FormControl{
Cell: "A2",
Type: excelize.FormControlOptionButton,
Text: "Option Button 2",
Height: 20,
}); err != nil {
fmt.Println(err)
}
Expand Down
2 changes: 1 addition & 1 deletion fr/styles/website.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
}

.dropdown-menu {
min-width: 260px;
min-width: 270px;
}

@media (min-width: 1240px) {
Expand Down
16 changes: 7 additions & 9 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1119,16 +1119,17 @@
<input type="checkbox" id="docs-toggle">
<label for="docs-toggle">Docs</label>
<ul class="languages">
<li><a href="ar">العربية</a></li>
<li><a href="de">Deutsch</a></li>
<li><a href="en">English</a></li>
<li><a href="es">Español</a></li>
<li><a href="fr">Français</a></li>
<li><a href="ja">日本語</a></li>
<li><a href="ko">한국어</a></li>
<li><a href="pt">Português</a></li>
<li><a href="ru">русский</a></li>
<li><a href="zh-hans">简体中文</a></li>
<li><a href="zh-tw">繁體中文</a></li>
<li><a href="ja">日本語</a></li>
<li><a href="ko">한국어</a></li>
<li><a href="es">Español</a></li>
<li><a href="de">Deutsch</a></li>
<li><a href="ar">العربية</a></li>
</ul>
</li>
<li>
Expand Down Expand Up @@ -1231,10 +1232,7 @@ <h3><img alt="Get Involved" height="108" src="images/illu-octocat.svg" style="fl
<h3><img alt="Get Started" height="108" src="images/illu-docs.svg" style="float:left"
width="108">Get Started</h3>
<p>New to Excelize and need some help getting started? No problem.</p>
<p>Documentation ↦ <a href="en">English</a> | <a href="fr">Français</a> | <a href="ru">русский</a> |
<a href="zh-hans">简体中文</a> | <a href="zh-tw">繁體中文</a> | <a href="ja">日本語</a> | <a
href="ko">한국어</a> | <a href="es">Español</a> | <a href="de">Deutsch</a> | <a href="pt">Português</a> | <a
href="ar">العربية</a>
<p>Documentation ↦ &nbsp;<a href="ar">العربية</a> | <a href="de">Deutsch</a> | <a href="en">English</a> | <a href="es">Español</a> | <a href="fr">Français</a> | <a href="ja">日本語</a> | <a href="ko">한국어</a> | <a href="pt">Português</a> | <a href="ru">русский</a> | <a href="zh-hans">简体中文</a> | <a href="zh-tw">繁體中文</a>
</p>
</div>
</div>
Expand Down
5 changes: 2 additions & 3 deletions ja/contribution.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,9 @@ Microsoft Excel&trade; 2007 バージョンでは、XML および ZIP テクノ
### リソース

* [Standard ECMA-376 Office Open XML File Formats](https://www.ecma-international.org/publications-and-standards/standards/ecma-376/)
* [Office developer documentation](https://developer.microsoft.com/en-us/office/docs)
* [Structure of a SpreadsheetML document (Open XML SDK)](https://learn.microsoft.com/en-us/office/open-xml/structure-of-a-spreadsheetml-document)
* [Structure of a SpreadsheetML document (Open XML SDK)](https://learn.microsoft.com/en-us/office/open-xml/spreadsheet/structure-of-a-spreadsheetml-document)
* [Open XML SDK 2.5 for Microsoft Office (only works on the Windows)](https://github.com/OfficeDev/Open-XML-SDK/releases/tag/v2.5)
* [Understanding the Open XML file formats](https://learn.microsoft.com/en-us/office/open-xml/understanding-the-open-xml-file-formats)
* [Standards Support](https://learn.microsoft.com/en-us/openspecs/standards_support/ms-stdsuplp/17a32be7-10b3-4025-bea4-133a66b4c689)
* [Google Chrome Extensions: OOXML Tools](https://chrome.google.com/webstore/detail/ooxml-tools/bjmmjfdegplhkefakjkccocjanekbapn)
* [[MS-OFFCRYPTO]: Office Document Cryptography Structure Specification](https://learn.microsoft.com/en-us/openspecs/office_file_formats/ms-offcrypto/3c34d72a-1a61-4b52-a893-196f9157f083)

Expand Down
3 changes: 3 additions & 0 deletions ja/formControl.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ AddFormControl は、指定されたワークシート名とフォーム コン
<p align="center"><img width="180" src="./images/form_ctrl_button.gif" alt="Excelize でボタンフォームコントロールを追加する"></p>

```go
enable := true
err := f.AddFormControl("Sheet1", excelize.FormControl{
Cell: "A2",
Type: excelize.FormControlButton,
Expand Down Expand Up @@ -73,13 +74,15 @@ if err := f.AddFormControl("Sheet1", excelize.FormControl{
Type: excelize.FormControlOptionButton,
Text: "Option Button 1",
Checked: true,
Height: 20,
}); err != nil {
fmt.Println(err)
}
if err := f.AddFormControl("Sheet1", excelize.FormControl{
Cell: "A2",
Type: excelize.FormControlOptionButton,
Text: "Option Button 2",
Height: 20,
}); err != nil {
fmt.Println(err)
}
Expand Down
2 changes: 1 addition & 1 deletion ja/styles/website.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
}

.dropdown-menu {
min-width: 260px;
min-width: 270px;
}

@media (min-width: 1240px) {
Expand Down
5 changes: 2 additions & 3 deletions ko/contribution.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,9 @@ Microsoft Excel&trade; 2007 릴리스는 XML 및 ZIP 기술을 기반으로 하
### 참조

* [Standard ECMA-376 Office Open XML File Formats](https://www.ecma-international.org/publications-and-standards/standards/ecma-376/)
* [Office developer documentation](https://developer.microsoft.com/en-us/office/docs)
* [Structure of a SpreadsheetML document (Open XML SDK)](https://learn.microsoft.com/en-us/office/open-xml/structure-of-a-spreadsheetml-document)
* [Structure of a SpreadsheetML document (Open XML SDK)](https://learn.microsoft.com/en-us/office/open-xml/spreadsheet/structure-of-a-spreadsheetml-document)
* [Open XML SDK 2.5 for Microsoft Office (only works on the Windows)](https://github.com/OfficeDev/Open-XML-SDK/releases/tag/v2.5)
* [Understanding the Open XML file formats](https://learn.microsoft.com/en-us/office/open-xml/understanding-the-open-xml-file-formats)
* [Standards Support](https://learn.microsoft.com/en-us/openspecs/standards_support/ms-stdsuplp/17a32be7-10b3-4025-bea4-133a66b4c689)
* [Google Chrome Extensions: OOXML Tools](https://chrome.google.com/webstore/detail/ooxml-tools/bjmmjfdegplhkefakjkccocjanekbapn)
* [[MS-OFFCRYPTO]: Office Document Cryptography Structure Specification](https://learn.microsoft.com/en-us/openspecs/office_file_formats/ms-offcrypto/3c34d72a-1a61-4b52-a893-196f9157f083)

Expand Down
3 changes: 3 additions & 0 deletions ko/formControl.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ AddFormControl 은 지정된 워크시트 이름 및 양식 제어 옵션에 따
<p align="center"><img width="180" src="./images/form_ctrl_button.gif" alt="Excelize 로 단추 양식 컨트롤 추가"></p>

```go
enable := true
err := f.AddFormControl("Sheet1", excelize.FormControl{
Cell: "A2",
Type: excelize.FormControlButton,
Expand Down Expand Up @@ -73,13 +74,15 @@ if err := f.AddFormControl("Sheet1", excelize.FormControl{
Type: excelize.FormControlOptionButton,
Text: "Option Button 1",
Checked: true,
Height: 20,
}); err != nil {
fmt.Println(err)
}
if err := f.AddFormControl("Sheet1", excelize.FormControl{
Cell: "A2",
Type: excelize.FormControlOptionButton,
Text: "Option Button 2",
Height: 20,
}); err != nil {
fmt.Println(err)
}
Expand Down
2 changes: 1 addition & 1 deletion ko/styles/website.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
}

.dropdown-menu {
min-width: 260px;
min-width: 270px;
}

@media (min-width: 1240px) {
Expand Down
Loading

0 comments on commit e1c2092

Please sign in to comment.