Compare commits

...

2 Commits

Author SHA1 Message Date
Mythie
81479b5b55 v1.7.0-rc.1 2024-08-28 18:00:43 +10:00
Catalin Pit
15efc6c36d fix: broken pages by translation tags (#1312) 2024-08-28 17:58:56 +10:00
10 changed files with 43 additions and 41 deletions

View File

@@ -1,6 +1,6 @@
{ {
"name": "@documenso/marketing", "name": "@documenso/marketing",
"version": "1.7.0-rc.0", "version": "1.7.0-rc.1",
"private": true, "private": true,
"license": "AGPL-3.0", "license": "AGPL-3.0",
"scripts": { "scripts": {

View File

@@ -1,6 +1,6 @@
{ {
"name": "@documenso/web", "name": "@documenso/web",
"version": "1.7.0-rc.0", "version": "1.7.0-rc.1",
"private": true, "private": true,
"license": "AGPL-3.0", "license": "AGPL-3.0",
"scripts": { "scripts": {

View File

@@ -65,17 +65,13 @@ export default async function ApiTokensPage() {
<h5 className="text-base">{token.name}</h5> <h5 className="text-base">{token.name}</h5>
<p className="text-muted-foreground mt-2 text-xs"> <p className="text-muted-foreground mt-2 text-xs">
<Trans> <Trans>Created on</Trans>{' '}
Created on{' '} <LocaleDate date={token.createdAt} format={DateTime.DATETIME_FULL} />
<LocaleDate date={token.createdAt} format={DateTime.DATETIME_FULL} />
</Trans>
</p> </p>
{token.expires ? ( {token.expires ? (
<p className="text-muted-foreground mt-1 text-xs"> <p className="text-muted-foreground mt-1 text-xs">
<Trans> <Trans>Expires on</Trans>{' '}
Expires on{' '} <LocaleDate date={token.expires} format={DateTime.DATETIME_FULL} />
<LocaleDate date={token.expires} format={DateTime.DATETIME_FULL} />
</Trans>
</p> </p>
) : ( ) : (
<p className="text-muted-foreground mt-1 text-xs"> <p className="text-muted-foreground mt-1 text-xs">

View File

@@ -98,17 +98,13 @@ export default async function ApiTokensPage({ params }: ApiTokensPageProps) {
<h5 className="text-base">{token.name}</h5> <h5 className="text-base">{token.name}</h5>
<p className="text-muted-foreground mt-2 text-xs"> <p className="text-muted-foreground mt-2 text-xs">
<Trans> <Trans>Created on</Trans>{' '}
Created on{' '} <LocaleDate date={token.createdAt} format={DateTime.DATETIME_FULL} />
<LocaleDate date={token.createdAt} format={DateTime.DATETIME_FULL} />
</Trans>
</p> </p>
{token.expires ? ( {token.expires ? (
<p className="text-muted-foreground mt-1 text-xs"> <p className="text-muted-foreground mt-1 text-xs">
<Trans> <Trans>Expires on</Trans>{' '}
Expires on{' '} <LocaleDate date={token.expires} format={DateTime.DATETIME_FULL} />
<LocaleDate date={token.expires} format={DateTime.DATETIME_FULL} />
</Trans>
</p> </p>
) : ( ) : (
<p className="text-muted-foreground mt-1 text-xs"> <p className="text-muted-foreground mt-1 text-xs">

8
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "@documenso/root", "name": "@documenso/root",
"version": "1.7.0-rc.0", "version": "1.7.0-rc.1",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@documenso/root", "name": "@documenso/root",
"version": "1.7.0-rc.0", "version": "1.7.0-rc.1",
"workspaces": [ "workspaces": [
"apps/*", "apps/*",
"packages/*" "packages/*"
@@ -81,7 +81,7 @@
}, },
"apps/marketing": { "apps/marketing": {
"name": "@documenso/marketing", "name": "@documenso/marketing",
"version": "1.7.0-rc.0", "version": "1.7.0-rc.1",
"license": "AGPL-3.0", "license": "AGPL-3.0",
"dependencies": { "dependencies": {
"@documenso/assets": "*", "@documenso/assets": "*",
@@ -424,7 +424,7 @@
}, },
"apps/web": { "apps/web": {
"name": "@documenso/web", "name": "@documenso/web",
"version": "1.7.0-rc.0", "version": "1.7.0-rc.1",
"license": "AGPL-3.0", "license": "AGPL-3.0",
"dependencies": { "dependencies": {
"@documenso/api": "*", "@documenso/api": "*",

View File

@@ -1,6 +1,6 @@
{ {
"private": true, "private": true,
"version": "1.7.0-rc.0", "version": "1.7.0-rc.1",
"scripts": { "scripts": {
"build": "turbo run build", "build": "turbo run build",
"build:web": "turbo run build --filter=@documenso/web", "build:web": "turbo run build --filter=@documenso/web",

File diff suppressed because one or more lines are too long

View File

@@ -973,13 +973,13 @@ msgid "Created by"
msgstr "" msgstr ""
#: apps/web/src/app/(dashboard)/admin/documents/[id]/page.tsx:49 #: apps/web/src/app/(dashboard)/admin/documents/[id]/page.tsx:49
#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:68
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:101
#: apps/web/src/components/(teams)/tables/pending-user-teams-data-table.tsx:80 #: apps/web/src/components/(teams)/tables/pending-user-teams-data-table.tsx:80
msgid "Created on" msgid "Created on"
msgstr "" msgstr ""
#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:68
#: apps/web/src/app/(dashboard)/settings/webhooks/page.tsx:89 #: apps/web/src/app/(dashboard)/settings/webhooks/page.tsx:89
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:101
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx:94 #: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx:94
msgid "Created on <0/>" msgid "Created on <0/>"
msgstr "" msgstr ""
@@ -1022,11 +1022,11 @@ msgstr ""
#: apps/web/src/app/(dashboard)/documents/delete-document-dialog.tsx:200 #: apps/web/src/app/(dashboard)/documents/delete-document-dialog.tsx:200
#: apps/web/src/app/(dashboard)/settings/security/passkeys/user-passkeys-data-table-actions.tsx:177 #: apps/web/src/app/(dashboard)/settings/security/passkeys/user-passkeys-data-table-actions.tsx:177
#: apps/web/src/app/(dashboard)/settings/security/passkeys/user-passkeys-data-table-actions.tsx:211 #: apps/web/src/app/(dashboard)/settings/security/passkeys/user-passkeys-data-table-actions.tsx:211
#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:90 #: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:86
#: apps/web/src/app/(dashboard)/settings/webhooks/page.tsx:104 #: apps/web/src/app/(dashboard)/settings/webhooks/page.tsx:104
#: apps/web/src/app/(dashboard)/templates/data-table-action-dropdown.tsx:91 #: apps/web/src/app/(dashboard)/templates/data-table-action-dropdown.tsx:91
#: apps/web/src/app/(dashboard)/templates/delete-template-dialog.tsx:90 #: apps/web/src/app/(dashboard)/templates/delete-template-dialog.tsx:90
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:123 #: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:119
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx:109 #: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx:109
#: apps/web/src/components/(dashboard)/settings/token/delete-token-dialog.tsx:121 #: apps/web/src/components/(dashboard)/settings/token/delete-token-dialog.tsx:121
#: apps/web/src/components/(dashboard)/settings/webhooks/delete-webhook-dialog.tsx:109 #: apps/web/src/components/(dashboard)/settings/webhooks/delete-webhook-dialog.tsx:109
@@ -1525,10 +1525,15 @@ msgstr ""
msgid "Expired" msgid "Expired"
msgstr "" msgstr ""
#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:73
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:106
msgid "Expires on"
msgstr ""
#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:75 #: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:75
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:108 #: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:108
msgid "Expires on <0/>" #~ msgid "Expires on <0/>"
msgstr "" #~ msgstr ""
#: apps/web/src/app/(dashboard)/admin/documents/[id]/admin-actions.tsx:42 #: apps/web/src/app/(dashboard)/admin/documents/[id]/admin-actions.tsx:42
msgid "Failed to reseal document" msgid "Failed to reseal document"
@@ -3387,8 +3392,8 @@ msgstr ""
msgid "Token deleted" msgid "Token deleted"
msgstr "" msgstr ""
#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:82 #: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:78
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:115 #: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:111
msgid "Token doesn't have an expiration date" msgid "Token doesn't have an expiration date"
msgstr "" msgstr ""

File diff suppressed because one or more lines are too long

View File

@@ -968,13 +968,13 @@ msgid "Created by"
msgstr "Created by" msgstr "Created by"
#: apps/web/src/app/(dashboard)/admin/documents/[id]/page.tsx:49 #: apps/web/src/app/(dashboard)/admin/documents/[id]/page.tsx:49
#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:68
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:101
#: apps/web/src/components/(teams)/tables/pending-user-teams-data-table.tsx:80 #: apps/web/src/components/(teams)/tables/pending-user-teams-data-table.tsx:80
msgid "Created on" msgid "Created on"
msgstr "Created on" msgstr "Created on"
#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:68
#: apps/web/src/app/(dashboard)/settings/webhooks/page.tsx:89 #: apps/web/src/app/(dashboard)/settings/webhooks/page.tsx:89
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:101
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx:94 #: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx:94
msgid "Created on <0/>" msgid "Created on <0/>"
msgstr "Created on <0/>" msgstr "Created on <0/>"
@@ -1017,11 +1017,11 @@ msgstr "Declined team invitation"
#: apps/web/src/app/(dashboard)/documents/delete-document-dialog.tsx:200 #: apps/web/src/app/(dashboard)/documents/delete-document-dialog.tsx:200
#: apps/web/src/app/(dashboard)/settings/security/passkeys/user-passkeys-data-table-actions.tsx:177 #: apps/web/src/app/(dashboard)/settings/security/passkeys/user-passkeys-data-table-actions.tsx:177
#: apps/web/src/app/(dashboard)/settings/security/passkeys/user-passkeys-data-table-actions.tsx:211 #: apps/web/src/app/(dashboard)/settings/security/passkeys/user-passkeys-data-table-actions.tsx:211
#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:90 #: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:86
#: apps/web/src/app/(dashboard)/settings/webhooks/page.tsx:104 #: apps/web/src/app/(dashboard)/settings/webhooks/page.tsx:104
#: apps/web/src/app/(dashboard)/templates/data-table-action-dropdown.tsx:91 #: apps/web/src/app/(dashboard)/templates/data-table-action-dropdown.tsx:91
#: apps/web/src/app/(dashboard)/templates/delete-template-dialog.tsx:90 #: apps/web/src/app/(dashboard)/templates/delete-template-dialog.tsx:90
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:123 #: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:119
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx:109 #: apps/web/src/app/(teams)/t/[teamUrl]/settings/webhooks/page.tsx:109
#: apps/web/src/components/(dashboard)/settings/token/delete-token-dialog.tsx:121 #: apps/web/src/components/(dashboard)/settings/token/delete-token-dialog.tsx:121
#: apps/web/src/components/(dashboard)/settings/webhooks/delete-webhook-dialog.tsx:109 #: apps/web/src/components/(dashboard)/settings/webhooks/delete-webhook-dialog.tsx:109
@@ -1520,10 +1520,15 @@ msgstr "Exceeded timeout"
msgid "Expired" msgid "Expired"
msgstr "Expired" msgstr "Expired"
#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:73
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:106
msgid "Expires on"
msgstr "Expires on"
#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:75 #: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:75
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:108 #: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:108
msgid "Expires on <0/>" #~ msgid "Expires on <0/>"
msgstr "Expires on <0/>" #~ msgstr "Expires on <0/>"
#: apps/web/src/app/(dashboard)/admin/documents/[id]/admin-actions.tsx:42 #: apps/web/src/app/(dashboard)/admin/documents/[id]/admin-actions.tsx:42
msgid "Failed to reseal document" msgid "Failed to reseal document"
@@ -3382,8 +3387,8 @@ msgstr "Token created"
msgid "Token deleted" msgid "Token deleted"
msgstr "Token deleted" msgstr "Token deleted"
#: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:82 #: apps/web/src/app/(dashboard)/settings/tokens/page.tsx:78
#: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:115 #: apps/web/src/app/(teams)/t/[teamUrl]/settings/tokens/page.tsx:111
msgid "Token doesn't have an expiration date" msgid "Token doesn't have an expiration date"
msgstr "Token doesn't have an expiration date" msgstr "Token doesn't have an expiration date"