commit 4a0c66159442b96cf6e19a05c51a194b52dddc6e parent c9d81e675fb94b17b1c9864b9a2c9d38834d72b0 Author: Thien-Thi Nguyen <ttn@gnu.org> Date: Mon, 24 May 2021 09:33:02 -0400 drop leading "the" in tooltip text (three instances) Diffstat:
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/packages/frontend/src/components/product/ProductForm.tsx b/packages/frontend/src/components/product/ProductForm.tsx @@ -102,7 +102,7 @@ export function ProductForm({ onSubscribe, initial, alreadyExist, }: Props) { <Input<Entity> name="unit" label={i18n`Unit`} tooltip={i18n`name of the product unit`} /> <InputCurrency<Entity> name="price" label={i18n`Price`} tooltip={i18n`amount in the current currency`} /> - <InputStock name="stock" label={i18n`Stock`} alreadyExist={alreadyExist} tooltip={i18n`the stock of the product can be managed or infinite`} /> + <InputStock name="stock" label={i18n`Stock`} alreadyExist={alreadyExist} tooltip={i18n`stock of the product can be managed or infinite`} /> <InputTaxes<Entity> name="taxes" label={i18n`Taxes`} tooltip={i18n`taxes for this product`} /> diff --git a/packages/frontend/src/paths/instance/orders/create/NonInventoryProductForm.tsx b/packages/frontend/src/paths/instance/orders/create/NonInventoryProductForm.tsx @@ -122,7 +122,7 @@ export function ProductForm({ onSubscribe, initial }: ProductProps) { <InputImage<NonInventoryProduct> name="image" label={i18n`Image`} tooltip={i18n`photo of the product`} /> <Input<NonInventoryProduct> name="description" inputType="multiline" label={i18n`Description`} tooltip={i18n`full product description`} /> <Input<NonInventoryProduct> name="unit" label={i18n`Unit`} tooltip={i18n`name of the product unit`} /> - <InputCurrency<NonInventoryProduct> name="price" label={i18n`Price`} tooltip={i18n`the amount in the current currency`} /> + <InputCurrency<NonInventoryProduct> name="price" label={i18n`Price`} tooltip={i18n`amount in the current currency`} /> <InputNumber<NonInventoryProduct> name="quantity" label={i18n`Quantity`} tooltip={i18n`how many products will be added`} /> diff --git a/packages/frontend/src/paths/instance/orders/details/DetailPage.tsx b/packages/frontend/src/paths/instance/orders/details/DetailPage.tsx @@ -315,7 +315,7 @@ function PaidPage({ id, order, onRefund }: { id: string; order: MerchantBackend. <Input<CT> readonly name="summary" label={i18n`Summary`} tooltip={i18n`human-readable description of the whole purchase`} /> <InputCurrency<CT> readonly name="amount" label={i18n`Amount`} tooltip={i18n`total price for the transaction`} /> {value.contract_terms.fulfillment_url && - <Input<CT> readonly name="fulfillment_url" label={i18n`Fulfillment URL`} tooltip={i18n`the URL for this purchase`} /> + <Input<CT> readonly name="fulfillment_url" label={i18n`Fulfillment URL`} tooltip={i18n`URL for this purchase`} /> } <Input<CT> readonly name="max_fee" label={i18n`Max fee`} tooltip={i18n`maximum total deposit fee accepted by the merchant for this contract`} /> <Input<CT> readonly name="max_wire_fee" label={i18n`Max wire fee`} tooltip={i18n`maximum wire fee accepted by the merchant`} />