Skip to content

Commit

Permalink
update copy
Browse files Browse the repository at this point in the history
  • Loading branch information
SuaYoo committed Feb 10, 2025
1 parent a2de997 commit 5b8bfd8
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 10 deletions.
2 changes: 1 addition & 1 deletion frontend/docs/docs/user-guide/org-settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ The org URL is where you and other org members will go to view the dashboard, co
Org name and URLs are unique to each Browsertrix instance (for example, on `app.browsertrix.com`) and you may be prompted to change the org name or URL if either are already in use by another org.

??? info "What information will be visible to the public?"
All org information is private until you make the org visible. Once your org is made visible to the public, the org name, description, and website will appear on the org's public gallery page. You can preview how information appears to the public by clicking **View as public**.
All org information is private until you make the org visible. Once your org is made visible to the public, the org name, description, and website will appear on the org's public collections gallery page. You can preview how information appears to the public by visiting the linked public collections gallery page.

### Public Collections Gallery

Expand Down
4 changes: 3 additions & 1 deletion frontend/src/pages/org/dashboard.ts
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,9 @@ export class Dashboard extends BtrixElement {
`/${RouteNamespace.PublicOrgs}/${this.orgSlugState}`,
window.location.toString(),
).toString()}
content=${msg("Copy Link to Public Gallery")}
content=${msg(
"Copy Link to Public Collections Gallery",
)}
></btrix-copy-button>`
: nothing,
)}
Expand Down
18 changes: 10 additions & 8 deletions frontend/src/pages/org/settings/components/general.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ export class OrgSettingsGeneral extends BtrixElement {
${this.org?.enablePublicProfile
? html`
<li>
${msg("Public gallery")}:
${msg("Public collections gallery")}:
<span class="break-word text-blue-500">
/${RouteNamespace.PublicOrgs}/<strong
class="font-medium"
Expand Down Expand Up @@ -158,7 +158,7 @@ export class OrgSettingsGeneral extends BtrixElement {
href=${`/${RouteNamespace.PublicOrgs}/${this.orgSlugState}`}
target="_blank"
>
${msg("View public gallery")}
${msg("View public collections gallery")}
</btrix-link>
`,
)}
Expand All @@ -183,7 +183,7 @@ export class OrgSettingsGeneral extends BtrixElement {

return html`
<btrix-section-heading class="[--margin:var(--sl-spacing-medium)]">
${msg("Public Gallery")}
${msg("Public Collections Gallery")}
</btrix-section-heading>
${columns([
[
Expand All @@ -199,7 +199,11 @@ export class OrgSettingsGeneral extends BtrixElement {
${msg("Enable public collections gallery")}
</sl-switch>
</div>
<btrix-copy-field value=${publicGalleryUrl} .monostyle=${false}>
<btrix-copy-field
aria-label=${msg("Public collections gallery URL")}
value=${publicGalleryUrl}
.monostyle=${false}
>
<sl-tooltip slot="prefix" content=${msg("Open in New Tab")} hoist>
<sl-icon-button
href=${publicGalleryUrl}
Expand All @@ -221,7 +225,7 @@ export class OrgSettingsGeneral extends BtrixElement {
class="with-max-help-text mt-5"
name="publicDescription"
size="small"
label=${msg("Public Gallery Description")}
label=${msg("Description")}
autocomplete="off"
value=${this.org?.publicDescription || ""}
minlength="2"
Expand All @@ -244,9 +248,7 @@ export class OrgSettingsGeneral extends BtrixElement {
value=${this.org?.publicUrl || ""}
></btrix-url-input>
`,
msg(
"Link to your organization's (or your personal) website in the public gallery.",
),
msg("Link to your organization's (or your personal) website."),
],
])}
`;
Expand Down

0 comments on commit 5b8bfd8

Please sign in to comment.