From 35624d3008ddc6e7e330acf4c83f1045b307dafc Mon Sep 17 00:00:00 2001 From: dominik-zeglen Date: Mon, 21 Sep 2020 15:34:15 +0200 Subject: [PATCH 1/3] Fix uncontrolled to controlled input change --- src/components/ControlledCheckbox.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/ControlledCheckbox.tsx b/src/components/ControlledCheckbox.tsx index fd4d57b45..97c7c2410 100644 --- a/src/components/ControlledCheckbox.tsx +++ b/src/components/ControlledCheckbox.tsx @@ -23,7 +23,7 @@ export const ControlledCheckbox: React.FC = ({ disabled={disabled} control={ onChange({ target: { name, value: !checked } })} From b0053e1f92fce2d7c2aa6a31ed94e289e33ff257 Mon Sep 17 00:00:00 2001 From: dominik-zeglen Date: Mon, 21 Sep 2020 17:19:33 +0200 Subject: [PATCH 2/3] Fix table horizontal scrolling --- src/components/AppLayout/AppLayout.tsx | 5 +- .../ResponsiveTable/ResponsiveTable.tsx | 4 +- src/orders/components/OrderList/OrderList.tsx | 60 +++++++++++-------- 3 files changed, 39 insertions(+), 30 deletions(-) diff --git a/src/components/AppLayout/AppLayout.tsx b/src/components/AppLayout/AppLayout.tsx index 703a33a2c..9c1fc3f35 100644 --- a/src/components/AppLayout/AppLayout.tsx +++ b/src/components/AppLayout/AppLayout.tsx @@ -75,9 +75,10 @@ const useStyles = makeStyles( height: "auto" } }, - root: { - display: "flex", + [theme.breakpoints.up("md")]: { + display: "flex" + }, width: `100%` }, spacer: { diff --git a/src/components/ResponsiveTable/ResponsiveTable.tsx b/src/components/ResponsiveTable/ResponsiveTable.tsx index 23cd083a9..8538ab6b1 100644 --- a/src/components/ResponsiveTable/ResponsiveTable.tsx +++ b/src/components/ResponsiveTable/ResponsiveTable.tsx @@ -5,8 +5,8 @@ import React from "react"; const useStyles = makeStyles( theme => ({ root: { - [theme.breakpoints.up("sm")]: { - "& table": { + [theme.breakpoints.up("md")]: { + "&& table": { tableLayout: "fixed" } }, diff --git a/src/orders/components/OrderList/OrderList.tsx b/src/orders/components/OrderList/OrderList.tsx index 7a2dca9a6..bf751a779 100644 --- a/src/orders/components/OrderList/OrderList.tsx +++ b/src/orders/components/OrderList/OrderList.tsx @@ -4,6 +4,7 @@ import TableCell from "@material-ui/core/TableCell"; import TableFooter from "@material-ui/core/TableFooter"; import TableHead from "@material-ui/core/TableHead"; import TableRow from "@material-ui/core/TableRow"; +import { CSSProperties } from "@material-ui/styles"; import { DateTime } from "@saleor/components/Date"; import Money from "@saleor/components/Money"; import ResponsiveTable from "@saleor/components/ResponsiveTable"; @@ -26,35 +27,42 @@ import { FormattedMessage, useIntl } from "react-intl"; import { OrderList_orders_edges_node } from "../../types/OrderList"; const useStyles = makeStyles( - theme => ({ - [theme.breakpoints.up("lg")]: { - colCustomer: { - width: 220 + theme => { + const overflowing: CSSProperties = { + overflow: "hidden", + textOverflow: "ellipsis" + }; + + return { + [theme.breakpoints.up("lg")]: { + colCustomer: { + width: 220 + }, + colDate: {}, + colFulfillment: { + width: 230 + }, + colNumber: { + width: 120 + }, + colPayment: { + width: 220 + }, + colTotal: {} }, + colCustomer: overflowing, colDate: {}, - colFulfillment: { - width: 230 + colFulfillment: overflowing, + colNumber: {}, + colPayment: overflowing, + colTotal: { + textAlign: "right" }, - colNumber: { - width: 120 - }, - colPayment: { - width: 220 - }, - colTotal: {} - }, - colCustomer: {}, - colDate: {}, - colFulfillment: {}, - colNumber: {}, - colPayment: {}, - colTotal: { - textAlign: "right" - }, - link: { - cursor: "pointer" - } - }), + link: { + cursor: "pointer" + } + }; + }, { name: "OrderList" } ); From ce77c9df106db5f90327f077790d60565d566dc7 Mon Sep 17 00:00:00 2001 From: mmarkusik Date: Tue, 22 Sep 2020 18:04:06 +0200 Subject: [PATCH 3/3] Fix strings containing "informations" (#722) * update * update changelog Co-authored-by: Magdalena Markusik --- CHANGELOG.md | 1 + locale/ar.json | 4 +- locale/az.json | 4 +- locale/bg.json | 4 +- locale/bn.json | 4 +- locale/ca.json | 4 +- locale/da.json | 4 +- locale/de.json | 4 +- locale/defaultMessages.json | 2 +- locale/el.json | 4 +- locale/es_CO.json | 4 +- locale/et.json | 4 +- locale/hi.json | 4 +- locale/hu.json | 4 +- locale/hy.json | 4 +- locale/id.json | 4 +- locale/is.json | 4 +- locale/ja.json | 4 +- locale/ko.json | 4 +- locale/nl.json | 4 +- locale/pt.json | 4 +- locale/pt_BR.json | 4 +- locale/ro.json | 4 +- locale/ru.json | 4 +- locale/sk.json | 4 +- locale/sl.json | 4 +- locale/sq.json | 4 +- locale/sr.json | 4 +- locale/sv.json | 4 +- locale/th.json | 4 +- locale/tr.json | 4 +- locale/uk.json | 4 +- locale/zh-Hans.json | 4 +- locale/zh-Hant.json | 4 +- src/intl.ts | 2 +- .../__snapshots__/Stories.test.ts.snap | 216 +++++++++--------- 36 files changed, 175 insertions(+), 174 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 55b13ece3..1129b9678 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -43,6 +43,7 @@ All notable, unreleased changes to this project will be documented in this file. - Fix return to previous page on screen size change - #710 by @orzechdev - Add variants reordering possibility - #716 by @orzechdev - Fix avatar change button - #719 by @orzechdev +- Change plural form of "informations" to "information" strings across the app #722 by @mmarkusik ## 2.10.1 diff --git a/locale/ar.json b/locale/ar.json index b24a869f0..1c3fea392 100644 --- a/locale/ar.json +++ b/locale/ar.json @@ -2200,7 +2200,7 @@ "string": "استوفى" }, "src_dot_generalInformations": { - "string": "General Informations" + "string": "General Information" }, "src_dot_home": { "context": "home section name", @@ -5393,4 +5393,4 @@ "context": "unassign product from voucher, button", "string": "Unassign" } -} \ No newline at end of file +} diff --git a/locale/az.json b/locale/az.json index 7e7f16b19..5bcead07f 100644 --- a/locale/az.json +++ b/locale/az.json @@ -2200,7 +2200,7 @@ "string": "Fulfilled" }, "src_dot_generalInformations": { - "string": "General Informations" + "string": "General Information" }, "src_dot_home": { "context": "home section name", @@ -5393,4 +5393,4 @@ "context": "unassign product from voucher, button", "string": "Unassign" } -} \ No newline at end of file +} diff --git a/locale/bg.json b/locale/bg.json index f3fe78a64..86a8f4c63 100644 --- a/locale/bg.json +++ b/locale/bg.json @@ -2200,7 +2200,7 @@ "string": "Fulfilled" }, "src_dot_generalInformations": { - "string": "General Informations" + "string": "General Information" }, "src_dot_home": { "context": "home section name", @@ -5393,4 +5393,4 @@ "context": "unassign product from voucher, button", "string": "Unassign" } -} \ No newline at end of file +} diff --git a/locale/bn.json b/locale/bn.json index 8598dc63b..3e89d4e86 100644 --- a/locale/bn.json +++ b/locale/bn.json @@ -2200,7 +2200,7 @@ "string": "Fulfilled" }, "src_dot_generalInformations": { - "string": "General Informations" + "string": "General Information" }, "src_dot_home": { "context": "home section name", @@ -5393,4 +5393,4 @@ "context": "unassign product from voucher, button", "string": "Unassign" } -} \ No newline at end of file +} diff --git a/locale/ca.json b/locale/ca.json index 26dcd7956..026f55650 100644 --- a/locale/ca.json +++ b/locale/ca.json @@ -2200,7 +2200,7 @@ "string": "Completat" }, "src_dot_generalInformations": { - "string": "General Informations" + "string": "General Information" }, "src_dot_home": { "context": "home section name", @@ -5393,4 +5393,4 @@ "context": "unassign product from voucher, button", "string": "Unassign" } -} \ No newline at end of file +} diff --git a/locale/da.json b/locale/da.json index 81c0add82..da2903339 100644 --- a/locale/da.json +++ b/locale/da.json @@ -2200,7 +2200,7 @@ "string": "Pakket" }, "src_dot_generalInformations": { - "string": "General Informations" + "string": "General Information" }, "src_dot_home": { "context": "home section name", @@ -5393,4 +5393,4 @@ "context": "unassign product from voucher, button", "string": "Unassign" } -} \ No newline at end of file +} diff --git a/locale/de.json b/locale/de.json index b74e76f13..8eb090d8b 100644 --- a/locale/de.json +++ b/locale/de.json @@ -2200,7 +2200,7 @@ "string": "Abgeschlossen" }, "src_dot_generalInformations": { - "string": "General Informations" + "string": "General Information" }, "src_dot_home": { "context": "home section name", @@ -5393,4 +5393,4 @@ "context": "unassign product from voucher, button", "string": "Zuordnung aufheben" } -} \ No newline at end of file +} diff --git a/locale/defaultMessages.json b/locale/defaultMessages.json index 5c00097a1..95db1b070 100644 --- a/locale/defaultMessages.json +++ b/locale/defaultMessages.json @@ -2715,7 +2715,7 @@ "string": "Fulfilled" }, "src_dot_generalInformations": { - "string": "General Informations" + "string": "General Information" }, "src_dot_home": { "context": "home section name", diff --git a/locale/el.json b/locale/el.json index 172ea2bda..b3df6650d 100644 --- a/locale/el.json +++ b/locale/el.json @@ -2200,7 +2200,7 @@ "string": "Fulfilled" }, "src_dot_generalInformations": { - "string": "General Informations" + "string": "General Information" }, "src_dot_home": { "context": "home section name", @@ -5393,4 +5393,4 @@ "context": "unassign product from voucher, button", "string": "Unassign" } -} \ No newline at end of file +} diff --git a/locale/es_CO.json b/locale/es_CO.json index a2ec729f5..786c87ccf 100644 --- a/locale/es_CO.json +++ b/locale/es_CO.json @@ -2200,7 +2200,7 @@ "string": "Fulfilled" }, "src_dot_generalInformations": { - "string": "General Informations" + "string": "General Information" }, "src_dot_home": { "context": "home section name", @@ -5393,4 +5393,4 @@ "context": "unassign product from voucher, button", "string": "Unassign" } -} \ No newline at end of file +} diff --git a/locale/et.json b/locale/et.json index fadf1025d..30df6ae5f 100644 --- a/locale/et.json +++ b/locale/et.json @@ -2200,7 +2200,7 @@ "string": "Täidetud" }, "src_dot_generalInformations": { - "string": "General Informations" + "string": "General Information" }, "src_dot_home": { "context": "home section name", @@ -5393,4 +5393,4 @@ "context": "unassign product from voucher, button", "string": "Eemalda" } -} \ No newline at end of file +} diff --git a/locale/hi.json b/locale/hi.json index f3f077b97..1d775c31e 100644 --- a/locale/hi.json +++ b/locale/hi.json @@ -2200,7 +2200,7 @@ "string": "Fulfilled" }, "src_dot_generalInformations": { - "string": "General Informations" + "string": "General Information" }, "src_dot_home": { "context": "home section name", @@ -5393,4 +5393,4 @@ "context": "unassign product from voucher, button", "string": "Unassign" } -} \ No newline at end of file +} diff --git a/locale/hu.json b/locale/hu.json index 10727d259..9bf226a2c 100644 --- a/locale/hu.json +++ b/locale/hu.json @@ -2200,7 +2200,7 @@ "string": "Teljesített" }, "src_dot_generalInformations": { - "string": "General Informations" + "string": "General Information" }, "src_dot_home": { "context": "home section name", @@ -5393,4 +5393,4 @@ "context": "unassign product from voucher, button", "string": "Unassign" } -} \ No newline at end of file +} diff --git a/locale/hy.json b/locale/hy.json index 2e8dbb7d8..8eccdeec6 100644 --- a/locale/hy.json +++ b/locale/hy.json @@ -2200,7 +2200,7 @@ "string": "Fulfilled" }, "src_dot_generalInformations": { - "string": "General Informations" + "string": "General Information" }, "src_dot_home": { "context": "home section name", @@ -5393,4 +5393,4 @@ "context": "unassign product from voucher, button", "string": "Unassign" } -} \ No newline at end of file +} diff --git a/locale/id.json b/locale/id.json index 754fcf819..c6f3d971f 100644 --- a/locale/id.json +++ b/locale/id.json @@ -2200,7 +2200,7 @@ "string": "Terpenuhi" }, "src_dot_generalInformations": { - "string": "General Informations" + "string": "General Information" }, "src_dot_home": { "context": "home section name", @@ -5393,4 +5393,4 @@ "context": "unassign product from voucher, button", "string": "Unassign" } -} \ No newline at end of file +} diff --git a/locale/is.json b/locale/is.json index 8b30ddafa..789082b64 100644 --- a/locale/is.json +++ b/locale/is.json @@ -2200,7 +2200,7 @@ "string": "Fulfilled" }, "src_dot_generalInformations": { - "string": "General Informations" + "string": "General Information" }, "src_dot_home": { "context": "home section name", @@ -5393,4 +5393,4 @@ "context": "unassign product from voucher, button", "string": "Unassign" } -} \ No newline at end of file +} diff --git a/locale/ja.json b/locale/ja.json index 1d92e4889..d46405f6f 100644 --- a/locale/ja.json +++ b/locale/ja.json @@ -2200,7 +2200,7 @@ "string": "Fulfilled" }, "src_dot_generalInformations": { - "string": "General Informations" + "string": "General Information" }, "src_dot_home": { "context": "home section name", @@ -5393,4 +5393,4 @@ "context": "unassign product from voucher, button", "string": "Unassign" } -} \ No newline at end of file +} diff --git a/locale/ko.json b/locale/ko.json index bbe560655..8e8002188 100644 --- a/locale/ko.json +++ b/locale/ko.json @@ -2200,7 +2200,7 @@ "string": "완료" }, "src_dot_generalInformations": { - "string": "General Informations" + "string": "General Information" }, "src_dot_home": { "context": "home section name", @@ -5393,4 +5393,4 @@ "context": "unassign product from voucher, button", "string": "Unassign" } -} \ No newline at end of file +} diff --git a/locale/nl.json b/locale/nl.json index 016ce9b57..e4d4bbdcb 100644 --- a/locale/nl.json +++ b/locale/nl.json @@ -2200,7 +2200,7 @@ "string": "Fulfilled" }, "src_dot_generalInformations": { - "string": "General Informations" + "string": "General Information" }, "src_dot_home": { "context": "home section name", @@ -5393,4 +5393,4 @@ "context": "unassign product from voucher, button", "string": "Unassign" } -} \ No newline at end of file +} diff --git a/locale/pt.json b/locale/pt.json index e8f1f258c..b64ff2ee0 100644 --- a/locale/pt.json +++ b/locale/pt.json @@ -2200,7 +2200,7 @@ "string": "Completo" }, "src_dot_generalInformations": { - "string": "General Informations" + "string": "General Information" }, "src_dot_home": { "context": "home section name", @@ -5393,4 +5393,4 @@ "context": "unassign product from voucher, button", "string": "Desatribuir" } -} \ No newline at end of file +} diff --git a/locale/pt_BR.json b/locale/pt_BR.json index 22da06452..7b11f8e1f 100644 --- a/locale/pt_BR.json +++ b/locale/pt_BR.json @@ -2200,7 +2200,7 @@ "string": "Completo" }, "src_dot_generalInformations": { - "string": "General Informations" + "string": "General Information" }, "src_dot_home": { "context": "home section name", @@ -5393,4 +5393,4 @@ "context": "unassign product from voucher, button", "string": "Unassign" } -} \ No newline at end of file +} diff --git a/locale/ro.json b/locale/ro.json index 062e9f960..38b052ea7 100644 --- a/locale/ro.json +++ b/locale/ro.json @@ -2200,7 +2200,7 @@ "string": "Livrată" }, "src_dot_generalInformations": { - "string": "General Informations" + "string": "General Information" }, "src_dot_home": { "context": "home section name", @@ -5393,4 +5393,4 @@ "context": "unassign product from voucher, button", "string": "Unassign" } -} \ No newline at end of file +} diff --git a/locale/ru.json b/locale/ru.json index 0421d2424..76c24d54d 100644 --- a/locale/ru.json +++ b/locale/ru.json @@ -2200,7 +2200,7 @@ "string": "Исполнен" }, "src_dot_generalInformations": { - "string": "General Informations" + "string": "General Information" }, "src_dot_home": { "context": "home section name", @@ -5393,4 +5393,4 @@ "context": "unassign product from voucher, button", "string": "Unassign" } -} \ No newline at end of file +} diff --git a/locale/sk.json b/locale/sk.json index bdfaa70cc..325122ee1 100644 --- a/locale/sk.json +++ b/locale/sk.json @@ -2200,7 +2200,7 @@ "string": "Splnené" }, "src_dot_generalInformations": { - "string": "General Informations" + "string": "General Information" }, "src_dot_home": { "context": "home section name", @@ -5393,4 +5393,4 @@ "context": "unassign product from voucher, button", "string": "Unassign" } -} \ No newline at end of file +} diff --git a/locale/sl.json b/locale/sl.json index 164343b39..f33ad371d 100644 --- a/locale/sl.json +++ b/locale/sl.json @@ -2200,7 +2200,7 @@ "string": "Fulfilled" }, "src_dot_generalInformations": { - "string": "General Informations" + "string": "General Information" }, "src_dot_home": { "context": "home section name", @@ -5393,4 +5393,4 @@ "context": "unassign product from voucher, button", "string": "Unassign" } -} \ No newline at end of file +} diff --git a/locale/sq.json b/locale/sq.json index 0852476eb..196aaaa1a 100644 --- a/locale/sq.json +++ b/locale/sq.json @@ -2200,7 +2200,7 @@ "string": "I perfunduar" }, "src_dot_generalInformations": { - "string": "General Informations" + "string": "General Information" }, "src_dot_home": { "context": "home section name", @@ -5393,4 +5393,4 @@ "context": "unassign product from voucher, button", "string": "Unassign" } -} \ No newline at end of file +} diff --git a/locale/sr.json b/locale/sr.json index efe8c4ce7..ef0b61f10 100644 --- a/locale/sr.json +++ b/locale/sr.json @@ -2200,7 +2200,7 @@ "string": "Ispunjeno" }, "src_dot_generalInformations": { - "string": "General Informations" + "string": "General Information" }, "src_dot_home": { "context": "home section name", @@ -5393,4 +5393,4 @@ "context": "unassign product from voucher, button", "string": "Unassign" } -} \ No newline at end of file +} diff --git a/locale/sv.json b/locale/sv.json index 50d98c31d..df1f2d387 100644 --- a/locale/sv.json +++ b/locale/sv.json @@ -2200,7 +2200,7 @@ "string": "Fullbordad" }, "src_dot_generalInformations": { - "string": "General Informations" + "string": "General Information" }, "src_dot_home": { "context": "home section name", @@ -5393,4 +5393,4 @@ "context": "unassign product from voucher, button", "string": "Unassign" } -} \ No newline at end of file +} diff --git a/locale/th.json b/locale/th.json index 8e0227856..d455f3454 100644 --- a/locale/th.json +++ b/locale/th.json @@ -2200,7 +2200,7 @@ "string": "Fulfilled" }, "src_dot_generalInformations": { - "string": "General Informations" + "string": "General Information" }, "src_dot_home": { "context": "home section name", @@ -5393,4 +5393,4 @@ "context": "unassign product from voucher, button", "string": "Unassign" } -} \ No newline at end of file +} diff --git a/locale/tr.json b/locale/tr.json index 6e48b201a..4c7d74e2e 100644 --- a/locale/tr.json +++ b/locale/tr.json @@ -2200,7 +2200,7 @@ "string": "Tamamlanmış" }, "src_dot_generalInformations": { - "string": "General Informations" + "string": "General Information" }, "src_dot_home": { "context": "home section name", @@ -5393,4 +5393,4 @@ "context": "unassign product from voucher, button", "string": "Unassign" } -} \ No newline at end of file +} diff --git a/locale/uk.json b/locale/uk.json index d8ef664df..3cf25bd05 100644 --- a/locale/uk.json +++ b/locale/uk.json @@ -2200,7 +2200,7 @@ "string": "Fulfilled" }, "src_dot_generalInformations": { - "string": "General Informations" + "string": "General Information" }, "src_dot_home": { "context": "home section name", @@ -5393,4 +5393,4 @@ "context": "unassign product from voucher, button", "string": "Скасувати" } -} \ No newline at end of file +} diff --git a/locale/zh-Hans.json b/locale/zh-Hans.json index 9f4349055..e972b34c7 100644 --- a/locale/zh-Hans.json +++ b/locale/zh-Hans.json @@ -2200,7 +2200,7 @@ "string": "已完成" }, "src_dot_generalInformations": { - "string": "General Informations" + "string": "General Information" }, "src_dot_home": { "context": "home section name", @@ -5393,4 +5393,4 @@ "context": "unassign product from voucher, button", "string": "取消分配" } -} \ No newline at end of file +} diff --git a/locale/zh-Hant.json b/locale/zh-Hant.json index 1e229ddf4..092fd991a 100644 --- a/locale/zh-Hant.json +++ b/locale/zh-Hant.json @@ -2200,7 +2200,7 @@ "string": "Fulfilled" }, "src_dot_generalInformations": { - "string": "General Informations" + "string": "General Information" }, "src_dot_home": { "context": "home section name", @@ -5393,4 +5393,4 @@ "context": "unassign product from voucher, button", "string": "Unassign" } -} \ No newline at end of file +} diff --git a/src/intl.ts b/src/intl.ts index fa27aa818..b0e989e24 100644 --- a/src/intl.ts +++ b/src/intl.ts @@ -40,7 +40,7 @@ export const commonMessages = defineMessages({ defaultMessage: "First Name" }, generalInformations: { - defaultMessage: "General Informations" + defaultMessage: "General Information" }, lastName: { defaultMessage: "Last Name" diff --git a/src/storybook/__snapshots__/Stories.test.ts.snap b/src/storybook/__snapshots__/Stories.test.ts.snap index 10cc56c22..33ab804f4 100644 --- a/src/storybook/__snapshots__/Stories.test.ts.snap +++ b/src/storybook/__snapshots__/Stories.test.ts.snap @@ -14458,7 +14458,7 @@ exports[`Storyshots Views / Apps / Webhooks / Create webhook default 1`] = `
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information
- General Informations + General Information