diff --git a/package-lock.json b/package-lock.json index c2fca2e..34d35dd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -3260,8 +3260,7 @@ "version": "4.6.0", "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=", - "dev": true, - "optional": true + "dev": true }, "coa": { "version": "2.0.2", @@ -9031,8 +9030,7 @@ "version": "2.2.2", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz", "integrity": "sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==", - "dev": true, - "optional": true + "dev": true }, "pify": { "version": "4.0.1", @@ -10567,8 +10565,7 @@ "version": "4.0.8", "resolved": "https://registry.npmjs.org/rx-lite/-/rx-lite-4.0.8.tgz", "integrity": "sha1-Cx4Rr4vESDbwSmQH6S2kJGe3lEQ=", - "dev": true, - "optional": true + "dev": true }, "rx-lite-aggregates": { "version": "4.0.8", diff --git a/public/locales/en/client-form.json b/public/locales/en/client-form.json index 48234e3..c0cfae9 100644 --- a/public/locales/en/client-form.json +++ b/public/locales/en/client-form.json @@ -4,20 +4,22 @@ "done": "Done", "create": "Create", "loading": "Loading", + "tabs": { + "general": "General", + "invoicing": "Invoicing", + "address": "Address" + }, "general": { - "title": "General", "company_name": "Company name", "invoice_email": "Email" }, "invoicing": { - "title": "Invoicing", "currency": "Currency", "rate": "Hourly rate", "has_tax": "Apply taxes", "bank_account": "Bank account" }, "address": { - "title": "Address", "company_address": "Company address", "company_postal_code": "Postal code", "company_city": "City", diff --git a/public/locales/en/invoice-controls.json b/public/locales/en/invoice-controls.json index 1e73b9a..956ab56 100644 --- a/public/locales/en/invoice-controls.json +++ b/public/locales/en/invoice-controls.json @@ -4,16 +4,9 @@ "download_pdf": "Download PDF", "delete": "Delete", "delete_modal": { - "title": "Delete client", + "title": "Delete invoice", "ok_title": "Delete", "cancel_title": "Dismiss" }, - "statuses": { - "draft": "draft", - "booked": "booked", - "sent": "sent", - "paid": "paid", - "cancelled": "cancelled" - }, "notification_deleted": "Deleted" } diff --git a/public/locales/en/invoice-header.json b/public/locales/en/invoice-header.json index c522eab..154de06 100644 --- a/public/locales/en/invoice-header.json +++ b/public/locales/en/invoice-header.json @@ -2,9 +2,9 @@ "invoice_title": "Invoice ", "invoice_number": "No.", "issued_at": "Issued at: ", - "due_at": "Due at", + "due_at": "Due at:", "late_fee": "Late fee:", "add_late_fee": "Add late fee", - "modal_issued_at_title": "Issued at" - + "modal_issued_at_title": "Issued at", + "modal_due_at_title": "Due at" } diff --git a/public/locales/en/statuses.json b/public/locales/en/statuses.json new file mode 100644 index 0000000..845c50b --- /dev/null +++ b/public/locales/en/statuses.json @@ -0,0 +1,7 @@ +{ + "draft": "draft", + "booked": "booked", + "sent": "sent", + "paid": "paid", + "cancelled": "cancelled" +} diff --git a/public/locales/en/team-form.json b/public/locales/en/team-form.json index 71d1ef8..81e70e1 100644 --- a/public/locales/en/team-form.json +++ b/public/locales/en/team-form.json @@ -1,24 +1,27 @@ { - "title": "Team", + "title": "Your company", "done": "Done", "updated": "Updated", "loading": "Loading", + "tabs": { + "general": "General", + "invoicing": "Invoicing", + "address": "Address", + "taxes": "Taxes" + }, "general": { - "title": "General", - "company_name": "Company Name", + "company_name": "Company name", "contact_email": "Email", "contact_phone": "Phone", "website": "Website" }, "invoicing": { - "title": "Invoicing", "invoice_late_fee": "Late fee (%)", "invoice_due_days": "Payment terms, days", "currency": "Default currency" }, "address": { - "title": "Address", - "company_address": "Company Address", + "company_address": "Company address", "company_postal_code": "Postal code", "company_city": "City", "company_county": "County/State", diff --git a/public/locales/en/team-logo.json b/public/locales/en/team-logo.json index e89b1c5..99a34d0 100644 --- a/public/locales/en/team-logo.json +++ b/public/locales/en/team-logo.json @@ -1,7 +1,7 @@ { "modal_title": "Choose logo", "button_text": "Select from files", - "logo_url": "Insert web url", + "logo_url": "Insert image web url", "logo_url_err": "Logo has to be under 512kb.", "or": "or" } diff --git a/public/locales/en/the-footer.json b/public/locales/en/the-footer.json index 32e2e55..824ff91 100644 --- a/public/locales/en/the-footer.json +++ b/public/locales/en/the-footer.json @@ -1,5 +1,6 @@ { - "lights": "Lights", + "lights-on": "Lights on", + "lights-off": "Lights off", "title": "All your data is saved in your browser and not on any server.\n This application is truly serverless and only you have access to your data.", "what_about_my_data": "What about my data? ", "made_with": "Made with", diff --git a/src/components/TheFooter.vue b/src/components/TheFooter.vue index 2d32de4..1f1d805 100644 --- a/src/components/TheFooter.vue +++ b/src/components/TheFooter.vue @@ -1,7 +1,7 @@