diff --git a/docs/reference/Translations/index.md b/docs/reference/Translations/index.md index cb01b512e..2f61069d4 100644 --- a/docs/reference/Translations/index.md +++ b/docs/reference/Translations/index.md @@ -1689,6 +1689,10 @@ Translation keys for the `Contractor.Payments.PaymentsList` i18n namespace. | `dateRanges.last12Months` | `"Last 12 months"` | | `dateRanges.last3Months` | `"Last 3 months"` | | `dateRanges.last6Months` | `"Last 6 months"` | +| `historicalPaymentCta` | | +| `historicalPaymentCta.button` | `"Record a historical payment"` | +| `historicalPaymentCta.description` | `"Add a contractor payment that was made outside of Gusto to keep your records complete."` | +| `historicalPaymentCta.title` | `"Record a historical payment"` | | `noPaymentsDescription` | `"No contractor payments have been created yet. Create your first payment to get started."` | | `noPaymentsFound` | `"No payments found"` | | `paymentDateColumnLabel` | `"Payment date"` | diff --git a/docs/reference/component-inventory.md b/docs/reference/component-inventory.md index 8b9abd5a1..706d2088f 100644 --- a/docs/reference/component-inventory.md +++ b/docs/reference/component-inventory.md @@ -297,7 +297,7 @@ Renders an icon-only ` + } + /> + ) } diff --git a/src/i18n/en/Contractor.Payments.PaymentsList.json b/src/i18n/en/Contractor.Payments.PaymentsList.json index 193643529..497998393 100644 --- a/src/i18n/en/Contractor.Payments.PaymentsList.json +++ b/src/i18n/en/Contractor.Payments.PaymentsList.json @@ -27,5 +27,10 @@ "last3Months": "Last 3 months", "last6Months": "Last 6 months", "last12Months": "Last 12 months" + }, + "historicalPaymentCta": { + "title": "Record a historical payment", + "description": "Add a contractor payment that was made outside of Gusto to keep your records complete.", + "button": "Record a historical payment" } } diff --git a/src/i18n/types.d.ts b/src/i18n/types.d.ts index c98ed7308..db558f825 100644 --- a/src/i18n/types.d.ts +++ b/src/i18n/types.d.ts @@ -2511,6 +2511,14 @@ export namespace Translations { /** @defaultValue `"Last 12 months"` */ last12Months: string } + historicalPaymentCta: { + /** @defaultValue `"Record a historical payment"` */ + title: string + /** @defaultValue `"Add a contractor payment that was made outside of Gusto to keep your records complete."` */ + description: string + /** @defaultValue `"Record a historical payment"` */ + button: string + } } /** Translation keys for the `Contractor.Profile` i18n namespace. */ export interface ContractorProfile {