From 5321b4f45ab94b847181cd6e0f3306fad25d12c6 Mon Sep 17 00:00:00 2001
From: Long Ho
Date: Fri, 2 Apr 2021 21:14:40 -0400
Subject: [PATCH] chore(@formatjs/editor): add test data
---
BUILD | 9 +
package-lock.json | 41 +
package.json | 1 +
packages/editor/BUILD | 20 +-
packages/editor/fixtures/en-GB.json | 15112 ++++++++++++++++++++++++++
packages/editor/fixtures/en.json | 15112 ++++++++++++++++++++++++++
packages/editor/fixtures/ru.json | 15112 ++++++++++++++++++++++++++
packages/editor/index.tsx | 82 +-
packages/editor/message.tsx | 55 +
packages/editor/messages.tsx | 30 +-
packages/editor/package.json | 1 +
tools/index.bzl | 3 +-
12 files changed, 45504 insertions(+), 74 deletions(-)
create mode 100644 packages/editor/fixtures/en-GB.json
create mode 100644 packages/editor/fixtures/en.json
create mode 100644 packages/editor/fixtures/ru.json
create mode 100644 packages/editor/message.tsx
diff --git a/BUILD b/BUILD
index b5a112e3e3..0a28fd9324 100644
--- a/BUILD
+++ b/BUILD
@@ -1,5 +1,6 @@
load("@bazelbuild_buildtools//buildifier:def.bzl", "buildifier")
load("@com_github_ash2k_bazel_tools//multirun:def.bzl", "multirun")
+load("@npm//@bazel/typescript:index.bzl", "ts_config")
load("@npm//karma:index.bzl", "karma_test")
load("//tools:index.bzl", "BUILDIFIER_WARNINGS")
@@ -21,6 +22,13 @@ exports_files(
visibility = ["//:__subpackages__"],
)
+ts_config(
+ name = "tsconfig.esm",
+ src = "tsconfig.esm.json",
+ visibility = ["//:__subpackages__"],
+ deps = ["//:tsconfig.json"],
+)
+
# We run this centrally so it doesn't spawn
# multiple browser sessions which overwhelms SauceLabs
KARMA_TESTS = [
@@ -84,6 +92,7 @@ multirun(
"//packages/babel-plugin-formatjs:prettier",
"//packages/cli:prettier",
"//packages/ecma402-abstract:prettier",
+ "//packages/editor:prettier",
"//packages/eslint-plugin-formatjs:prettier",
"//packages/icu-messageformat-parser:prettier",
"//packages/intl-datetimeformat:prettier",
diff --git a/package-lock.json b/package-lock.json
index 747f750909..a1ef735c90 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -32,6 +32,7 @@
"@docusaurus/theme-live-codeblock": "2.0.0-alpha.72",
"@jest/transform": "^26.6.2",
"@material-ui/icons": "^4.11.2",
+ "@material-ui/lab": "^4.0.0-alpha.57",
"@testing-library/jest-dom": "^5.11.5",
"@testing-library/react": "^11.1.1",
"@types/babel__core": "^7.1.7",
@@ -4668,6 +4669,33 @@
}
}
},
+ "node_modules/@material-ui/lab": {
+ "version": "4.0.0-alpha.57",
+ "resolved": "https://registry.npmjs.org/@material-ui/lab/-/lab-4.0.0-alpha.57.tgz",
+ "integrity": "sha512-qo/IuIQOmEKtzmRD2E4Aa6DB4A87kmY6h0uYhjUmrrgmEAgbbw9etXpWPVXuRK6AGIQCjFzV6WO2i21m1R4FCw==",
+ "dev": true,
+ "dependencies": {
+ "@babel/runtime": "^7.4.4",
+ "@material-ui/utils": "^4.11.2",
+ "clsx": "^1.0.4",
+ "prop-types": "^15.7.2",
+ "react-is": "^16.8.0 || ^17.0.0"
+ },
+ "engines": {
+ "node": ">=8.0.0"
+ },
+ "peerDependencies": {
+ "@material-ui/core": "^4.9.10",
+ "@types/react": "^16.8.6 || ^17.0.0",
+ "react": "^16.8.0 || ^17.0.0",
+ "react-dom": "^16.8.0 || ^17.0.0"
+ },
+ "peerDependenciesMeta": {
+ "@types/react": {
+ "optional": true
+ }
+ }
+ },
"node_modules/@material-ui/styles": {
"version": "4.11.3",
"resolved": "https://registry.npmjs.org/@material-ui/styles/-/styles-4.11.3.tgz",
@@ -46291,6 +46319,19 @@
"@babel/runtime": "^7.4.4"
}
},
+ "@material-ui/lab": {
+ "version": "4.0.0-alpha.57",
+ "resolved": "https://registry.npmjs.org/@material-ui/lab/-/lab-4.0.0-alpha.57.tgz",
+ "integrity": "sha512-qo/IuIQOmEKtzmRD2E4Aa6DB4A87kmY6h0uYhjUmrrgmEAgbbw9etXpWPVXuRK6AGIQCjFzV6WO2i21m1R4FCw==",
+ "dev": true,
+ "requires": {
+ "@babel/runtime": "^7.4.4",
+ "@material-ui/utils": "^4.11.2",
+ "clsx": "^1.0.4",
+ "prop-types": "^15.7.2",
+ "react-is": "^16.8.0 || ^17.0.0"
+ }
+ },
"@material-ui/styles": {
"version": "4.11.3",
"resolved": "https://registry.npmjs.org/@material-ui/styles/-/styles-4.11.3.tgz",
diff --git a/package.json b/package.json
index 73f03a00e8..34141677f3 100644
--- a/package.json
+++ b/package.json
@@ -42,6 +42,7 @@
"@docusaurus/theme-live-codeblock": "2.0.0-alpha.72",
"@jest/transform": "^26.6.2",
"@material-ui/icons": "^4.11.2",
+ "@material-ui/lab": "^4.0.0-alpha.57",
"@testing-library/jest-dom": "^5.11.5",
"@testing-library/react": "^11.1.1",
"@types/babel__core": "^7.1.7",
diff --git a/packages/editor/BUILD b/packages/editor/BUILD
index 444af8f065..abe0135f3b 100644
--- a/packages/editor/BUILD
+++ b/packages/editor/BUILD
@@ -1,7 +1,9 @@
-load("@build_bazel_rules_nodejs//:index.bzl", "generated_file_test", "pkg_npm", "copy_to_bin")
-load("//tools:index.bzl", "check_format", "ts_compile", "esbuild")
-load("//tools:jest.bzl", "jest_test")
+load("@build_bazel_rules_nodejs//:index.bzl", "copy_to_bin", "generated_file_test", "pkg_npm")
+
+# load("//tools:jest.bzl", "jest_test")
load("@npm//http-server:index.bzl", "http_server")
+load("//tools:index.bzl", "check_format", "esbuild", "ts_compile")
+
PACKAGE_NAME = "editor"
pkg_npm(
@@ -32,19 +34,21 @@ SRCS = glob(["*.ts*"])
SRC_DEPS = [
"@npm//@material-ui/core",
"@npm//@material-ui/icons",
+ "@npm//@material-ui/lab",
"@npm//react",
"@npm//@types/react",
"@npm//react-dom",
"@npm//@types/react-dom",
- "//packages/react-intl:dist"
+ "//packages/react-intl:dist",
+ "//packages/intl-messageformat-parser:dist",
]
ts_compile(
name = "dist",
package_name = "@formatjs/%s" % PACKAGE_NAME,
srcs = SRCS,
+ skip_esm = False,
deps = SRC_DEPS,
- skip_esm=False,
)
# jest_test(
@@ -77,9 +81,6 @@ check_format(
],
exclude = [
"CHANGELOG.md",
- # Intentional err
- "tests/extract/typescript/err.tsx",
- "tests/*/__snapshots__/*",
],
),
)
@@ -92,7 +93,6 @@ esbuild(
entry_point = "lib/main.js",
format = "iife",
deps = [":dist-esm"] + SRC_DEPS + [
-
],
)
@@ -106,7 +106,7 @@ http_server(
data = [
":index",
":app",
- ],
+ ] + glob(["fixtures/*.json"]),
templated_args = [
"packages/editor",
],
diff --git a/packages/editor/fixtures/en-GB.json b/packages/editor/fixtures/en-GB.json
new file mode 100644
index 0000000000..690e3820b5
--- /dev/null
+++ b/packages/editor/fixtures/en-GB.json
@@ -0,0 +1,15112 @@
+{
+ "++KM7f": "{count, plural, one {{count} photo} other {{count} photos}}",
+ "++NdWX": "Bring Slack conversations and Dropbox content together to keep teams in sync.",
+ "++TMjx": "Info in this report:",
+ "++p0Vh": "Cancelling your trial",
+ "++wAXq": "Cannot add folder",
+ "+/+p5G": "You don\u2019t have permission to save to this folder.",
+ "+/TA/S": "Continue with installation link",
+ "+/aseH": "{name} downloaded this file",
+ "+/lES4": "Wide-gamut RGB",
+ "+/y+vj": "Start new transfer",
+ "+03AJW": "Organise a team",
+ "+0FBSK": "This member",
+ "+0ofKf": "HelloSign lets you request signatures or sign documents directly from Dropbox.",
+ "+1MsbO": "Apps managed for your team",
+ "+22NkS": "Choose an assignment",
+ "+2ICy8": "Member since:",
+ "+2jNKl": "Capture project information, share deliverables and collect targeted feedback in a single doc.",
+ "+3VSGf": "The file you selected cannot be validated in DocuSign. Please try again with a valid file.",
+ "+4N3an": "Host dismissed.",
+ "+4exZC": "Asked to join on {date}",
+ "+4oAxT": "Teams around the world work together with Dropbox",
+ "+58ktI": "e.g. Acme, Acme Marketing",
+ "+5GSOF": "Get premium Transfer features including up to {gigabyteSpace} per transfer.",
+ "+5HiT6": "Update",
+ "+5Ta6t": "{actor_name} shared this file with you",
+ "+5WKqD": "Click 'Open with' and select Adobe Sign to open your PDFs directly from Dropbox.",
+ "+5bYbH": "Set permissions for {item}",
+ "+5oplS": "Get {space} or more and powerful features with Dropbox Business",
+ "+5rKgY": "Advanced collaboration tools",
+ "+5vrts": "Your changes won't be saved.",
+ "+6U8za": "You\u2019ll find more tips and tricks in the \u201cGet started with Dropbox\u201d guide.",
+ "+6YkIT": "Be sure to download everything.",
+ "+6lkxP": "You added {item_name}",
+ "+79s4f": "Trust this device",
+ "+7Lknb": "Successfully shared file request",
+ "+7LzrM": "Loading your folders",
+ "+7Mt/8": "Dropbox makes it easy for me to share important info with family members who live far away.",
+ "+7WmZr": "They\u2019ve already been approved",
+ "+7XcHy": "30 days",
+ "+7dBkS": "By function",
+ "+7fo34": "Sign in to your domain host\u2019s website",
+ "+8+aF7": "See who\u2019s viewed and edited a file, and which meetings it was shared in.",
+ "+8/A3B": "Clear manually added contacts",
+ "+8FgEv": "{count, plural, one {You\u2019re {count} step away from a {bonus_space} bonus} other {You\u2019re {count} steps away from a {bonus_space} bonus}}",
+ "+8WJrK": "Update \u2018{email}\u2019",
+ "+8WUch": "Your purchase is complete and your card has been linked to your Dropbox account",
+ "+8mZrp": "3+ users",
+ "+9OXcm": "Invited by {suggestingUserName}",
+ "+9XYcz": "e.g. 100.001.101-00",
+ "+9eUf/": "Something went wrong, but it\u2019s probably a one-off",
+ "+A8RXM": "{count, plural, one {Your {trademark_business} team must have at least {min_num_users} licence to accommodate all users in your team. Visit the members page to adjust the number of users.} other {Your {trademark_business} team must have at least {min_num_users} licences to accommodate all users in your team. Visit the members page to adjust the number of users.}}",
+ "+AF1Fn": "Enter password",
+ "+AWAIj": "Contact us",
+ "+AWHD4": "Folder members with the link can view",
+ "+AX7ED": "{name} will be able to add and remove managers, and change group information.{name} will also be able to delete the group.",
+ "+Ayjby": "Email unmanaged users",
+ "+BIPVN": "That\u2019s plenty of room for everyone in your family to sync files across all of your devices.",
+ "+BQfGg": "Copy the information below, and paste it into the {record_type} record section.",
+ "+BgGo2": "Failed to copy URL",
+ "+BiebH": "Please select a reason for leaving:",
+ "+Bkowt": "Last step: restart your Mac",
+ "+C1mk4": "You do not have permission to view this location.",
+ "+D26UW": "Change column",
+ "+DHvLW": "From device",
+ "+DTxnQ": "With Paper\u2019s iOS and Android apps, you can jot down ideas, grab a photo or give feedback on work whenever the spirit moves you.",
+ "+Dtv46": "Exit",
+ "+Du3+R": "Create",
+ "+E9wLh": "By proceeding, {family_plan} plan members will be downgraded to a {basic_space_quota} {dropbox_basic} plan.",
+ "+ECsZb": "Cancelled",
+ "+EIVcH": "Accounting of Disclosures.",
+ "+EZZAD": "This only applies within Dropbox.",
+ "+ElFUY": "Large list",
+ "+En75Z": "You can now enjoy lots of benefits, such as accessing both of them from your desktop.",
+ "+EoyVe": "This is the central place to manage members, create team folders, control security, monitor activity and take care of billing.",
+ "+EsI+X": "Anyone with the link can view this file. Downloads disabled.",
+ "+F67aE": "Get enterprise-grade control and visibility tools such as audit logs with file event tracking, SSO and oversight of connected devices",
+ "+FA5/Y": "Confirm new password",
+ "+FVlAv": "Enter emergency backup code",
+ "+Gi+rH": "Spot",
+ "+GqSV/": "Bit rate",
+ "+HMjSg": "We can't find this file any more. Try checking activity or folder history to see what happened.",
+ "+HVGgM": "For security, please enter your password for {email}.",
+ "+HYfWe": "Create a report of shared items, who shared them and more.",
+ "+HsOFj": "Google Docs",
+ "+HvGaa": "Create in Dropbox",
+ "+I73e9": "{count, plural, one {Members of this file with the link can view. Expires in {count} day.} other {Members of this file with the link can view. Expires in {count} days.}}",
+ "+IBZTK": "{count, plural, one {{name} moved {count} item out of {src_folder}} other {{name} moved {count} items out of {src_folder}}}",
+ "+ILmbh": "First name",
+ "+IWfb7": "Get centralised billing and dedicated phone support",
+ "+IgAux": "{count, plural, one {Are you sure you want to delete {item_count} items, including {count} shared folder, from your team member folder?} other {Are you sure you want to delete {item_count} items, including {count} shared folders, from your team member folder?}}",
+ "+IyBMQ": "Illustration of a single person",
+ "+JLAQ1": "See my recommended plan",
+ "+JxbQ8": "Limit who can be added as a member of folders.",
+ "+Jy1/e": "Sign in with a backup code",
+ "+KGOHZ": "Allowed for 30 days",
+ "+KJzGi": "Help with storage space",
+ "+KkCsG": "TB",
+ "+KvZSM": "Cancel",
+ "+L1ENo": "Enable your creative team to work together in real time \u2013 from production plans to creative briefs \u2013 as if you were in the same room.",
+ "+LI5nJ": "Best if your team needs extra security. Passwords will be need to be very strong with at least 8 characters, so they might be hard to remember.",
+ "+Lqk2a": "Start a free {hellosignPlanName} trial{br} to send or request eSignatures",
+ "+M0a0U": "You can\u2019t edit shared folders here. How to sign in as the owner",
+ "+MjNr/": "Step {current} of {total}",
+ "+Msa7x": "First things first",
+ "+MvFC2": "Never get shut out again",
+ "+NeLdn": "Free up space with Smart Sync",
+ "+OG7LA": "Sign up or sign in to your account",
+ "+PrmmG": "Info",
+ "+Q54an": "It can take a while to add everything, but you\u2019ll be able to\n access files from {linked_folder} from Content Builder.",
+ "+QOGgh": "Grow your team by inviting people to your new Dropbox account. You can start using your team space to access and comment on files easily.",
+ "+QiQ+N": "
Sign in to dropbox.com with your admin account.
Click Admin console in the left sidebar.
Click Billing in the left sidebar.
Scroll down and click Cancel plan.
Click the reason why you\u2019re cancelling.
Click Continue with cancellation.
Under Please acknowledge the following, tick all boxes.
Click Complete cancellation.
You will be taken to a web page titled You have successfully cancelled your Dropbox Business account.
To confirm your Dropbox Business cancellation, you can go to the billing page of the admin console at https://www.dropbox.com/team/admin/billing. There will be a notification box at the top that says You are scheduled to cancel Dropbox Business on [date].
",
+ "+R5URR": "Start your {trial_length}-day free trial now, and get {discount_percentage,number,::percent .##}{br} off your subscription!",
+ "+R9RBb": "{count, plural, one {Your plan can\u2019t have more than {count} licence.} other {Your plan can\u2019t have more than {count} licences.}}",
+ "+RseO8": "Send a request including your team name and number of members to:",
+ "+S8ja8": "Say hello to your team\u2019s workspace",
+ "+SWqX/": "Account photo",
+ "+SX5vq": "More information",
+ "+St/6D": "Great! Now install the app.",
+ "+T/qQ/": "More space for your team",
+ "+T5nDR": "Your new total of {amount}{tax} {interval} will be applied if you don\u2019t cancel by {date}.",
+ "+TVY1l": "Exit Vault",
+ "+UG3Vg": "Edit",
+ "+UGNSa": "Size",
+ "+UaWQV": "Email is invalid",
+ "+Ujbpb": "Member removed.",
+ "+VHcSr": "Go with {trademark} instead",
+ "+VWsfP": "Edit \u2018{group_name}\u2019",
+ "+VfIrY": "Get an email response in 24 hours, five days a week",
+ "+W+7b6": "Your Dropbox team requires a very strong password.",
+ "+WMBQW": "Open folder",
+ "+WdUO4": "Account",
+ "+Xv3VX": "Edit DWGs online using the AutoCAD web app.",
+ "+XzGBK": "These settings will apply to all folders in \u201c{folder_name}\u201d. You can change these settings in the admin console.",
+ "+YPQ5/": "We were unable to resolve the thread.",
+ "+YkEG0": "Dropbox gives you secure access to all your files from any device",
+ "+ZBQS4": "The link is off and does not grant additional access to anyone.",
+ "+ZJXxL": "Make owner",
+ "+ZVjRd": "Members cannot sign in using the Dropbox EMM app",
+ "+ZcdcY": "Request another call",
+ "+ZexiA": "3. Choose who needs access in an emergency",
+ "+Zm/l8": "Re-open",
+ "+Zotbx": "Add a Dropbox folder to Content Builder",
+ "+ZowJr": "@mention someone in my team",
+ "+a6RMC": "Couldn\u2019t share doc. Please try again later.",
+ "+aEeM/": "Modify my {trademark_plus_trial}",
+ "+aXkQH": "S",
+ "+ahzmw": "Annotations let you add comments to a specific part of an image, attributions show you who\u2019s added what, and emoji help you strike the right tone. Feedback: now with more fun.",
+ "+bXSlj": "Change plan to {backupPlanName}?",
+ "+cRe6Y": "Creating new folder...",
+ "+cSK4P": "Error sending message",
+ "+cYvo0": "Choose from Dropbox",
+ "+crZQt": "Bear this in mind while accessing government data",
+ "+csK/m": "Members of the file with this link can edit.",
+ "+cxIjV": "You can\u2019t invite these people because they have joined other teams.",
+ "+d7V/q": "Restore an older version of this file",
+ "+dhj1b": "Can\u2019t @mention someone in your member folder.",
+ "+eDHgr": "Access all of your Dropbox files from your desktop without taking up all of your hard drive space.",
+ "+eGcx2": "Arrow pointing right",
+ "+edH+e": "Use app",
+ "+enW1p": "Search by action or app name",
+ "+f5spv": "change permission for users to {label}",
+ "+fGoXc": "{name} won\u2019t have access to the admin console and won\u2019t be able to manage other accounts. Are you sure you want to continue?",
+ "+fOIGM": "Invoice",
+ "+feg+V": "Recently active",
+ "+fgFGr": "Traffic and insights",
+ "+fgc70": "Add people and domains outside your team who members are approved to share with.",
+ "+fv0Q5": "Cancel request",
+ "+gFolJ": "No filters added",
+ "+gXs6g": "Adobe Creative Cloud integration",
+ "+h0Uq6": "Link copied and ready to share",
+ "+hJZUF": "Create Paper doc",
+ "+hl9lA": "Failed to copy link",
+ "+iBBoN": "Here\u2019s what you\u2019ll get:",
+ "+iFY5X": "Send for signature",
+ "+iNJRS": "There was a problem completing this request.",
+ "+j0wlP": "Drop image here",
+ "+jtPQr": "Please select all that apply.",
+ "+k3R3j": "Switch billing period",
+ "+kJxW6": "Use your app to scan the barcode below, or .",
+ "+kZk+n": "Task",
+ "+kaklT": "You\u2019ll get everything in Standard, such as Smart Sync, 120-day version history, centralised billing and remote device wipe \u2013 plus more tools, security and features that you need to help your team reach its full potential",
+ "+kp5nI": "It looks as though the {email} request was dismissed",
+ "+lFU/m": "Linking of both of your accounts on this computer has been disabled by your {team_label} administrator",
+ "+lgTm0": "Smart Sync: save hard drive space",
+ "+lkANp": "If you\u2019re an independent professional or a freelancer, you\u2019ll get everything you need to store and access your files, and share your work in the best light.",
+ "+lpt2d": "This device",
+ "+mJra0": "This may take a few more seconds",
+ "+mR8Gr": "Error messages",
+ "+msE7t": "Customise instant access to a team workspace",
+ "+n5ElF": "About Dropbox Vault",
+ "+n5Hx3": "They\u2019ll no longer have access to the enterprise console. As a support admin, they can still handle some basic tasks for their team only, such as resetting passwords.",
+ "+nKRfb": "Add an email address, name or group",
+ "+naw6j": "Try for free",
+ "+nwihK": "Your team\u2019s move is scheduled for {migration_date}",
+ "+o4g6R": "Get unlimited API access to SIEM, DLP & CASB, Network Security, Identity & Access Management, Enterprise Mobility Management and Legal Hold partners.",
+ "+oASXe": "(only applied to first payment)",
+ "+obnRc": "Save to {destination}",
+ "+ogQrT": "Something went wrong, but it should work if you try again.",
+ "+op+KR": "Verify the HTML file",
+ "+ou8Af": "Folder settings",
+ "+p7Ggb": "Allow",
+ "+pJco5": "Dropbox Vault",
+ "+pTjXN": "Open folder settings",
+ "+pnXuI": "This account\u2019s {plan} will be downgraded to Dropbox Basic on {date}. {billing_summary}",
+ "+pygD0": "This offer expires on {expires_by}.",
+ "+q0Oh6": "Weekly team check-in",
+ "+qQQP+": "Send for signature with Adobe Sign",
+ "+r519k": "Mobile offline folders",
+ "+rIarA": "I\u2019m cancelling because\u2026",
+ "+rn0BX": "Check your email",
+ "+rsEJ/": "Paper docs",
+ "+s1X56": "Can I share a folder with someone who doesn\u2019t have a Dropbox account?",
+ "+s6D7j": "Guest",
+ "+s9RJZ": "Disconnected devices",
+ "+sU/hx": "{count, plural, one {Anyone in your Dropbox team with this link can view the file. Expires in {count} day. Downloads disabled.} other {Anyone in your Dropbox team with this link can view the file. Expires in {count} days. Downloads disabled.}}",
+ "+sfjfL": "Suggested items will be displayed here",
+ "+t/Zhg": "Deselect all",
+ "+tjVdW": "Which course is this for?",
+ "+trcEI": "External link",
+ "+uZbUG": "Dropbox Transfer with password protection and an expiry date",
+ "+uov+c": "Product spec \u2192",
+ "+v9Xj9": "Monthly billing",
+ "+vbakm": "Sandbox, {alt}",
+ "+vwHQY": " about company-managed groups.",
+ "+w0WHR": "Invitee",
+ "+xp7qq": "You can view and download any of the previous versions below.",
+ "+xvnoX": "Modified",
+ "+xwkiv": "There was an issue signing you in.",
+ "+xypvs": "Create a list for this board in Trello.",
+ "+y351D": "Tomorrow",
+ "+yGlTj": "{folder_name} won\u2019t be shared privately any more.\n Everyone in {team_name} will have access to this folder.",
+ "+ylHDD": "Support admin",
+ "+zMPbA": "We\u2019ll send another email and notification to {email} and the other admins in this team.",
+ "+zS10S": "Successfully unlinked device.",
+ "+zXu0j": "Spreadsheets",
+ "+zaO1T": "New files added to this folder will be saved as PDFs. Existing files remain unchanged.",
+ "+zi30X": "Unlimited devices",
+ "/+PjIb": "In the top right-hand corner, click {more_vertical} {chevron_right} Settings.",
+ "/+rdMp": "Users who had a Dropbox password will get this email telling them to use their Dropbox password in future. Users without a Dropbox password will be alerted with this email to create a password before they can sign in.",
+ "///fTC": "{count, plural, one {{count} member} other {{count} members}}",
+ "//AqpZ": "Apple App Store",
+ "//IGGo": "There was an error uploading your logo.",
+ "/0++y2": "to {location}",
+ "/0Bej7": "We sent a code to your phone number ending in **{phone_last_two}.",
+ "/0Zkaf": "Something went wrong. Please try again.",
+ "/0mGRc": "Subscribe to {PLUS}",
+ "/0nFW4": "Team ID copied to clipboard",
+ "/0odKW": "Link for editing",
+ "/0ynVE": "Any emails received after 1 August with the label(s) selected will be synced to Dropbox Tasks.",
+ "/0zpUu": "Switch accounts",
+ "/1OkHz": "Your free trial period won\u2019t be affected if you add your billing info now. You won\u2019t be charged until after your free trial ends on {trial_end_date}, and your plan will transition without interruption.",
+ "/1cHLH": "Control who can edit the file with this link.",
+ "/1fL4b": "Close",
+ "/1hVjo": "You will become the owner of all shared Paper docs owned by this member",
+ "/1juKK": "Upgrade plan",
+ "/2KhZn": "Add exception",
+ "/37Wb8": "2",
+ "/3FrEg": "Delete",
+ "/3HS66": "Changes are scheduled for {date}.",
+ "/3wd5G": "Add a trusted team",
+ "/4Vuk/": "Navigation disabled",
+ "/4tX/Q": "For billing details, please check your iTunes receipt.",
+ "/5/9mm": "Team admins",
+ "/5Xr9S": "Unable to link to Google. Please refresh the page to try again.",
+ "/5n1tf": "Start date",
+ "/5uaYl": "A screen capture demonstrating the page layout customisation capabilities within the Showcase feature of Dropbox. The user has a grid of seven file previews, then drags one file preview down to update the layout. Then the user changes the file title and adds a caption.",
+ "/5zkWm": "Before you can update or move your files, you need more space.",
+ "/6BY5h": "Protect files with enterprise-grade security.",
+ "/6ordy": "Add",
+ "/702bd": "Click 'Save' below to turn on classification. We\u2019ll start scanning, labelling and sending alerts. The first scan can take up to a week, but it won\u2019t affect performance. We\u2019ll email you when the scan is complete.",
+ "/71Iak": "Admin privileges revoked.",
+ "/7A7ii": "M",
+ "/7OiQL": "Location",
+ "/7cuH7": "No shared meetings coming up",
+ "/7hLwW": "Try for free",
+ "/7qjIg": "Dropbox is installing...",
+ "/7t8Pg": "{filename} will be gone forever for everyone, including anyone still using the folder. Permanently deleting this folder won\u2019t free up space.",
+ "/83u+2": "That comment has been deleted.",
+ "/8b+8B": "Request removed.",
+ "/8h7s8": "Dimensions",
+ "/8w1y7": "24 hours",
+ "/8wKhI": "If you\u2019d like, you can also set a nickname for this security key, so that it\u2019s easier to tell apart from any other key you have.",
+ "/92TKa": "Manage your team with confidence",
+ "/9wYHW": "Dropbox needs to verify your email address {email} to share folders. It\u2019s as simple as clicking the link in the verification email we send you.",
+ "/AIl7e": "New recruit onboarding \u2192",
+ "/AXCzs": "Try again",
+ "/Ae1Vt": "Forgotten PIN?",
+ "/AeFJk": "No activity for the selected week",
+ "/AoxyE": "Do more than store",
+ "/B8AOB": "Click 'Open with' and select HelloSign to open PDFs.",
+ "/BLIS0": "Showcase name",
+ "/Bh4a6": "This folder has been successfully added to your Dropbox.",
+ "/C6Zj0": "This Dropbox HIPAA Business Associate Addendum (the \u201cHIPAA BAA\u201d) is entered into as of the date specified above (\u201cEffective Date\u201d) between the Dropbox entity identified above (\u201cDropbox\u201d) and the customer identified above (\u201cCustomer\u201d). This HIPAA BAA amends the agreement governing your access to the Services (the \u201cAgreement\u201d) between the parties for the purpose of implementing the requirements of HIPAA to support the parties\u2019 HIPAA compliance requirements. Together with the Agreement, this HIPAA BAA will govern each party\u2019s respective obligations regarding Protected Health Information.",
+ "/CMclr": "{amount_over_size_limit} over {size_limit} limit",
+ "/CRuU4": "External sharing can\u2019t be turned on because of your Dropbox sharing settings.",
+ "/CgENe": "Attach files and folders to Trello cards",
+ "/D+mkV": "Anyone with the link can view this folder",
+ "/DGYJM": "Loading...",
+ "/DOPh6": "Features",
+ "/DTxnD": "Reset filters",
+ "/DXKQA": "Restarted access to Dropbox files from Content Builder.",
+ "/DXio5": "Are you sure you want to give admin permission to {display_name}? All users with admin permission will be able to upgrade this team to {trademark_business}.",
+ "/DlLCl": "from {app_name}",
+ "/E1hnK": "Sharing with loved ones has never been easier. All plan members can use the Family Room folder for shared content such as photos, videos and important documents while maintaining their own private accounts. ",
+ "/EeW7B": "Is first device",
+ "/Ev0Vq": "{name} changed the file settings",
+ "/FqzQ6": "or use personal account",
+ "/GAdqL": "{count, plural, one {With your current selection, your plan will have {count} licence starting on {next_billing}. Your new {schedule} total will be {total_amount_with_tax_rate_str}.} other {With your current selection, your plan will have {count} licences starting on {next_billing}. Your new {schedule} total will be {total_amount_with_tax_rate_str}.}}",
+ "/GDCqQ": "{team_name} will get one licence back",
+ "/GKV07": "We\u2019ve sent an email to {user_email}. Click the button in the email to set up your Paper team.",
+ "/GekxI": "There was a problem completing this request.",
+ "/Ghqtg": "Can\u2019t upload file types such as .paper, .web and .gdoc because they\u2019re web based.",
+ "/GxC4Y": "Billing issues",
+ "/H1e8h": "A non-negative number",
+ "/HAEcu": "Delete photo",
+ "/HB2m5": "{numUsersMin, plural, one {{numUsersMin,number}+ user} other {{numUsersMin,number}+ users}}",
+ "/HSBkG": "Verification method",
+ "/HaO4u": "Yearly billing",
+ "/Hx724": "More suggestions",
+ "/IHqYp": "For personal",
+ "/IIBtR": "This account is a member of the {team_name} Dropbox account.",
+ "/IY+3s": "Add photos or videos to your Dropbox and they\u2019ll appear here.",
+ "/IbIZj": "Surname",
+ "/Ijta3": "You shared this file with {slack_recipient_name}",
+ "/JYexz": "Position",
+ "/JdV4I": "Work with any type of content \u2013 such as Google Docs, Sheets and Slides, or Microsoft Office files \u2013 directly from Dropbox.",
+ "/Jj95M": "Smart Sync, stress-free sharing, offline folders on mobile.",
+ "/JltQD": "When you invite people to a shared folder, you get to decide who has view-only or editing permissions for the files in the folder. You can also set a password and expiry date so the link becomes inactive if you only want to share it for a little while.",
+ "/Jm0DN": "Resubscribe",
+ "/JpyiR": "Presentation",
+ "/KUP4A": "{vacuum_days}-day account recovery",
+ "/Ke+Ja": "{count, plural, one {Anyone with this link and password can view the file. Expires in {count} day. Downloads disabled.} other {Anyone with this link and password can view the file. Expires in {count} days. Downloads disabled.}}",
+ "/KqWDm": "Invite members to your team",
+ "/L5+/I": "Add emails",
+ "/L9p47": "You\u2019ve given these apps permission to access your Dropbox files on your behalf.",
+ "/LFPia": "Select Dropbox {plan_name}",
+ "/LISaT": "You edited {single_item_name} in {folder_path}",
+ "/LK4Ck": "Please include at least one URL.",
+ "/LLEd4": "Invited",
+ "/LUTAN": "This transfer is over the {file_size_limit} limit \u2013 remove some items or try {premium_product_name} to send up to {premium_file_size_limit}.",
+ "/LlzCR": "Undo",
+ "/LzQM9": "Manage security keys",
+ "/M5Btv": "Undoing copy...",
+ "/MXP6f": "Consolidate candidate data, manage interview schedules and co-edit interview questions.",
+ "/Mm2y4": "Take the \u201cmeh\u201c out of meetings",
+ "/NGfUc": "We\u2019re going to move:",
+ "/NKUty": "Dropbox {plan}",
+ "/NTBT6": "As much space as you need with sophisticated admin, audit and integration features",
+ "/OBuIO": "Comments",
+ "/Odjrr": "Invitation not available",
+ "/P1rvT": "Don\u2019t use it enough",
+ "/P347M": "How to fix issues with camera uploads",
+ "/P8G6Y": "{plan_size} of space",
+ "/PPGtg": "Your account administrator has removed access to this feature.",
+ "/PiZdD": "We\u2019ve finished recovering {infected_user_familiar_name}\u2019s\n files",
+ "/QEApB": "Unable to unfollow \"{folderName}\"",
+ "/QQQpk": "Vault owner",
+ "/R8O5/": "Add to Space",
+ "/RQDBN": "Optional",
+ "/S3Mdc": "Create file usage report",
+ "/SPtbM": "See and manage the apps connected to your account",
+ "/T0AVq": "Don\u2019t capture any users.",
+ "/Tpp4c": "You do not have permission to share this item.",
+ "/TynTR": "Members of this file with the link can view. Downloads disabled.",
+ "/TypJZ": "View all your file activity in one place",
+ "/UFoei": "+ Add more",
+ "/VHOb1": "Unable to remove request.",
+ "/VOrjR": "You\u2019re about to unlink your {device_category}. It will immediately stop syncing\n and you won\u2019t be able to access files on this device without re-linking it. {password_msg}",
+ "/W5jyu": "Restored {display_name}",
+ "/WFCIJ": "Edit invoice details",
+ "/WGG29": "Your team\u2019s plan usage details are below. If you have any questions, you can contact {reseller_name} at {email} or on {phone}.",
+ "/WkjMM": "Collaborate on group projects in a single doc. Co-edit in real time, give feedback with comments, and stay on top of deadlines with timelines and to-dos.",
+ "/Wuc+R": "Name",
+ "/Ww+v3": "Install",
+ "/Ww02p": "{price} per month. Includes GST",
+ "/XZGug": "This email address is already in use \u2013 please try another one",
+ "/XnOPY": "Open your homepage\u2019s HTML file",
+ "/Xs7Nm": "The account owner can add payment information now so that this subscription will be renewed automatically when the keys expire.",
+ "/XsVXX": "Chat with us",
+ "/Y+R+T": "{count, plural, one {View} other {Views}}",
+ "/ZD5W/": "Product roadmap",
+ "/ZTxri": "What\u2019s {trademark_plus}?",
+ "/Zd9Zb": "Your current plan",
+ "/ZnSPj": "Updated. You can double-check in the preview. ",
+ "/a0r6m": "Check your email for a download link.",
+ "/a2n+f": "Couldn't copy the link, but we think it was a one-off. Try copying it again.{br}{copiedUrlDisplay}",
+ "/a4H7F": "They\u2019ll get instant access to files",
+ "/awK9V": "Licences ({licenses})",
+ "/bTRGP": "This person is already on another team.",
+ "/bdBGh": "To join your team on Dropbox, create an account or .",
+ "/by54I": "Status",
+ "/c7TiD": "{count, plural, one {{count,number} contact} other {{count,number} contacts}}",
+ "/d09hp": "We\u2019re committed to helping customers who are subject to HIPAA/HI TECH regulations safeguard protected health information (PHI).",
+ "/d7ogs": "This will become a company-managed group, and admins will be responsible for adding and removing members.",
+ "/dCYwE": "A current email address makes it easy to get back into your account if you ever forget your password.",
+ "/dknSw": "Failed to revert changes.",
+ "/dvzu+": "Settings",
+ "/eW+X1": "Size",
+ "/fH0Wt": "Member settings",
+ "/gPVV1": "Notification sent. Check your device.",
+ "/gPhyo": "New user grace period:",
+ "/gXENF": "Archived",
+ "/gg1Cb": "Get a Dropbox file to attach here.",
+ "/giO3w": "User selecting view-only permission for a file.",
+ "/goJH9": "Products",
+ "/hChVv": "Allow",
+ "/i1m6q": "Owner",
+ "/i5ETN": "Dropbox Spaces brings your files and cloud content together, so that your PowerPoints can live next to your Google Docs, Trello boards and whatever tools your team wants to use.",
+ "/iYTXX": "Success! Family plan created.",
+ "/iexDp": "This lets members create and manage groups.",
+ "/ifa0B": "Upgrade plan",
+ "/ivxG2": "You don\u2019t have permission to create a link to this folder",
+ "/izp8x": "Your team has single sign-on. Sign in with your Dropbox password or ask your Dropbox admin for help.",
+ "/jZqD/": "Data governance",
+ "/jhkvD": "{price}/{duration}{line_break}({tax_string})",
+ "/kMUu5": "Report submitted.",
+ "/kvUTT": "App key",
+ "/kxPkk": "HelloSign (opens a modal dialogue to send this file to others to get signatures)",
+ "/l/+Lz": "Please let us know why you\u2019re cancelling.",
+ "/lGQC0": "Modified {ago}",
+ "/lcffS": "Member \u2022 {team_name}",
+ "/lwdle": "Illustration of a file being moved to a computer",
+ "/m87Qb": "Type",
+ "/mIp6I": "Sales",
+ "/mzu4K": "Something went wrong. Don\u2019t worry, your files are still safe and the Dropboxers have been notified. Head to",
+ "/n1NL4": "Unlink Slack",
+ "/n7sMZ": "This is a team folder \u2013 a way to help everyone work together. You can use it to share files with groups of people in your company.",
+ "/nEBNF": "from {display_name}",
+ "/nFZR2": "Create link",
+ "/nHstd": "Preference updated.",
+ "/nsbvt": "Live chat box",
+ "/oW7AW": "Don\u2019t know your password?",
+ "/orPeq": "deleted code",
+ "/oxGSo": "Set {first_name}\u2019s space limit",
+ "/p3g3M": "Transaction ID (optional)",
+ "/p3spu": "Folder successfully removed from your Dropbox.",
+ "/pFxox": "Effortless backup is here",
+ "/pcMyV": "Dissatisfied",
+ "/pyeDm": "Comment thread",
+ "/qDIN4": "Review linked apps",
+ "/qcXji": "New folder\u2026",
+ "/rCjvi": "Members page",
+ "/rSd+J": "Discount ({discount,number,::percent})",
+ "/rtVrh": "You\u2019ll no longer be able to search your Google Directory when inviting new team members.",
+ "/s1Hqq": "",
+ "/sKrO7": "upload to the folder \u2018{folder}\u2019 in your personal Dropbox",
+ "/sLt2T": "Did you mean: {query_string}",
+ "/sN5qV": "Suspended",
+ "/sRvdA": "Folder updates in progress. Please try again later.",
+ "/sfVvH": "Change access",
+ "/slhUC": "Ask to join",
+ "/sqCCc": "Which members should be able to use as many devices as they like to connect to Dropbox?",
+ "/sv7zG": "Recovery tokens",
+ "/t9NTF": "{value} regularly works with them",
+ "/tBniB": "These Dropbox users are not in your team, but they created a personal account with a domain you verified.",
+ "/tHQbR": "You\u2019re switching to monthly billing",
+ "/tcn5z": "Charged now: {total_price}FREE",
+ "/u+xcS": "Show me my stuff",
+ "/uOUwu": "We encountered an error trying to fetch teams for you to join. Redirecting to the next page...",
+ "/uqEAv": "Dropbox Passwords",
+ "/usWkZ": "I agree to the Dropbox Terms",
+ "/uvN/C": "Good passwords are hard to guess. Use uncommon words or inside jokes, non-standard uPPercasing, creative spelllling, and non-obvious numbers and symbols",
+ "/uwPv1": "You have selected Dropbox {selected_plan} for 2018. To make a change to your account, please go to your team admin console.",
+ "/w8JtZ": "Who\u2019s using Dropbox?",
+ "/wl9ZM": "Install Dropbox",
+ "/xb44b": "{bit_rate} kb/s",
+ "/xqdk6": "Try again",
+ "/yBlXH": "Can comment",
+ "/yM0kz": "Licences",
+ "/ya1jr": "Move all files to team account",
+ "/yoXYw": "Add attachments from Dropbox",
+ "/yqHaA": "You and your team can process digital documents, simplify workflows and collaborate on large projects with a complete PDF software suite.",
+ "/z3emX": "{count, plural, one {{filename} and {count} more item are shared with you, but you\u2019re not the owner. They\u2019ll be removed from your account, but not deleted for anyone else. Removing your access won\u2019t free up space.} other {{filename} and {count} more items are shared with you, but you\u2019re not the owner. They\u2019ll be removed from your account, but not deleted for anyone else. Removing your access won\u2019t free up space.}}",
+ "/zMGpe": "No expiry date",
+ "/zPOCo": "This version is {lifecycle}",
+ "/zxgOv": "",
+ "0+1lU5": "PDF details",
+ "0+HfP4": "Select folders",
+ "0+tmER": "The file name contains invalid characters",
+ "0+yoJN": "Email us",
+ "0/+N6U": "Your password has expired. Please create a new password here.",
+ "0/9rfx": "No results found image",
+ "0/Sxbu": "Previous {trademark_business}",
+ "0/TLiY": "Rename",
+ "0/mzE/": "Individual Dropbox account for each user",
+ "00FN2D": "Try resetting all filters",
+ "01NlbA": "(please fill in the reason below)",
+ "01RCur": "Who does your team mainly work with?",
+ "01SzRQ": "{count, plural, one {Anyone in the {trademark_business} team with this link and password can edit the file. Expires in {count} day. Downloads disabled.} other {Anyone in the {trademark_business} team with this link and password can edit the file. Expires in {count} days. Downloads disabled.}}",
+ "02OmLI": "Editing external folders",
+ "02RFb/": "Start organising things for your team. Create folders just for certain people, or for your whole team. The default setting gives everybody access, but you can change that with each folder.",
+ "02Ri+P": "To switch between accounts, start by clicking the blue dot above.",
+ "03+wm0": "viewed {timeAgo}",
+ "030b0q": "Thank you for reporting this ticket",
+ "03FNiv": "Apply",
+ "03SKJc": "For more info on what Dropbox does not allow, see our \nAcceptable Use Policy",
+ "03fMgc": "Create",
+ "03hVGB": "Cancel your plan",
+ "03l73G": "Resolved",
+ "03tbWi": "If you remove {name}, they won\u2019t be able to see future changes to this shared folder.",
+ "04+VFD": "How is Smart Sync different to Selective Sync?",
+ "04JBDX": "This list does not have any cards.",
+ "04g1Dq": "Get Smart Sync",
+ "04v979": "Corrupt file. Couldn't extract files.",
+ "053fd4": "Free until {ts,time,:hhmm}",
+ "05GXvt": "Select which files to make online only",
+ "05xjxH": "View in admin console",
+ "060vl3": "Comment anywhere",
+ "06UTVR": "More",
+ "06VnKH": "Allow admins to create authoritative groups that users cannot modify.",
+ "06c6CL": "A user previews text, a snippet of code, a piece of audio and a video in a {dropbox_paper} document.",
+ "06cQ++": "This is probably your company\u2019s IT team or help desk",
+ "07Thhg": "The Adobe Sign Dropbox extension manages the entire digital signature process directly from a document or form in Dropbox. Powered by Adobe Document Cloud. New users get 5 free transactions every 30 days.",
+ "08QqnO": "Is {email} your current email address?",
+ "08pXPf": "Must be under 140 characters",
+ "08qqVO": "IT template",
+ "091A+D": "Find it with filters",
+ "094cC0": "Here are the people in {team_name} that you\u2019ve shared with before:",
+ "09Mmd1": "Remove from exceptions",
+ "09No5S": "When users in {domain} and its subdomains are invited",
+ "09OS+5": "This change may affect people who had edit access in the past.",
+ "09dSLK": "Free up your hard drive space automatically",
+ "09tqAZ": "You\u2019ll need to click \u201cAdd\u201d when your browser asks for permission in the next step.",
+ "0A9340": "Top left",
+ "0AMMBX": "You entered an invalid name or email address.",
+ "0AbCS6": "View actual size",
+ "0B2QA4": "Photo",
+ "0BKjy6": "Email hidden by another app. Try inviting them using a different email.",
+ "0BMZLQ": "Upload files",
+ "0BRgfC": "Domain contact",
+ "0BUrj7": "Star",
+ "0BbkU+": "Transaction details",
+ "0Bdtgw": "Try for free",
+ "0Biwgu": "Technology",
+ "0BjR72": "Dropbox Rewind",
+ "0D00Y7": "Your {current_legacy_plan} plan currently has access to Advanced features at no extra charge. If you downgrade to Standard, this cannot be undone. You will be able to upgrade to Advanced with the new pricing, but you won't be able to return to your {current_legacy_plan} plan.",
+ "0D0tb3": "Request approved.",
+ "0DESii": "Change background",
+ "0DH5K/": "Up to 10 GB/file",
+ "0DHM4Y": "Unlock the full admin console",
+ "0DN9zf": "Work from anywhere",
+ "0E53wd": "Team admin controls",
+ "0EC+2K": "Dropbox needs to verify your email address {email} before you can invite friends. Check your inbox and click the link in the email to verify your address. If you can\u2019t find it, check your spam folder.",
+ "0EfGlJ": "Type of file",
+ "0EwJr5": "Numbers to watch",
+ "0FFwca": "Link",
+ "0FUoYO": "Send",
+ "0FjBuU": "Work better together with sharing and feedback tools.",
+ "0Fq1H6": "Channels",
+ "0FrMSv": "Set the default for apps not listed in App Centre. Add apps as exceptions to manage them separately.",
+ "0FtGwy": "View on App Centre",
+ "0FvFw6": "Marked as resolved",
+ "0G1Llb": "Unable to follow \"{folderName}\"",
+ "0G7A6K": "View source website",
+ "0GIkLa": "See more",
+ "0GLuLd": "(view details)",
+ "0GW3rS": "Document watermarking",
+ "0HHXgt": "Turn off Dropbox Paper for your team?",
+ "0ICouY": "Close",
+ "0JBYLy": "Once you\u2019ve created a hold, we\u2019ll save a copy of every change members make to files, even if the file has been permanently deleted.",
+ "0JQeaN": "Other",
+ "0Jk4U/": "Recipient\u2019s name or email address",
+ "0K5Rmt": "You haven\u2019t linked any devices to your personal Dropbox account. Install Dropbox to sync your devices.",
+ "0KHQ0l": "Dropbox window with cursor over open with button, showing apps in the menu.",
+ "0Kc6QN": "Contact admin",
+ "0L/bC9": "Manage your team easily from the admin console.",
+ "0Lmb+Y": "Changing access for {current_folder}\u2026",
+ "0MAQ4t": "Back",
+ "0MEjJx": "To",
+ "0Mt769": "Please enter a valid address.",
+ "0N4KvM": "Oops, something went wrong.",
+ "0NA7+K": "Close",
+ "0Nkg/N": "Team Folders cannot be added to the clipboard",
+ "0O/etV": "Cancel {trademark_business}",
+ "0O/gss": "Alerts",
+ "0O37bo": "Sales",
+ "0OPuIy": "{count, plural, one {{count} second left} other {{count} seconds left}}",
+ "0OYZsq": "per month",
+ "0OctaV": "Failed to cancel plan.",
+ "0OfEeR": "{count, plural, one {You now have {count} licence on your free trial plan. You\u2019re not being charged at the moment. If you purchase {trademark_business}, your {schedule} total will be {total_amount_with_tax_rate_str}.} other {You now have {count} licences on your free trial plan. You\u2019re not being charged at the moment. If you purchase {trademark_business}, your {schedule} total will be {total_amount_with_tax_rate_str}.}}",
+ "0OkLOs": "File and folder info such as type, size and path",
+ "0P+Y1J": "Admin permissions removed from {display_name}",
+ "0Pf729": "Things to try",
+ "0Q4QAv": "Auto, did not fire",
+ "0Q9HtX": "Only people who can edit this item can restore it.",
+ "0QCr8R": "{count, plural, one {{dropbox_full_message}. To get more space, ask your Dropbox admin ({admin_email}).} other {{dropbox_full_message}. To get more space, ask your Dropbox admins ({admin_email} and {num_other_admins} others).}}",
+ "0QYcPU": "Less than 1 minute left",
+ "0QrCDg": "Why {dropbox_plan}?",
+ "0QtuCD": "Choose a file format\u2026",
+ "0RKtV2": "Processing\u2026",
+ "0RUnlD": "Oversee and manage your admin console",
+ "0Rr7nB": "Add your billing information so you don\u2019t have to later. You\u2019ll still get the remaining days in your trial for free, and you won\u2019t be charged until {trial_end_date}, when your free trial ends.",
+ "0SFVaR": "Stuff to do:",
+ "0SgQE0": "Priority email support",
+ "0Sqcdg": "Add",
+ "0SuEFr": "Go with Dropbox Basic instead",
+ "0T8lDf": "Share stuff to streamline your work and get more done together.",
+ "0Tm3JK": "Enjoying your free trial?",
+ "0Tsaqm": "Add your name",
+ "0Tvaws": "If you\u2019ve already reached your quota, this means that:",
+ "0UBmAV": "We\u2019re having some trouble at the moment. Please try again later or contact sales.",
+ "0UM2rq": "Duplicate the version",
+ "0UNJMJ": "Add photo",
+ "0UQLiq": "Read more about alpha and beta features from Dropbox",
+ "0VN65R": "People who view this file may be able to see when you last opened it. This info may be displayed for other Dropbox files you open.",
+ "0VVpqj": "{Calendar} or before",
+ "0Vb1hf": "It takes a village to publish the world\u2019s most iconic travel guides. That\u2019s why Lonely Planet has a worldwide team of writers, editors and designers. It\u2019s the ultimate distributed workforce. And it uses {trademark_business} to share stories from 350,000 destinations.",
+ "0W+uQd": "{space} of shared team space",
+ "0W2SPV": "Spacing between lines",
+ "0W8WmQ": "They can also share with{br}your secondary email",
+ "0WG6Xp": "File renamed.",
+ "0WboRK": "Friday",
+ "0X+Fnj": "Once a day",
+ "0X0uGq": "There was a problem with your request. Please try again later.",
+ "0X3DhD": "Branding",
+ "0XBE+l": "Please enter your payment information.",
+ "0XVfsw": "Close modal",
+ "0XWNEG": "{count, plural, one {You\u2019re currently scheduled to have {count} licence removed on {next_billing}. The current selection will bring your total number of licences back to {new_license_total}, so there will be no changes to your billing plan.} other {You\u2019re currently scheduled to have {count} licences removed on {next_billing}. The current selection will bring your total number of licences back to {new_license_total}, so there will be no changes to your billing plan.}}",
+ "0XXDGq": "Can I make online-only files available when I\u2019m offline?",
+ "0XnFk0": "Remove",
+ "0Xvvuv": "People with the password can view until {date}",
+ "0YMaU+": "People your team works with",
+ "0YRjqy": "Download \u25be",
+ "0Yfk/+": "Finance",
+ "0Z34Zp": "Dropbox will make available to the Customer the PHI via the Services so the Customer can fulfil its obligation to give individuals their rights of access and amendment in accordance with the requirements under HIPAA. The Customer is responsible for managing its use of the Services to appropriately respond to these individual requests.",
+ "0ZcoHO": "Watermark your PDFs and photos",
+ "0ZlXV5": "Applicability.",
+ "0a6hoM": "Pending requests",
+ "0aE5Ia": "Add any email address that ends in @{domain}",
+ "0aK7wA": "Can view",
+ "0aZzBa": "Choose the right Dropbox for you",
+ "0bfcmS": "Extend the functionality of your Dropbox plan with add-ons",
+ "0bkx9E": "{count, plural, one {Unpinned {count} item.} other {Unpinned {count} items.}}",
+ "0bpB4G": "Other options:",
+ "0c3OLo": "Do any of these help with restoring and deleting files?",
+ "0cCdrv": "Your team folder is available in Content Builder",
+ "0ccuXT": "Your request is invalid or has expired. Please try again or visit our Help Centre article.",
+ "0dRQyx": "On by default",
+ "0dbiex": "Something went wrong. Please try again later.",
+ "0dfd/h": "Not enough licences",
+ "0e5Pxx": "Protect work with watermarking",
+ "0eCb/f": "{count, plural, one {You now have {count} licence on your free trial plan. You\u2019re not being charged at the moment. If you purchase {trademark_business}, your {schedule} total will be {total_amount_with_tax_rate_str}.} other {You now have {count} licences on your free trial plan. You\u2019re not being charged at the moment. If you purchase {trademark_business}, your {schedule} total will be {total_amount_with_tax_rate_str}.}}",
+ "0eDgXK": "Your Dropbox is full",
+ "0ehxlh": "Upgrade now",
+ "0er2Ve": "This folder can only be shared as a link because it contains a shared folder.",
+ "0exnBW": "Reschedule",
+ "0fS0+L": "To",
+ "0fk6SV": "Vault",
+ "0funlH": "Let admins set syncing options on a per-folder basis. How team Selective Sync works",
+ "0fyg9t": "We couldn\u2019t reach that email address. Please check the spelling and try again.",
+ "0gOZQI": "This user has already been invited to join your organisation",
+ "0gZYzZ": "Your {label} Dropbox ({need_gigs} GB) is too large to fit on this computer ({free_gigs} GB available)",
+ "0gkZI3": "Send a reminder",
+ "0gnuWd": "Make 'online only'",
+ "0gsuiY": "Adding another file could fill up your account. Make sure you\u2019ll be able to sync or use your files when you need them.",
+ "0h+Ceh": "{count, plural, one {Dropbox couldn't delete {count} file from the computer {host_name}. You can download the name of this file and the reason why it couldn't be deleted.} other {Dropbox couldn't delete {count} files from the computer {host_name}. You can download the names of these files and the reasons why they couldn't be deleted.}}",
+ "0hbS1D": "Buy more licences",
+ "0hnGgQ": "Location",
+ "0hntVX": "({size_in_megabytes} MB)",
+ "0i2mdb": "Thank you for your feedback.",
+ "0i5fHf": "Collect favourite recipes \u2013 alone or with a group. Create a shared place for inspiration and cooking notes.",
+ "0ic7p5": "You can still find Dropbox Passwords in the app store or your Dropbox settings if you change your mind.",
+ "0iiZ5O": "You\u2019ll lose the {trial_days_left} days left in your free trial",
+ "0jP5B/": "You\u2019re in trial mode.",
+ "0jZ0EW": "Start your {trial_length}-day free trial",
+ "0jndXy": "{filename} will be gone forever and you won\u2019t be able to undo this action. Please bear in mind that permanently deleting this won\u2019t free up space. Learn more",
+ "0k43gE": "{count, plural, one {{count} password} other {{count} passwords}}",
+ "0kb0q8": "You have the maximum number of holds. Release a hold to create more.",
+ "0kdVBN": "Project management",
+ "0l69MV": "or drag stuff here",
+ "0lCFx+": "People outside {team_name}",
+ "0lacrv": "Didn\u2019t download",
+ "0ldqAt": "Start new files as 'online only'",
+ "0ln8xM": "Free {duration}-day trial",
+ "0m+fhS": "We were unable to retrieve all of your shared files",
+ "0mhWVd": "Download template",
+ "0nDqnr": "invitations left",
+ "0ntjqF": "Error occurred sending reminder. Please try again.",
+ "0oEiHx": "Off",
+ "0oHBXP": "Failed to unlink client",
+ "0oOsfb": "Open Dropbox for Desktop",
+ "0oTp7+": "Invite members",
+ "0oW8od": "Add to federation illustration",
+ "0oXGhf": "Stormcrow var",
+ "0oaVVe": "The percentage of members in your team out of the licences you purchased",
+ "0oxqa1": "Upload by {day}.",
+ "0pIb4L": "Cancel",
+ "0pnG7e": "Seamlessly plan and coordinate",
+ "0qKVIF": "Paper desktop app",
+ "0qKpL+": "Request files from anyone \u2013 whether they have a Dropbox account or not.",
+ "0qPam6": "OK",
+ "0rYKaW": "Excel workbook",
+ "0s/Y6+": "New Dropbox desktop experience: Windows File Explorer/macOS Finder, new desktop app and Dropbox in Windows system tray/macOS menu bar.",
+ "0sJOEd": "Within a few minutes",
+ "0sfjFG": "Keep {trademark_business} and return to account",
+ "0tQPtN": "Add to project",
+ "0uAyRO": "180-day file recovery",
+ "0uP+vN": "Back",
+ "0uTefj": "Laptop with Dropbox",
+ "0ucYPI": "Easily access and share your work from any computer, mobile device or web browser.",
+ "0uq+BA": "Images",
+ "0vFUP0": "Teams:",
+ "0vZjXC": "Please reload the page to keep working.",
+ "0vxMta": "Before continuing, join your team on Dropbox",
+ "0wIJlM": "{value, plural, one {{value,number} week} other {{value,number} weeks}}",
+ "0wcBKy": "New users will join the team once they accept your invitation",
+ "0x7be4": "Monthly",
+ "0xK/U6": "Current plan",
+ "0xQrtT": "Convert {filename} to make edits",
+ "0xWqcs": "Present your work",
+ "0xWrNT": "Error message (optional)",
+ "0xbKsx": "Billing, payments and subscription changes",
+ "0y269U": "Help members with limited tasks, including password resets",
+ "0zEFlX": "Please confirm your new password",
+ "0zm/8C": "Failed to create invitation link.",
+ "0zsyCM": "Do you have any discounts for non-profits or educational institutions?",
+ "0ztBMB": "About",
+ "0zw1l2": "You\u2019re cancelling your EVH changes. Your Dropbox {plan} plan will be renewed on {date} and you will be billed {schedule}.",
+ "1+fVJa": "{count, plural, one {You can stay signed in on one device.} other {You can stay signed in on up to {count} devices.}}",
+ "1/F8qd": "Ask Jessica about retouching issues",
+ "10+RMZ": "\u2318 + z",
+ "10Ms2o": "Postcode",
+ "10PpMM": "Feature not included",
+ "10m4e2": "Confirm you want to disable",
+ "11DRm6": "{member_name} can still access this file",
+ "11P/4a": "Manage the {team_name} Dropbox",
+ "12+9PT": "Let me know",
+ "12W6xJ": "
Any file type that can be previewed in Dropbox can also be previewed in a showcase.
\n
Video previews won\u2019t play directly on the showcase page \u2013 they\u2019ll appear as a still image instead. However, if you click this image, a lightbox will open where the video preview can be played.
\n See a list of the file types that can be previewed in Dropbox.",
+ "12aBRc": "Linked apps reviewed",
+ "13ARWl": "{filename} is in read-only mode. Convert it if you\u2019d like to make edits.",
+ "13SgwL": "You don't have access",
+ "13cxOh": "Members can enable or disable two-step verification if they like.",
+ "142JRz": "For your own security, you\u2019ll need to update to a newer, more secure browser in order to access this page.",
+ "14X21j": "You shared {single_item_name} in {folder_path}",
+ "15/NF/": "{trade_mark} {plan_title}",
+ "15C0At": "Frequently asked questions",
+ "16PnxZ": "Manage members in this team, including adding and removing them.",
+ "16jUYw": "{count, plural, one {We found {count} search result} other {We found {count} search results}}",
+ "176G5m": "Resend verification email",
+ "17E7x9": "Your admin has disabled Google sign-in. Use your email address and password to sign in.",
+ "17KS76": "Error sending download link. Please try again later.",
+ "17ZjHn": "Get help",
+ "18W/8V": "How do I change the owner of a shared folder?",
+ "197PGq": "Filter",
+ "19Hg2E": "Your free trial of {dropbox_trial_plan_name} will end on {trial_end_date}. If you don\u2019t cancel your free trial by then, you will be billed for your {dropbox_trial_plan_name} subscription.",
+ "19uCw8": "Requesting\u2026",
+ "19zpyC": "{total_count,number} moved to {target_team_name}",
+ "1AfV4S": "{dropbox_enterprise} is a productivity platform equipped with all of the core capabilities of {trademark_business}, plus advanced security and control, enhanced customer support, and customisation to meet your large organisation\u2019s needs.",
+ "1BBNSR": "Upload as overdue today at {time}",
+ "1BL+ll": "per year",
+ "1BUSUh": "Control access to your transfer with a password",
+ "1Bavz9": "{count, plural, one {Members of the containing shared folder with the link can view this file. Expires in {count} day. Downloads disabled.} other {Members of the containing shared folder with the link can view this file. Expires in {count} days. Downloads disabled.}}",
+ "1C5I6H": "Font",
+ "1CRuUi": "{region}, {country}",
+ "1CbSSJ": "Uninvited {email}.",
+ "1ClliE": "Set for how long members can stay signed in to dropbox.com.",
+ "1Cwbs7": "Re-invite people from your Dropbox trial",
+ "1Dr11y": "Most times shared",
+ "1E7IYf": "Grid view",
+ "1EXUnv": "Choose a folder from your personal Dropbox",
+ "1EdKf8": "Create report?",
+ "1EdolK": "{count, plural, one {Members of the file with this link can edit. Expires in {count} day.} other {Members of the file with this link can edit. Expires in {count} days.}}",
+ "1EuUat": "Choose an account",
+ "1F4EvZ": "{name} is a member of this team folder",
+ "1G2/ot": "A virtual gathering place for your team",
+ "1GlT+b": "Watermarking is not available for this file type.",
+ "1HZx8x": "Add a note if you like",
+ "1I1DA5": "This will free up one of your licences, so you can use it to invite someone else to the team or to invite {username} again later.",
+ "1I2L6w": "Uploaded {num_files} files",
+ "1I9VM9": "With {trademark_business}, you get even more security and collaboration features for your team. These additional features include {vacuuming_policy_max_days}-day version history, more space, email and chat support, and admin management tools for better control and visibility. Compare {trademark_business} and {dropbox_plus} here.",
+ "1IJ7Sb": "Manage access",
+ "1Ig/ZV": "You won\u2019t be charged until after your free trial ends on {trial_end_date}.",
+ "1J71be": "What\u2019s shared outside your team?",
+ "1K3VHR": "Couldn\u2019t upload, but we think it was a one-off. Try uploading again.",
+ "1Khxic": "Sharing and collaboration",
+ "1LPmMh": "Set a 6-digit code to protect your vault on all devices.",
+ "1LrwxL": "Simplify Dropbox sign-in by letting members use their company usernames and passwords",
+ "1M1hps": "This transfer has expired",
+ "1MWg58": "New folder",
+ "1MfPsh": "Manage partner permissions",
+ "1MiQRb": "\u2318 + v",
+ "1N3MWv": "Choose if your team has a lot of files. 'Online only' files sync faster and save hard drive space.",
+ "1NI2g/": "This file is part of a shared folder:",
+ "1NI7Ix": "Limit the number of active dropbox.com sessions a member can have at the same time.",
+ "1NiPiC": "Open in web browser",
+ "1O8skO": "People we think you work with have joined these teams",
+ "1OE/B8": "Update Smart Sync settings?",
+ "1ONP6O": "The Cadastro de Pessoas F\u00edsicas (CPF) is the Brazilian individual taxpayer registry identification number. It has 11 digits and can be found on your CPF card. It consists of numbers, dots and a dash, like the following example: 100.001.101-00.",
+ "1Oclqa": "If you continue, you won\u2019t be able to access this folder any more.",
+ "1P05hM": "That isn\u2019t a valid phone number.",
+ "1P57nr": "Photo deleted.",
+ "1PIid1": "A screen capture demonstrating how the interface appears on multiple devices. A smaller window to the bottom left represents a mobile version of the interface, layered above the larger desktop interface. Both windows are simultaneously following a comment discussion about the same image. The image discussed is an abstract 3D rendering of many different geometric objects pulled together.",
+ "1PU8LZ": "This folder has been successfully removed from your Dropbox.",
+ "1Q8msV": "Slack",
+ "1Qe9ra": "Reset passwords",
+ "1SPrvR": "Country",
+ "1SUV8i": "Content calendar",
+ "1Tf/Ua": "Appropriate Safeguards.",
+ "1U1K3q": "You can\u2019t sign in as yourself or as a limited member",
+ "1URVg+": "OK",
+ "1UW9bf": "Content management",
+ "1VHHGq": "You\u2019re cancelling your scheduled plan change. Your Dropbox {plan} plan will be renewed on {date} and you will be billed yearly.",
+ "1VxEYe": "Step 4 of 4: Confirmed",
+ "1WAs6E": "You can create a shared folder",
+ "1WE8Pm": "It\u2019s easy to migrate your existing{br}account to {trademark_business}",
+ "1WKHbc": "Adding default background...",
+ "1WRife": "Set up Dropbox",
+ "1Wj6kh": "Cancellation",
+ "1WkwVp": "Your plan includes as much space as you need and finite API calls.",
+ "1X+OZo": "View all alerts",
+ "1X+vxM": "Cancel",
+ "1XVKkQ": "You\u2019ll be signed out after unlinking for your security.",
+ "1XbVf0": "Dismiss this team suggestion",
+ "1Y/1oL": "Because this file is already open in {editor_with_lock_string}, you can only see updates and edit there.",
+ "1Y/n6I": "How to use Selective Sync",
+ "1Y5o16": "Unsubscribe from notifications",
+ "1YLVkG": "We just sent a password reset email to {email}. Please check your inbox.",
+ "1YVH8j": "You renamed this file",
+ "1YhtdU": "Re-add shared folder",
+ "1Yl7QT": "Last worked together on {lastShareDate,date,medium}",
+ "1YrAwq": "Your title",
+ "1YrEPE": "\u201c{filename}\u201d will be restored to the version from {date} at {time}. All other versions will still be saved.",
+ "1ZKVFi": "View report",
+ "1ZUfS7": "Next",
+ "1aBDFR": "Your Dropbox {plan_name} + extended version history plan will be renewed on {date}. Your current {billing_schedule} total is {total}.",
+ "1aPcBO": "Remaining out of purchased",
+ "1agNEP": "Verification failed. Please create a new ticket.",
+ "1b/4p6": "Send",
+ "1b4E6m": "Upload an HTML file",
+ "1b8MJI": "You don\u2019t have any recently deleted files",
+ "1bm1le": "Disposal type",
+ "1cIg3V": "Team folders can\u2019t be moved.",
+ "1d4aLL": "Failed to retrieve tasks.",
+ "1d7dxH": "View version history",
+ "1dRSXy": "Please enter a valid VAT number, e.g. {examples}.",
+ "1dh2zK": "We were unable to complete your request.",
+ "1esgGu": "The Dropbox app hasn\u2019t finished installing on these devices. Continue the installation on these devices to link them to your account.",
+ "1fEHs1": "Enhance remote collaboration with Zoom instant meetings and video recordings.",
+ "1gJgsp": "Your team members will have access to this space and the content here. You can choose who gets to see what. You\u2019ll also have your own folder for personal files.",
+ "1gSGkC": "Dropbox needs to verify your email address {email} before you can invite friends. It\u2019s as simple as clicking the link in the verification email we send you.",
+ "1hGS2L": "What type of work do you mostly do?",
+ "1hGxus": "Security features",
+ "1hPYjL": "PDF",
+ "1hfiN5": "How can I look up a Dropbox charge on my credit card statement?",
+ "1hjn++": "Here\u2019s where you can add and remove team members. You can search for people easily and grant them admin permissions.",
+ "1hptrF": "Post message as comment",
+ "1iBlE/": "Team",
+ "1iU3Ew": "Add your billing info to continue merging {team_name} into your team.",
+ "1ip4L6": "In a meeting",
+ "1ixDw1": "Enter the app key or ID to manage permissions for an app that is not in App Centre. Find app key or ID",
+ "1j0xX5": "handshake illustration",
+ "1jKW0T": "Peace of mind with remote wipe for lost devices",
+ "1jrD5R": "Any folder",
+ "1k2tIw": "Old state",
+ "1k4YW6": "Members can sign in with their Google or Dropbox account credentials. Google and Dropbox email addresses must match for sign-in to work",
+ "1kA3hZ": "Apps menu",
+ "1kCq9A": "or",
+ "1kPebb": "Link as many devices as you need to",
+ "1l3tlC": "Deactivate",
+ "1l72c9": "Send request to join",
+ "1l7IZN": "We couldn't find any organisation contacts in your Google Directory",
+ "1l7kG/": "Renewal date",
+ "1lJuQj": "Our business couldn\u2019t justify the pricing of {trademark_business}",
+ "1lbOca": "{date} by {app_name}",
+ "1mC/kk": "Close",
+ "1mWVTt": "8 hours",
+ "1mXSwR": "Your logo should be no more than 10 MB in size.",
+ "1mh6jZ": "{trademark_business} users can expect a response within 12 business hours.",
+ "1mkOQ2": "The owner of some of these shared folders is a member of another team.",
+ "1n+LVR": "Watermark",
+ "1nth2+": "Add licences",
+ "1oUfOH": "Requests to join",
+ "1oYZCT": "You",
+ "1ocGM7": "Keep separate from {team_name}",
+ "1os9Gt": "No deleted files found. Try adjusting your filters",
+ "1p7ffE": "Download all",
+ "1q1f/B": "Search for {name}",
+ "1qAEQn": "{sender_name} wants to share the file {content_name} with you.",
+ "1qV3DH": "Disk image",
+ "1qn4OK": "Invite to join",
+ "1qtXNM": "Continue",
+ "1r0sFK": "Error sending message",
+ "1rEKxF": "Anyone in the {trademark_business} team with this link can view the file.",
+ "1rXd1Y": "You have successfully verified {domain}. Onboarding accounts with @{domain} email addresses will now be faster and easier.",
+ "1s2pn+": "Reply",
+ "1sAXgU": "There\u2019s already a hold with that name. Try another one.",
+ "1sq9sN": "Choose someone to see what they can access",
+ "1sw4zF": "Use this template with pre-defined columns, and fill in your member data.",
+ "1tC4ob": "{count, plural, one {Adding member...} other {Adding members...}}",
+ "1tKV7t": "Drop file to upload",
+ "1tQ+LJ": "Enter email address",
+ "1thbfR": "Everything teams need, all in one place",
+ "1tiqch": "Not a team member",
+ "1tjeem": "This member will be signed out of dropbox.com immediately so they can set up two-step verification again.",
+ "1u2sgq": "Get {space} of space to store and share just the essentials",
+ "1u9Ft+": "Easily send requests for signatures and sign your most important agreements securely, without leaving Dropbox",
+ "1uAucQ": "Token could not be copied. Please copy it manually.",
+ "1uCzqL": "Dissatisfied",
+ "1uP4/f": "We tried calling {phoneNumber} but there was no answer",
+ "1ukbKk": "in progress",
+ "1vNkL5": "{count, plural, one {You're inviting {count} person to the {team} Dropbox and adding them to your plan.} other {You're inviting {count} people to the {team} Dropbox and adding them to your plan.}}",
+ "1vPVlD": "Multi-segment",
+ "1vlc0Q": "Work on this file in other apps. Updates you make will be saved automatically back to Dropbox.",
+ "1vvJ0r": "Import",
+ "1w+T31": "Address",
+ "1wBEXr": "Unfollow",
+ "1wXGkc": "Account email",
+ "1wfCf2": "Make new files local. Choose if you often access files offline.\nLocal files are downloaded to your hard drive.",
+ "1wjuAH": "Are you sure you want to disable {app_name}?",
+ "1wsJLb": "Explain what will be in this export",
+ "1wtgq1": "Confirm cancellation",
+ "1x2TA/": "Enterprise console",
+ "1xCLQd": "Business critical",
+ "1xgfi1": "{current_page_number} of {total_number_of_pages}",
+ "1yG6Np": "Reminder emails sent",
+ "1yGfcn": "Everyone in your team will be able to edit top-level folders.",
+ "1yRjbu": "Team member folder, {alt}",
+ "1yYk7o": "Done",
+ "1yeUGA": "Active",
+ "1z4jwW": "You don\u2019t have any company-managed groups currently. ",
+ "1zC4ih": "Folder created.",
+ "1zYtIT": "How do I delete the Dropbox folder from a lost or stolen device?",
+ "2+4bCg": "Dropbox is recovering files",
+ "2+Fi7z": "Email notification preferences successfully updated.",
+ "2/+46g": "Connected",
+ "2/IxPb": "{index}. Enter payment details",
+ "2/asYA": "Your edits won\u2019t be saved.",
+ "2/fjiQ": "There was an error sending the link",
+ "20q1Pn": "{count, plural, one {Deleted {count} item.} other {Deleted {count} items.}}",
+ "21PudV": "Set the default for apps listed in App Centre. New apps in App Centre will also adopt this default permission (does not affect Custom apps). This will not affect the permissions for Other apps.",
+ "21kI93": "Deletion may take longer to complete. Please check back later.",
+ "22rRvZ": "You\u2019re losing access to the following features:",
+ "237uNo": "Let\u2019s double-check that everything looks OK",
+ "23A9X9": "Remember that, after downgrading to {trademark_basic}, your storage space quota will be reduced to {free_quota} (plus any bonus space earned previously).",
+ "242oct": "There was a problem with your request",
+ "24uEco": "Email address verified. Now download the free desktop app",
+ "258ie2": "or create an account",
+ "25Cg8v": "The report will be saved as a CSV in a folder called Dropbox Business reports. We\u2019ll email you when the report is ready.",
+ "25txb6": "Access the admin console to monitor activity, connect devices and audit sharing activity",
+ "261J2J": "All time",
+ "271VG4": "We\u2019ve detected that your Internet is not fast enough to download these files.",
+ "27Ivr1": "Loading all analytics information",
+ "27UqZZ": "Your plan will change from {dropbox_family} to {dropbox_basic}",
+ "27eLE5": "Prices listed for {trade_mark} {plan} plan.",
+ "283pqS": "Tap 'Open in Chrome' or 'Open in Safari'.",
+ "288sXZ": "You\u2019re not syncing all of your personal Dropbox folders to this computer.\n You can make those folders online only with Smart Sync.\n You'll then be able to access them easily and still save hard drive space.",
+ "28Dqqi": "Brainstorm ideas",
+ "28PBVj": "Most people use their company, department or team name. This is visible to everyone in your account.",
+ "28T4FU": "Continue anyway",
+ "28ZQpX": "You viewed",
+ "29Dcc3": "You shared this file in {slack_conversation_name}",
+ "29Gyx1": "Members have {emailDomain} emails",
+ "2A+wkW": "Cancel",
+ "2ADqSr": "Shared on",
+ "2At1kB": "Merge into primary team",
+ "2B50nF": "Name of file, folder, Paper doc or showcase",
+ "2BYpHw": "View backup codes",
+ "2Cbv/y": "Try again",
+ "2EBHb7": "Resend email",
+ "2Eulh0": "Name",
+ "2F2ibz": "Admin permissions added to {display_name}",
+ "2F9pc2": "Replace the {error} character with something else",
+ "2FDuGI": "New password",
+ "2FTkI8": "Centre",
+ "2G4Vro": "8-digit code",
+ "2GKKUl": "Spam",
+ "2GLj8D": "Want Dropbox for your team?",
+ "2GNo9w": "Done",
+ "2GZDjz": "{price} {currency}",
+ "2IZMeS": "Unable to load page. Please refresh the page to try again.",
+ "2Ifi1r": "You shared this file in Slack",
+ "2Iwxq2": "Easy-to-use team management and collaboration tools",
+ "2J51BB": "Close web session",
+ "2JCh/k": "Yes! Please contact our sales team for more information.",
+ "2JGqoT": "Check out Dropbox Professional",
+ "2Kunae": "You added this file to the {card_name} card in {list_name}",
+ "2LE9ME": "Team",
+ "2LVZs5": "Thanks for adding stuff to Dropbox! Just so you know, you\u2019re getting close\n to your space limit. Find out more about what to do if you\n run out of space.",
+ "2M21cz": "Clone",
+ "2MBjAy": "Select none",
+ "2MVjgz": "How will you use Dropbox?",
+ "2MiDFI": "Storage",
+ "2MlcKk": "Sent to {recipient} and {num_others} others.",
+ "2MwslZ": "Connect your calendar to view upcoming meetings",
+ "2NCIHF": "Web session control",
+ "2NDCop": "Too many attempts. Please try again later.",
+ "2NFHH7": "{name} renamed {single_item_name_prev} to {single_item_name_next} in {folder_path}",
+ "2NHCHm": "Paper is free and available to all Dropbox users.",
+ "2NPQhg": "Credit card. We accept {payment_methods}.",
+ "2NTBgG": "Hmm\u2026 it looks as though your browser is not secure",
+ "2Nkf+7": "Dropbox helps your team with tools that bring everyone\u2019s work together in one focused place. Access and share files, coordinate projects with colleagues, and communicate alongside everyone\u2019s work.",
+ "2NsS1B": "upload to your personal Dropbox",
+ "2OHTp6": "Person",
+ "2OK8bf": "Send, request and save signatures in Dropbox.",
+ "2OYmJo": "Congratulations on completing your free trial! To keep {trademark_business}, add your billing info now.",
+ "2Oobwp": "Shared on Dropbox",
+ "2P31GH": "Thanks for verifying your email address {email}. Your {team} account has been changed successfully.",
+ "2PB639": "Try a name or email address",
+ "2PSC7f": "Copy to clipboard",
+ "2PV9Cl": "Back",
+ "2Pd+4t": "Or",
+ "2PqJRP": "Send verification email",
+ "2PvGH3": "Select Dropbox folders",
+ "2QLVpI": "There\u2019s no need to make any changes to your account, or move any files or folders, when you purchase or join a {dropbox_family} plan. Your plan will change to {dropbox_family}, but your account profile, settings and files will remain the same. However, only the {trademark_family} manager can view or change billing info for the plan, so if you previously had a {trademark_plus} or {trademark_pro} subscription, you may no longer have access to billing information.",
+ "2QYPK/": "{br}{folderName}: Open \u201c{policyName}\u201d policy",
+ "2QgYHO": "File recovery and version history",
+ "2Qjoim": "Since it\u2019s been a while, please enter your password again.",
+ "2Qzpbt": "You\u2019ll still keep contacts you imported, and new contacts will be added when you share.",
+ "2R9OWG": "Events & webinars",
+ "2RQQWB": "Manage projects, content and people easily",
+ "2RZCCJ": "Don\u2019t have a Dropbox account?",
+ "2RxOOZ": "Video details",
+ "2SNpjk": "{count, plural, one {We found {count} person your team works with} other {We found {count} people your team works with}}",
+ "2Sqn0x": "Viewed just now",
+ "2T0Q/w": "API",
+ "2T0ULp": "Not added to Dropbox",
+ "2TkLHf": "recommended",
+ "2UPXBg": "Cancel",
+ "2Uk2E2": "Other",
+ "2V+4dT": "When members lock editing for a file, you\u2019ll be able to unlock it here.",
+ "2W3ty2": "Cannot sign in to an inactive team.",
+ "2W7OO1": "Use the Dropbox apps to get work done without the Internet or a computer.",
+ "2WiFdV": "Or email me the link",
+ "2WlplE": "{count, plural, one {Anyone in your {trademark_business} team with this link and password can edit the file. Expires in {count} day. Downloads disabled.} other {Anyone in your {trademark_business} team with this link and password can edit the file. Expires in {count} days. Downloads disabled.}}",
+ "2WooKD": "Reseller support",
+ "2X0e4z": "Show",
+ "2X3yx6": "Change",
+ "2XVSZh": "Exit Vault",
+ "2Y3n9L": "Bottom left",
+ "2Y6TNk": "{trademark_business} includes:",
+ "2YO+Wb": "{count, plural, one {You do not have permission to permanently delete this item.} other {You do not have permission to permanently delete these items.}}",
+ "2Ydam9": "Security check completed",
+ "2Ys69n": "Strike up a conversation without skipping a beat",
+ "2Z8fa/": "Check your inbox to verify your email address",
+ "2ZDGrM": "Save in Dropbox",
+ "2ZK3bH": "Share",
+ "2aNoUL": "Apps",
+ "2afQgr": "It looks as though {email} has been added to another Dropbox team. You can still invite them to your team using a different email address.",
+ "2arYUZ": "Company logo",
+ "2b/+g/": "{count, plural, one {{name} rolled back {count} item in {folder_path}} other {{name} rolled back {count} items in {folder_path}}}",
+ "2bDlQT": "Close modal",
+ "2bSlge": "Anyone in the {trademark_business} team with this link and password can edit the file. Downloads disabled.",
+ "2c2IWX": "Customise design",
+ "2c6DhA": "This account is a member of the {team_name} Dropbox account.",
+ "2c8AqX": "{count, plural, one {Anyone in the {trademark_business} team with this link can edit the file. Expires in {count} day. Downloads disabled.} other {Anyone in the {trademark_business} team with this link can edit the file. Expires in {count} days. Downloads disabled.}}",
+ "2cBZku": "",
+ "2cWry4": "{name} restored a previous version of {single_item_name}",
+ "2cbf2n": "Assigned to: {agent_name}",
+ "2ciDqQ": "Back to top",
+ "2cp6D3": "Check deleted files",
+ "2crgUP": "Keep it secure",
+ "2d0cmy": "Confirmation image",
+ "2dhZNU": "A screen capture demonstrating the Smart Sync feature of {dropboxProfessional}. A user selects six files and folders. A contextual menu appears, and the user interacts with the Smart Sync options to remove the files from the local computer and make them available online only.",
+ "2dpvY4": "Slides",
+ "2eiFRo": "Invite team member",
+ "2ejttE": "Anyone who has installed the extension on their computer will be signed out of Dropbox.",
+ "2ejwnd": "To edit this file, we need to verify your email. Check your inbox.",
+ "2er2JB": "How to \u2192",
+ "2eyJvg": "Secondary email address",
+ "2fR9DX": "Sign in",
+ "2g1TQJ": "Share files",
+ "2gA+c4": "{count, plural, one {You and {count} other viewed} other {You and {count} others viewed}}",
+ "2gXc1w": "Try Dropbox for free",
+ "2gnq15": "Folder name",
+ "2gxCHH": "Enter names or email addresses",
+ "2h/hqK": "Add admin permissions",
+ "2h4tij": "Unsharing {folder_name}\u2026",
+ "2hKYsA": "Link code",
+ "2hfya7": "Cancel",
+ "2hhEOh": "Two-step verification settings reviewed",
+ "2hwlVq": "Update security settings",
+ "2i3aIw": "Smart Sync won\u2019t work",
+ "2i6CWC": "Get desktop app",
+ "2iSDDx": "Yesterday",
+ "2imYtb": "Can\u2019t convert account because they haven\u2019t joined the team",
+ "2iucH+": "Skip",
+ "2jPht+": "Construction",
+ "2jcz3e": "Sorry, something went wrong.",
+ "2kRd9Y": "Can edit",
+ "2ki6dJ": "Members can share within the team only",
+ "2krq2q": "Changed {name}'s email address to {email}",
+ "2l1TnV": "Credit card",
+ "2lIuzs": "Why Dropbox?",
+ "2ln1p6": "Billing period",
+ "2mSW1h": "Plus is required to use {DROPBOX_VAULT}",
+ "2mi2Eu": "Google Play",
+ "2nDdbQ": "Search domains",
+ "2nFNUx": "To finish linking your computer to {email}, go back to the Dropbox installer and enter the following link code:",
+ "2nmvfV": "Updating",
+ "2nr+qs": "Using another service",
+ "2oSolp": "I don\u2019t need the features on this plan",
+ "2ohcMK": "{UsersWithAccess} will have access to team folders.",
+ "2ozYzV": "and {num} more...",
+ "2p5Huq": "Let\u2019s discuss",
+ "2q+G4r": "Anyone with this link can view the folder. Downloads disabled.",
+ "2qougZ": "{available_licenses} remaining",
+ "2r0OTI": "Choose your {trademark_business} plan",
+ "2rL0+o": "Video",
+ "2sNkep": "Home",
+ "2tVWPi": "Upload successful",
+ "2ti+Ua": "You must give admin permissions to someone else",
+ "2tiJu+": "Now click Open preferences, then click Allow and Smart Sync will be enabled.",
+ "2tjj6t": "Switch accounts.",
+ "2tq60j": "Recommended for you",
+ "2u6miF": "Search items",
+ "2u9ULB": "PAPER TEMPLATE",
+ "2uJOpz": "Archiving {folder_name}\u2026 Archiving can take up to a few hours.",
+ "2v0dx6": "{name} unshared {single_item_name}",
+ "2vYe0V": "Least recent",
+ "2vcMJQ": "Received requests",
+ "2vjhN9": "Reconnect {serviceName}",
+ "2vkcFZ": "Send reminder",
+ "2w0ELg": "Description",
+ "2wQgFw": "Couldn't copy the link. You don't have permission to create a link to this content.",
+ "2wRbuB": "Get app",
+ "2wa/i3": "From",
+ "2was5Q": "Go to HelloSign",
+ "2x0r3M": "Select all",
+ "2x6X5S": "Create transfer",
+ "2xT0mH": "Order summary",
+ "2xWk3Q": "Learn more",
+ "2xaRNX": "Members will join once they accept your invitation.\n You\u2019ll have to wait until they accept before getting everything set up for them.",
+ "2xeci1": "{name} removed {entity} from this file",
+ "2xi5y3": "Get your deleted files back, or delete them forever",
+ "2xkH2J": "Uninstall the Dropbox system extension?",
+ "2xlNIE": "Your new password should be at least two bars:",
+ "2yKYY7": "Select Create new doc or the plus sign ( + ) in the top right-hand corner to get started.",
+ "2ySDAA": "Paste",
+ "2ycril": "We were unable to download {failedFilesToShow}",
+ "2yicsb": "File is over the max file size.",
+ "2ykbSd": "The {team_name} shared workspace is almost full",
+ "2yp43H": "This album will be saved instantly to your {team_name} Dropbox and downloaded to all computers linked to your {team_name} account.",
+ "2z+WWR": "Create, review and manage docs with your team in a flexible workspace.",
+ "2zDZtR": "On your computer",
+ "2zRNW+": "Satisfied",
+ "2zkZ/z": "Add payment method.",
+ "2zow3W": "Create, edit and organise documents, spreadsheets and presentations",
+ "3+170P": "To turn on, set new files to default to online only.",
+ "3+mqzE": "Anyone in your {trademark_business} team with this link can edit the file. Downloads disabled.",
+ "30+ciJ": "This lets members delete content from the company account permanently.",
+ "308lLd": "Back up your PC or Mac files automatically to Dropbox so your stuff is safe, synced and accessible anywhere.",
+ "30acpq": "Viewed",
+ "30bVmM": "Add a note",
+ "30dYHN": "Under Tracking prevention, select Off from the drop-down menu next to www.dropbox.com",
+ "30hchx": "Devices",
+ "30u0Yr": "Discard my changes",
+ "30vxYB": "A photo or avatar of {user_name}",
+ "316ii5": "When set to Partial, you\u2019ll need to manually choose members to gain access to Paper.",
+ "31Fc4k": "Confirm",
+ "31PRQk": "Send size",
+ "31vXEJ": "Release hold",
+ "31w6qR": "Owned by {name}",
+ "32IYx4": "left in your free trial",
+ "32pYJ5": "or sign up",
+ "33ZShg": "Pending members",
+ "33c2PH": "{space} of encrypted cloud storage",
+ "34LFfx": "Try file request",
+ "34M/6I": "Last 7 days",
+ "34cPai": "Better brainstorms, better ideas",
+ "34eyuX": "Default folder access",
+ "359sgS": "Pages",
+ "35MZFn": "This album will be saved instantly to your Dropbox and downloaded to all computers linked to your account.",
+ "35NLW6": "Anyone in your Dropbox team with this link and the password can view the file.",
+ "35NidE": "Watermarking is available on PDFs, PNGs, JPEGs and BMPs.",
+ "35lh1o": "Can\u2019t manage sharing. This item may have been moved or deleted",
+ "36Zcm5": "Note: This member merged an individual account with the {team_name} Dropbox account on {date}. They might have personal files in the account from before the merge. You can convert their account to an individual Dropbox Basic account instead.",
+ "36gqZd": "Enterprise",
+ "37bjta": "Unlock easy-to-use security controls",
+ "380IBo": "Turn off {alertName}?",
+ "38TMU/": "Online only (recommended)",
+ "38ZvV3": "Purchase summary",
+ "38o/9Q": "Marketing, Finance, Design, etc.",
+ "38w6eW": "On, red-eye reduction, return not detected",
+ "39gFed": "Your Dropbox Family plan is out of space",
+ "3AZL2G": "You\u2019ll need to sign back in if you want to access your Dropbox files on this device.",
+ "3AnJ7s": "Yes! Please contact our sales team for more information. To provide the discount, a sales rep will need a copy of your 501(c)3.",
+ "3B/95c": "Smart Sync works on Windows and Mac OS. Find out more about our system requirements",
+ "3BZJoW": "Sign out",
+ "3BjfWu": "Want to keep using {trademark_business} after {trial_end_date}?",
+ "3By4g3": "Align on where the product is heading. Centralise your roadmap and company goals to give everyone a sense of how things are moving along.",
+ "3C1nR3": "The folder name should have fewer than 255 characters",
+ "3Cpbx7": "Replace the / character with something else",
+ "3D23+8": "On",
+ "3D3su5": "Details",
+ "3DU4u6": "Access any files from your desktop, and use all of your team\u2019s favourite tools without switching between apps.",
+ "3Dgw+C": "View in folder",
+ "3Dhjn4": "Access pending",
+ "3Dhpy9": "Manage \u2013 and finish \u2013 team projects",
+ "3Dzboq": "Failed to re-link computer",
+ "3EEu7s": "The password of the account associated with this email address has expired.\n Please log in to this account and update the password before pairing.",
+ "3EKNmT": "Send files to a channel or in a direct message, directly in Dropbox.",
+ "3Ekixq": "Choose an account",
+ "3EqsN0": "Navigate back",
+ "3F63BL": "Public",
+ "3FYCwG": "Don\u2019t sync automatically",
+ "3FZtIc": "Manage tasks, track file updates and stay in sync with your teams and clients.",
+ "3FaBPM": "The watermark could not be saved because the file was moved or deleted.",
+ "3FlgyW": "Content",
+ "3G8Fme": "Last 4 digits of card number",
+ "3GavgK": "{index}. Set initial administrator account",
+ "3Gnn91": "Continue",
+ "3Gw/HG": "{serviceName} icon",
+ "3H2+TZ": "Hide deleted files",
+ "3H2ISU": "file transfer settings modal",
+ "3HBuWz": "{count, plural, one {Collaborates with {count} person in your team} other {Collaborates with {count} people in your team}}",
+ "3HPe+W": "Hi {user_fname}!",
+ "3Hpui2": "Inviting...",
+ "3I9Jjk": "From",
+ "3IGaSm": "Set up",
+ "3Ii0ZI": "Create a report of all activity for {member}. We\u2019ll email you at {email} when it\u2019s ready to view in your Dropbox.",
+ "3IxcSr": "Copying files\u2026",
+ "3J1+vu": "{count, plural, one {{count,number} email was already invited by another team: {emails}} other {{count,number} emails were already invited by another team: {emails}}}",
+ "3J1lxt": "Dropbox \u2013 {folder_name} \u2013 Simplify your life",
+ "3J5wd7": "Couldn't save changes. Try again, or contact us for help.",
+ "3JnVTZ": "Local",
+ "3KCxAM": "Opacity",
+ "3LFQXq": "Have you seen something inappropriate in Dropbox?\nLet us know and we will take a look.",
+ "3LNfOq": "Which Dropbox should these files go in?",
+ "3LWg9S": "The following characters are not allowed: \\ /",
+ "3LcPUk": "Relevance",
+ "3M6nrm": "Start a vault with files from your Dropbox",
+ "3MFWEQ": "With {proSpaceLongFormRounded} and enhanced Smart Sync, you can keep everything in the cloud without taking up all your hard drive space.",
+ "3MRvRq": "Deleting \u201c{group_name}\u201d will cause all of its members to lose access to folders that have been shared with the group. You will not be able to undo this.It might take a little while for deleted groups to be removed from all of their shared folders.Are you sure you want to delete the group?",
+ "3MhXFy": "To install Dropbox on this device, upgrade today",
+ "3Myz/Y": "Give this policy a unique name",
+ "3N0zUC": "Learn how to manage cookies in Safari.",
+ "3NBnvs": "Building a sculpture",
+ "3NfzQq": "{name} removed {entity} from this file",
+ "3O/G1o": "It looks as though you\u2019re using a phone",
+ "3O3Xv8": "{count, plural, one {{count,number} day} other {{count,number} days}}",
+ "3OBX0q": "See stats, such as views and downloads, on Dropbox.com.",
+ "3ONogx": "You can also cancel your plan.",
+ "3OQZXv": "Stay on top of what team members are doing. Manage team to-dos with task assignments, due dates and reminder notifications.",
+ "3OZgJG": "You shared this file with yourself",
+ "3Ol37w": "Start by inserting your security key into a USB port. Learn more",
+ "3OnFd5": "Mark as read",
+ "3P9kqi": "Dismiss",
+ "3PyIRT": "For effortless backups, get the app",
+ "3Q0K06": "You don\u2019t have access to permanently delete the content.",
+ "3QRiaZ": "The member has {num_api_apps} API apps that will stop working for their users",
+ "3QemXP": "Changes to docs I follow",
+ "3QmSF8": "Folder settings",
+ "3RMNFv": "Coordinate project work in one place",
+ "3Rad5Q": "30-day trial",
+ "3RkPzL": "Capturing device",
+ "3Sb6Ws": "{name} will be saved to the {cdm_tmf_name} folder in your {team_name} Dropbox account.",
+ "3SptPr": "Files",
+ "3SvVS/": "You\u2019re not being charged at the moment. Add your billing information to keep using {trademark_business} after your trial has ended.",
+ "3TmIRv": "Adding a Zoom meeting",
+ "3Tt6Qx": "Binder",
+ "3TuG0e": "Product",
+ "3U9uSN": "{count, plural, one {Get {count} more day free} other {Get {count} more days free}}",
+ "3Uyp6Q": "Fixed session length",
+ "3V2V21": "Support tools",
+ "3VEYDa": "Drag and drop, rename, and create new folders from your browser",
+ "3VVFir": "Link not available. To share, invite specific people.",
+ "3Vujln": "2 years",
+ "3WH0jD": "Another team has already verified {domain}",
+ "3X9Vpx": "If you purchased your subscription through Google Play, you can cancel a Dropbox subscription or free trial by following these steps:",
+ "3XZmic": "Transfer started",
+ "3YA4ZU": "Scheduled add-on change",
+ "3YUerL": "or buy now",
+ "3YjVOS": "Processing",
+ "3ZaZTQ": "Backup",
+ "3ZoXVs": "Your {duration}-day free trial starts today. Within those {duration} days, if you change your mind, you can cancel your account and you won\u2019t be charged. After your free trial, you will be charged {plan_price} {period} until you cancel your subscription. Previous charges won\u2019t be refunded when you cancel unless it\u2019s legally required.",
+ "3aAG6f": "Choose a capture setting for {domain} only (no other domains will be included in this change):",
+ "3aCCWZ": "Office/administrative support",
+ "3aIAq6": "You won\u2019t get an alert if a member signs in from a high-risk country.",
+ "3aWThs": "Sign in to contact Dropbox customer service",
+ "3aasJ7": "Verify",
+ "3abxRz": "Something didn\u2019t load correctly",
+ "3bUJAd": "Combining...",
+ "3c3ixc": "To retouch",
+ "3cpfb+": "Task unassigned",
+ "3d639L": "Move folders",
+ "3d9jJg": "You cannot move your own account. Ask another admin to move it for you.",
+ "3dFs30": "Last updated on {ts,date,::MMMdd} at {time,time,::hhmm}.",
+ "3dQivP": "Set as default",
+ "3dc86o": "Now click Open preferences, then click Allow to enable Smart Sync.",
+ "3devqr": "We suggest creating a personal account to keep personal files separate",
+ "3e7BYw": "This lets members send file transfers to people inside and outside your team.",
+ "3eet8m": "Create activity report",
+ "3enZcD": "Team admin, user management admin, support admin",
+ "3erukr": "What\u2019s your job title?",
+ "3f5AB6": "This is a work-related Dropbox account and your admin can access what's in it.",
+ "3gzYYX": "Keep {trademark_business}",
+ "3h4g+d": "Enter your institution's domain and you're connected.",
+ "3hCG9P": "See plan info",
+ "3hOA04": "We were unable to post the comment.",
+ "3hPinQ": "{name} edited this file",
+ "3hdzlk": "Get PIN",
+ "3hrEdL": "Syncing that many files in one go will take a long time. We recommend that you sync only the folders you need right now.",
+ "3iLFFe": "or learn more",
+ "3iiv+5": "Team folder users",
+ "3j4ino": "If you have any questions, please email invoices@dropbox.com.",
+ "3j97WR": "It\u2019s probably just a one-off. Reload comments or try refreshing the page.",
+ "3jNn+n": "Get administrative control",
+ "3jUXO5": "Seller name",
+ "3jdOlz": "Anyone with the link and password can view this folder. Downloads disabled.",
+ "3jj0uk": "What if the recipient already has Dropbox {trademark_plus}?",
+ "3kB3s4": "More menu",
+ "3kC4Gu": "Disable '{'service_name'}'?",
+ "3kb11u": "The username portion of the email address (the portion before the @: {username}) is invalid.",
+ "3kwfGX": "{count, plural, one {{count} minute left} other {{count} minutes left}}",
+ "3lXUws": "All of your work, where and when you want it",
+ "3lo4HE": "Your {primary_label} Dropbox was successfully installed. Now you can add your {secondary_label} Dropbox.",
+ "3lp5F0": "\u2318 + {key}",
+ "3lvyoj": "Google Directory settings",
+ "3lwAEq": "or",
+ "3mCzgT": "Make all Dropbox files online only",
+ "3mnt4h": "mobile screenshot",
+ "3nL8Ut": "Billed monthly:",
+ "3nXOYX": "Create, edit and share Google Docs, Sheets and Slides in Dropbox.",
+ "3oFPUF": "Accept invitation",
+ "3oRjDD": "Test the latest features and give feedback to the Dropbox team",
+ "3onAtc": "{plan_name} {downgraded_text}",
+ "3oqoYo": "OS",
+ "3ozn34": "{to_email} was given access, but you\u2019re signed in as {user1_email}.",
+ "3pDIyO": "Get work done, with or without the Internet.",
+ "3puWNW": "Are you sure you want to cancel?",
+ "3pzlxq": "{count, plural, one {Decline request} other {Decline requests}}",
+ "3q0V1V": "{count, plural, one {We couldn\u2019t move {count} folder. Please try again later.} other {We couldn\u2019t move {count} folders. Please try again later.}}",
+ "3q4I6G": "HIPAA Business Associate Agreement",
+ "3qW+D4": "To continue, sign in to Dropbox.",
+ "3qaRMB": "Here are all of the photos from our recent holiday to Hawaii and a few to-do items to prep for the photo book!",
+ "3qoPt1": "Unknown",
+ "3qoh5F": "Send link",
+ "3rGR/m": "Membership approval",
+ "3rIjaZ": "Open",
+ "3rKACV": "{count, plural, one {{count} person asked to join {trademark_business}} other {{count} people asked to join {trademark_business}}}",
+ "3rgkX/": "Member folder usage",
+ "3tGPpn": "Now add your {secondary_role_label} Dropbox",
+ "3tRkOA": "{payment_description}, exp: {expiration_date}",
+ "3uDvZ6": "{storage} of encrypted storage",
+ "3uVrzZ": "Send large files easily with this safe and secure extension from Dropbox.",
+ "3uYwiW": "Add text",
+ "3ux07n": "{member_name} can still edit this file",
+ "3vOlVE": "Selecting this option might add users to the exceptions list.\n Settings will be processed after you click 'Apply changes' and may take up to 30 minutes to be implemented.",
+ "3vyqP8": "Current policy: {policyName}",
+ "3x4c1h": "Get started again with {trademark_business}",
+ "3x8kAK": "{count, plural, one {Add licence} other {Add licences}}",
+ "3xAi9D": "Download",
+ "3xdKPy": "Enabled",
+ "3xenFr": "Not dismissible:",
+ "3yCzsM": "upload to your {team_name} Dropbox",
+ "3yTSMD": "Switch versions of {trademark_business} to merge",
+ "3yV9+w": "Slack",
+ "3ypCXN": "Expires on {date,date,::MM/dd/yyyy}",
+ "3z459e": "Please select your PayPal account.",
+ "3zNBfK": "Illustration",
+ "4+3wxk": "{count, plural, one {{name} restored a previous version of {count} item} other {{name} restored a previous version of {count} items}}",
+ "4+hkud": "Dropbox Paper is a shared working doc made for creativity. Invite your team and build something amazing together.",
+ "4/2reX": "External sharing details",
+ "4/RbBc": "Use a different payment method",
+ "4/SGQ1": "Get new address",
+ "4/u0CZ": "{name} edited {single_item_name} in {folder_path}",
+ "4/v8L5": "{total_users}x users, {total_storage}",
+ "40+jh0": "Unlink all users",
+ "40/t5g": "Then you can use it to invite 1 member.",
+ "400iSN": "The folder \u2018{folder_name}\u2019 has been deleted",
+ "40IDtd": "Product spec",
+ "40nlyS": "Updating...",
+ "40pB5E": "Please enter a valid team name.",
+ "417qVe": "View all results for {query} in {current_path}",
+ "418g+p": "Selected file",
+ "41cwbJ": "Group by:",
+ "427Y7K": "The steps below will teach you how to get the most out of your Dropbox. Finish at least five of them and we\u2019ll give you a reward!",
+ "42dGGq": "Find what you need fast",
+ "42g3dj": "No end date",
+ "42ml+R": "Download content",
+ "42yYLf": "Used {ago}",
+ "430h7a": "recommended",
+ "43c+pc": "A .pem file security certificate supplied by your identity provider.",
+ "43dQim": "Keep projects moving with a commenting system that lets anyone inside or outside your team add feedback to any file.",
+ "43r0kZ": "Close this window and return to the Dropbox desktop app to continue",
+ "44Ky+Q": "Rename file",
+ "459QXT": "{percent_uploaded}{percent_symbol} uploading...",
+ "45XRF8": "Delete selected file(s)",
+ "45ZiLf": "Send",
+ "45l3oV": "{count, plural, one {Members of the folder with this link can view. Expires in {count} day. Downloads disabled.} other {Members of the folder with this link can view. Expires in {count} days. Downloads disabled.}}",
+ "45mmhe": "The default language for this campaign. Base locales other than English do not support translations.",
+ "46AtTv": "Still working...",
+ "46Fhvj": "Paper mobile devices",
+ "46fQWy": "Do you have a question or issue?",
+ "46m+Cy": "Secure sensitive docs{br}in Vault",
+ "46onFW": "{count, plural, one {You edited {count} item in {folder_path}} other {You edited {count} items in {folder_path}}}",
+ "47AlCD": "On",
+ "47LwDz": "Password reviewed",
+ "47XFkI": "Protect the files you\u2019ll need later",
+ "47gydg": "{city}, {country}",
+ "47mqrX": "EMM",
+ "47uFL9": "Restart the download",
+ "485MF4": "Cancel",
+ "48lCd/": "Sign in with Dropbox to use Paper",
+ "48nq81": "There were too many changes for us to display.",
+ "48omKx": "Creator",
+ "495asM": "Off",
+ "49BMLC": "Done",
+ "49WgYd": "change",
+ "4ASXAK": "Link sent",
+ "4ASaZl": "On",
+ "4AiVzq": "You\u2019ve logged out of your account. Please reload this page and try again.",
+ "4BBW2C": "To share the {folder_name} with someone, invite them to join your team.",
+ "4BtQvF": "Collaborate with Dropbox",
+ "4Bz3Tt": "Back",
+ "4Chdng": "Additional information request",
+ "4CxG2v": "4",
+ "4DKF/t": "Release a hold when you no longer need to save copies of the files and their revision history.",
+ "4DMiZx": "We couldn\u2019t find any matches. Try clearing some filters.",
+ "4DQriR": "A screen capture that demonstrates how you can free up space on your hard drive. Simply right click on a local file and make \u201conline only\u201d to send to the cloud.",
+ "4EWtlp": "Start your free trial",
+ "4EZH1k": "Choose what to keep",
+ "4F3Rmj": "You need to accept Google\u2019s request in order to log in.",
+ "4FgznB": "Let colleagues join the team straight away instead of waiting for approval to get to work.",
+ "4FvSQ0": "Will I receive a refund if I cancel my Dropbox {trademark_plus} or {trademark_professional} subscription?",
+ "4GGEvb": "This folder can\u2019t be shared",
+ "4GHo3F": "Name",
+ "4GMZOq": "deleted shortcut",
+ "4GQkkL": "Success \u2013 your personal and work accounts are now paired.",
+ "4HK0++": "Install the appropriate package if you want to use Dropbox on your Linux desktop.",
+ "4HZCOQ": "Control who can view the folder with this link.",
+ "4HhApp": "Creative brief",
+ "4IHfp+": "Change your team name, choose your language, add a logo and more",
+ "4IVe1U": "{count, plural, one {Wrong PIN. Please try again in {cooldown_time}. {count} attempt left.} other {Wrong PIN. Please try again in {cooldown_time}. {count} attempts left.}}",
+ "4IZRvO": "{price}/month",
+ "4J3sZg": "Permanent deletion details are not available.",
+ "4JAFrw": "Invited {when}",
+ "4JJ1pt": "You\u2019ll get an email once the admin of {team_name} has approved your request. You can start exploring Paper now by creating a personal account.",
+ "4JJfQf": "More about storage space",
+ "4Jjl6i": "You won\u2019t get an alert when a member signs in from a high-risk country.",
+ "4K5IlG": "Open the installer again to finish installing Dropbox on your computer",
+ "4KCGVW": "Try Capture for free",
+ "4KI0YP": "Version settings",
+ "4KZf0Q": "Backup phone number",
+ "4KcZRP": "Today",
+ "4KdOkL": "per {schedule_noun}",
+ "4KxEa4": "Move completed.",
+ "4L9Mp6": "Get app",
+ "4LT0MH": "By selecting {standard_plan}, you will lose access to features like:",
+ "4Ld3tI": "Share a link instead",
+ "4MQHjO": "Note: we\u2019ll use your bank information provided by iDEAL for all future billing cycles. If your bank is not listed, please select a different payment method.",
+ "4MU0oF": "Marketing",
+ "4MvQzN": "Signed in as {user_email}. Switch account?",
+ "4N7wI8": "Message (optional)",
+ "4NcxQ9": "Join",
+ "4OVYKA": "Ctrl + Alt + {key}",
+ "4OlOOe": "Sorry, there was a problem with your request. Please try again.",
+ "4OloVt": "Your account will be merged into the {team_name} Dropbox account, where you\u2019ll have\na private area for your stuff. {team_name} admins will be able to manage your files and Paper docs.\n{team_name} has disabled Smart Sync, so you\u2019ll be signed out of Dropbox and\nonline-only files will be downloaded to your hard drive next time you sign in.\nYou\u2019ll sign in with {work_email}.",
+ "4PaMOr": "View all replies",
+ "4PhHlS": "Password-protected. Couldn't extract files.",
+ "4PtkZL": "Store all of your computer files in the cloud to save computer space and keep everything backed up.",
+ "4QA8Na": "Image",
+ "4QKAq0": "Change number",
+ "4QatcV": "With {trademark_business}, you\u2019ll get more space, controls and support.",
+ "4RH/qj": "Unable to preview a version being created",
+ "4RJ0I8": "Password",
+ "4RUd05": "Request shared. People can now upload files.",
+ "4Rd5dC": "Lock",
+ "4RvaL9": "Open the link to see what your transfer looks like.",
+ "4SqdmQ": "This file is too large to upload using the Dropbox website. Please use the desktop client.",
+ "4Swmmw": "No files locked right now",
+ "4UBGDO": "Productivity",
+ "4UkQJk": "They\u2019ll keep their own stuff and any folders shared with them",
+ "4V98Ir": "These files may be important or sensitive, so we recommend saving them somewhere that is password protected",
+ "4V9PJD": "Deleted by a permanently deleted user on {creationTime}",
+ "4VOM8A": "-",
+ "4Vv4Iv": "Please enter a valid first name.",
+ "4VvXn7": "Team management",
+ "4WH8Fc": "Someone locked editing for this file. You can still view the file and keep up to date on changes here.",
+ "4WdAHc": "Details",
+ "4Wq7Cq": "Rewind this folder",
+ "4WsjOV": "About you",
+ "4Wu5r9": "per year",
+ "4WyL7Y": "{admin_name} is a {team_name} admin. Their contact information will be hidden from team members who might need to email them.",
+ "4X0sAp": "Loading...",
+ "4X717n": "{plan_space} of space to keep everything safe",
+ "4XRv5V": "Share any file with Dropbox",
+ "4XbA3G": "Creating team folder\u2026",
+ "4XzW56": "It\u2019s probably called index.html. If you\u2019re hosting your website on a service like Wordpress or Squarespace, you may be able to edit the HTML directly from their admin tools.",
+ "4YifZz": "Please describe the issue you\u2019re experiencing in as much detail as possible to enable us to troubleshoot it faster",
+ "4ZiuCX": "This secondary team will be merged into your team soon. ",
+ "4a2Kj1": "Once your team has been merged into the primary team:",
+ "4a3msP": "A screen capture showing how hard drives have a limited amount of storage space.",
+ "4aEgv5": "Please wait until they\u2019re complete before making changes.",
+ "4aMOmP": "Keep things organised by adding people to groups.",
+ "4aRL88": "Can only filter by your devices",
+ "4abwtv": "unlimited",
+ "4acOjy": "{actor_name} moved the {card_name} card with this file attached to the {board_name} board",
+ "4apBXb": "One place for life\u2019s most important files",
+ "4apXur": "We were unable to mark the thread as unread.",
+ "4bF5Da": "Your email address",
+ "4bIxqq": "Remove access to {team_name}",
+ "4bkAHv": "See plan details",
+ "4bok+T": "Select an option",
+ "4c06XP": "Scheduled plan change",
+ "4cAGK1": "Install {dropbox_passwords} to get started",
+ "4cGCaz": "Dropbox has sent a verification email to {email}. Check your inbox and click the link in the email to verify your address. If you can't find it, check your spam folder or click the button to resend the email.",
+ "4cLs5M": "Shared link controls",
+ "4cNpcH": "Selecting is simple",
+ "4cZi/F": "From now on, when you sign in to the Dropbox website or link a new device, you\u2019ll need to enter a security code from your phone.",
+ "4caTrF": "Resume",
+ "4cdsd2": "Create a TXT record",
+ "4dD0EU": "Close",
+ "4dMYep": "Something went wrong. Please try again later.",
+ "4djX2N": "Add activities to filter",
+ "4euXr6": "Invite people",
+ "4f99hz": "Don\u2019t make any files online only",
+ "4fGTX4": "Search for \u201c{search_key}\u201d in App Centre",
+ "4fVM6V": "Some of the people you added are admins. \n Their contact information will be hidden from team members \nwho might need to email them.",
+ "4fZdBB": "Unsuspend member",
+ "4fsv5F": "Unshared {file_name}.",
+ "4fumNh": "Get the storage you need and features you want",
+ "4gEt6j": "Shortcut",
+ "4gKZhu": "You were given edit access.",
+ "4gk9AV": "Change folder",
+ "4hK2sV": "Learn more",
+ "4hS4op": "Document",
+ "4hf7s2": "Markup is available on PDFs, PNGs, JPEGs and BMPs.",
+ "4i0oiZ": "Need to send more than {file_size_limit}? Upgrade to {premium_product_name} to send up to {premium_file_size_limit} per transfer for as little as {plan_price}.",
+ "4i7BbG": "Paper helps companies transform the way they work",
+ "4iKKtb": "Control",
+ "4iWGkw": "pending",
+ "4jF4jM": "Email verified. Continue on your desktop",
+ "4jK84R": "What happened in Dropbox in the last 7 days?",
+ "4joFvJ": "{count, plural, one {{count} viewer} other {{count} viewers}}",
+ "4jwB3F": "means the Health Insurance Portability and Accountability Act of 1996 and the rules and regulations thereunder, as amended, and including the HITECH Act.",
+ "4k1fvl": "Send transfers of up to {transfer_send_size_limit} at a time with password protection and customised experiences.",
+ "4keuFt": "Show {num_more} more",
+ "4kfE6S": "Restart the download",
+ "4knJ9q": "Click \"Add\" to get help downloading Dropbox.",
+ "4kvIcJ": "Add your billing information now to keep using {trademark_business} after your trial has ended.",
+ "4kydj6": "Link",
+ "4leFEx": "Create",
+ "4loR0R": "My groups",
+ "4nE4Sg": "Your team won\u2019t run out of space, so you can always do your best work",
+ "4nKLYM": "Add a meta tag",
+ "4nduwI": "Extension URI",
+ "4nfaRz": "You can only view {file_name}. Ask an owner or editor of the folder for access to edit it.",
+ "4oMxy9": "Buy now",
+ "4ow5pO": "5 - High",
+ "4owp88": "{count, plural, one {Download} other {Downloads}}",
+ "4pFQwa": "Some of the files you selected aren\u2019t accessible any more. Please reload this page and try again.",
+ "4pflIN": "Use the Dropbox apps to stay in the loop with your team\u2019s progress in real time.",
+ "4pvYSI": "Can\u2019t open file",
+ "4q3CZy": "This folder is empty.",
+ "4qDMOz": "{from_date} - {to_date}",
+ "4qND4s": "Please open the Dropbox installer inside your Downloads folder.",
+ "4qOcWc": "Connected apps",
+ "4rYlmO": "Cannot move some members.",
+ "4sbTBw": "A folder with the same name exists.",
+ "4skAH0": "Open",
+ "4sx9Cz": "{count, plural, one {/ user, starting with {count} user} other {/ user, starting with {count} users}}",
+ "4tBwj3": "Board",
+ "4tPgve": "Cancelled pending email change.",
+ "4tflp2": "Sign up",
+ "4tu60w": "Apps for communication",
+ "4uJU4W": "Last 7 days",
+ "4ujq5W": "Sign in to link your team Dropbox",
+ "4vIJxB": "Faster sync using our delta, LAN and streaming sync technology",
+ "4vU2gl": "Delete files from {team_name} Dropbox next time this computer comes online.",
+ "4w2mD0": "Want to join the team with another email address?",
+ "4wU/uq": "Old password",
+ "4wYeUM": "To confirm it\u2019s yours, click on the link we sent to {email}",
+ "4wqAlM": "I\u2019d like to start a trial. What do I need to know to get started?",
+ "4wqmq+": "Signed up for Dropbox successfully",
+ "4wxlPu": "Invitation enforcement",
+ "4x6jQD": "Create transfer",
+ "4x96V+": "Expired",
+ "4xHyIn": "You shared this file in Zoom",
+ "4xSgV3": "subject input",
+ "4xa8tD": "Photos selected and uploaded to Dropbox mobile app.",
+ "4xnnkX": "For individuals",
+ "4xsFGe": "Make unsynced folders online only instead?",
+ "4xzuPe": "Sharing {folder_name} with everyone\u2026",
+ "4yW5KI": "It\u2019s too difficult to use",
+ "4yeYeh": "Invitation requested",
+ "4yry+r": "Automatically save email attachments in a Dropbox folder. Learn more",
+ "4z5v4p": "Access on multiple devices",
+ "4zAxCS": "Create a template",
+ "4ziLHH": "Add personal account",
+ "4zm4LM": "from {author}",
+ "4zp/yg": "Content in their account can be transferred to someone else until {date} using account transfer.",
+ "4zpQ9B": "Can\u2019t show content because you\u2019re not signed in to Dropbox.",
+ "5++/yV": "Your password should be at least two bars",
+ "5+9m9k": "Plus button",
+ "5+Wabe": "View on dropbox.com",
+ "5+jfNE": "All {number} members will be signed out of dropbox.com immediately\n so that the new session length can be applied.\n Note: The new session length will also apply to your current session,\n but we won\u2019t sign you out.",
+ "5/3C++": "You can manage DWG files without installing software. The latest version is accessible any time, anywhere with the AutoCAD Dropbox extension.",
+ "5/EnWV": "Add recipients",
+ "5/am2Y": "You don\u2019t have permission to do this. Please contact the owner.",
+ "5/avqn": "Use space on your hard drive to download Dropbox files and access them offline.",
+ "5/j7Qg": "Choose how members can use apps like Dropbox Paper and Google Docs in Dropbox",
+ "50+STL": "Re-insert your key and click \u2018Retry\u2019",
+ "513aYe": "Read-only shared folder",
+ "519UDU": "All teams",
+ "51G+fg": "To find out more about contacting Google or Apple for a refund, view our help content here.",
+ "51a7k3": "e.g. Archive DDMMYY",
+ "51fE2B": "How do you want to use Dropbox?",
+ "52BZxH": "Something went wrong",
+ "52Ivlt": "Two-factor authentication (2FA)",
+ "52VMWr": "{standard_name} provides teams with {space} of storage, and simple sharing and collaboration tools. For teams needing more storage and security, Advanced provides as much space as your team needs in addition to sophisticated admin, audit, integration and security features. Learn more about our plans here.",
+ "52Wsye": "To add more space, contact support.",
+ "52mY3R": "Sent requests",
+ "52zjhS": "{folder} cannot be chosen.",
+ "5397LL": "Make company managed?",
+ "53LkGW": "(including {tax_rate,number,::percent .##} tax)",
+ "53d++8": "The icon for a shared folder",
+ "53oUlv": "Upload folder",
+ "53qu9V": "Showing your suggested items",
+ "53xa16": "View exports",
+ "54ECav": "Active Directory and SSO integrations",
+ "54GkZd": "Edit DWG files in your browser",
+ "54w1+J": "Continue without restarting",
+ "55vuOC": "Leave plan",
+ "56rPsP": "Processing...",
+ "5749s5": "What is the Dropbox badge?",
+ "5794tP": "by you",
+ "579xSI": "An email address must contain a single @",
+ "57Urpb": "Unknown",
+ "57YaoK": "{count, plural, one {Members of this file with the link can view. Expires in {count} day. Downloads disabled.} other {Members of this file with the link can view. Expires in {count} days. Downloads disabled.}}",
+ "58/Bbj": "Linked accounts",
+ "589DbP": "Items you don\u2019t own in a shared folder",
+ "58JJSJ": "Team overview",
+ "58eLFf": "Please enter an email address",
+ "58lbTC": "More",
+ "58p894": "Files added to this folder are automatically saved as PDFs.",
+ "59/vBg": "{app_name} is connected",
+ "591VwJ": "BETA",
+ "59ju9v": "Collect files from anyone",
+ "5B2AGb": "Upload cancelled",
+ "5B2t2s": "Instant download",
+ "5BFb4l": "Coming soon",
+ "5C96eC": "The admin dashboard puts key sharing information at your fingertips",
+ "5CP+rv": "You\u2019ll only be able to access this content on dropbox.com",
+ "5CpaY6": "To team",
+ "5Cpjgg": "Google sign-in",
+ "5CrwwQ": "Edit file request",
+ "5D+GvS": "Accounts",
+ "5D05V/": "You\u2019re automatically signed out of a team after 30 minutes. You can sign in again on the teams page from your enterprise console.",
+ "5DWVzm": "This device is signed in to another account. Switch to continue upgrading {email}",
+ "5Dr7st": "Cancel",
+ "5ELZSM": "Search {folder_name}",
+ "5FDJco": "Files that members don\u2019t use often will become online only. To turn this on, set your new files to default to\n online only. Members can change this setting.",
+ "5FN1CX": "{count, plural, one {Restore {filename} and {count} more item.} other {Restore {filename} and {count} more items.}}",
+ "5FcUkH": "Not now",
+ "5FskM+": "How to manage third-party apps on Dropbox",
+ "5GaS5k": "Change name",
+ "5GgiMD": "Password",
+ "5HQ3Bn": "Community forums",
+ "5HW1PC": "Choose from Dropbox",
+ "5HeZ3q": "Your Dropbox plan does not support this feature. Contact support for help",
+ "5HvwcJ": "Create and edit with Paper",
+ "5IUNcF": "{name} edited {relative_time}",
+ "5IllzP": "Set limits for how widely company files can be shared",
+ "5JRhFM": "Shutter speed",
+ "5K8k8j": "{count, plural, one {Anyone in your {trademark_business} team with this link can edit the file. Expires in {count} day. Downloads disabled.} other {Anyone in your {trademark_business} team with this link can edit the file. Expires in {count} days. Downloads disabled.}}",
+ "5KI56r": "Business address",
+ "5KdZmA": "Account",
+ "5KppPY": "A {dropbox_paper} document that shows two pictures of triangular prisms, a to-do list and two users collaborating at the same time.",
+ "5Kyedz": "Legal link",
+ "5KzRdQ": "{count, plural, one {Your new total will be {recurring_amount_including_tax} {per_period_text} for {total_licenses} licence going forwards. These changes will be applied as of your next billing date on {next_billing_date_string}.} other {Your new total will be {recurring_amount_including_tax} {per_period_text} for all {total_licenses} licences going forwards. These changes will be applied as of your next billing date on {next_billing_date_string}.}}",
+ "5L6jWh": "How Dropbox can support distributed work",
+ "5LjMEI": "We have resent the verification email to {email}. Check your inbox.",
+ "5Ls4UX": "\u2022 Enterprise console",
+ "5M1EyM": "What do you want to do with your existing files?",
+ "5MHDrd": "Only basic ASCII characters allowed",
+ "5MIGec": "Modify policy",
+ "5MPoJZ": "Upload another file",
+ "5MpLpV": "Expand share menu",
+ "5MsV0g": "I found another product I liked better",
+ "5N4vbB": "{name} moved {single_item_name} out of {src_folder}",
+ "5N7Pbb": "Click to enter password",
+ "5N8Df0": "{space} of space",
+ "5NWG7E": "If you change from Dropbox {currentPlan} to Dropbox {plan}, we\u2019ll charge you {proratedPrice} now. Charges will continue until you cancel, and previous charges won\u2019t be refunded unless it\u2019s legally required. {paymentInfo}",
+ "5Nekbe": "Page down",
+ "5P/+As": "Add any new files to your Dropbox",
+ "5P2fve": "250-499",
+ "5P3u5r": "Cancel upload",
+ "5Pnscd": "Cancel",
+ "5QFuHw": "Dropbox Rewind: undo accidental edits",
+ "5QiL0e": "Don\u2019t cancel",
+ "5RccSl": "Search",
+ "5Rmc1x": "X.509 certificate",
+ "5SXeZ6": "Save \u2018{name}\u2019 to my {team_name} Dropbox",
+ "5SrwUf": "32-bit:",
+ "5SxLyr": "You\u2019re changing to monthly billing. From {date}, your monthly total will be {recurring_total}.",
+ "5TCC4p": "Optional for",
+ "5UAie+": "Done",
+ "5UPrH9": "{service_name} contacts",
+ "5Uq4ka": "You don\u2019t have access to this folder",
+ "5Uwag4": "Link settings",
+ "5VbSig": "Please enter URI",
+ "5VrbkU": "File created",
+ "5WCb5f": "Try free for {trial_length} days",
+ "5WIYfo": "Approved list",
+ "5WLZ45": "Learn more",
+ "5WdAIs": "{name} edited {single_item_name}",
+ "5WfGnr": "Manage and pay for all accounts with a single bill",
+ "5WxhYC": "You won\u2019t be able to add any new files to your Dropbox",
+ "5XHSTE": "It looks as though there weren\u2019t any files held for this export. Try adjusting what content to include.",
+ "5XVoEE": "Reset password for {username}",
+ "5XX+/p": "Updated in the last day",
+ "5XYKiF": "Deletion",
+ "5Xbdn9": "Why Dropbox?",
+ "5Xw/20": "Allows teams to have multiple admin roles, each with a different set of permissions.",
+ "5Y9/iJ": "Activities",
+ "5YZf5a": "We weren\u2019t able to move some folders. Please try again later.",
+ "5Yz17H": "Add a {opposite_type} record instead",
+ "5Yzfj9": "Couldn\u2019t change access. Try changing access again.",
+ "5Z9j+l": "Create folder",
+ "5ZIiEq": "Add a more detailed description...",
+ "5ZXdxv": "We'll send a link to:",
+ "5ZcdXx": "From {date}, we\u2019ll charge you {scheduled_total} per year on your IBAN ending {last4}.",
+ "5Zg9Wn": "Deadline date",
+ "5aSWgz": "Centre",
+ "5aW4Ew": "Termination.",
+ "5agcni": "Next, run the Dropbox daemon from the newly created .dropbox-dist folder.",
+ "5bCD2a": "{plus} + {evh}",
+ "5bfZE4": "An expiry date disables a link on a specific date to help keep your files secure.",
+ "5bg3kl": "{team_name} will keep all content",
+ "5biQq5": "A business customer story and their experience with Dropbox",
+ "5btQJ9": "Open Canvas",
+ "5c+qgK": "{count, plural, one {You restored a previous version of {count} item in {folder_path}} other {You restored a previous version of {count} items in {folder_path}}}",
+ "5cuQBA": "Membership requests",
+ "5dI3gl": "Invite team members",
+ "5dcT/i": "{space_quota} of space",
+ "5dt0hu": "Can\u2019t save changes. Reload the page and try again.",
+ "5e94v2": "Unstar",
+ "5eLA6l": "You\u2019ve already requested a change to your plan. If you want to choose a different plan or billing period, first cancel your pending change.",
+ "5eeuA4": "Error creating transfer. Please try again.",
+ "5f2aok": "Unknown error",
+ "5fYyzZ": "This increases the chance of data loss.",
+ "5fgW0C": "Dimensions",
+ "5gFHRh": "Details (optional)",
+ "5glAir": "Review your plan options.",
+ "5gs3Xk": "Teams in federation",
+ "5hDtmD": "Cancel",
+ "5hFsVX": "Based on previous activity and file type",
+ "5hU2HW": "Released ({size})",
+ "5hVLiZ": "Make user managed",
+ "5hturn": "Please enter an email address.",
+ "5hvit0": "{price} per year",
+ "5iMHN2": "Unlimited API access to productivity platform partners",
+ "5ijoNK": "Cancelled successfully",
+ "5ixcGr": "Team folder permanently deleted.",
+ "5jNXHY": "Do more with {trademark_business}",
+ "5jX6yK": "Can't upload at the moment. {name} is low on space.",
+ "5kJrVX": "Postcode",
+ "5kLCln": "Traffic and insights",
+ "5kVa+2": "Subject",
+ "5kXXnY": "In January 2017, we introduced simplified new plans: {standard_display_name} and\n {advanced_display_name}. You are currently receiving the enhanced admin and security\n features of {advanced_display_name} to try for free, giving you the opportunity to decide\n which plan is best for your team in an upcoming renewal.",
+ "5kny8Y": "This email is already taken Sign in or reset your password.",
+ "5kwt9p": "Cannot export at the current time. You can export the hold once it\u2019s finished being updated.",
+ "5lA34q": "In order to continue creating a team, please confirm you own {new_email} by clicking on the verification link we just sent you.",
+ "5lNaXH": "Effect of Amendment.",
+ "5lYzNi": "Submitted file",
+ "5llsM2": "This alert is triggered when an unusually large amount of data is deleted in a short period of time.",
+ "5loFC4": "Expand",
+ "5lxkC0": "Your request to join the team was sent successfully! Redirecting...",
+ "5lyqwg": "You\u2019ve been invited to join {manager_name} ({manager_email}) on a Dropbox Family plan! Once you create an account or sign in, you\u2019ll be able to join the family.",
+ "5nBf6U": "You are following {folderName}.",
+ "5nJ4h3": "{space} of space with easy-to-use team management and collaboration tools.",
+ "5nUe54": "Allows team admins to sign in to the Dropbox accounts of members of their teams.",
+ "5nb+Tf": "{alertName} edited.",
+ "5o/1NY": "Edit",
+ "5o/LXe": "Revenue driving",
+ "5o2guN": "Here\u2019s an even easier way than drag-and-drop to move lots of content into Dropbox.",
+ "5oJ/ON": "Continue with cancellation",
+ "5oeOjG": "There was a problem adding your reply. Please try again.",
+ "5oiJ9b": "Suggest files",
+ "5ojLcX": "Your {trademark_business} plan will change to {plan} immediately, and you\u2019ll be refunded any difference. Your new {schedule} total will be {scheduled_total}, starting on {date}.",
+ "5ojTma": "\u2193",
+ "5pKEiG": "Your Dropbox account is full. To add this file, remove some files or ask your admin for more space.",
+ "5pVU6R": "New emails",
+ "5peL6S": "Submit a help request",
+ "5q97ZA": "Let everyone know",
+ "5qHjxe": "PM",
+ "5qPot/": "Try it for free",
+ "5qn8BD": "\u2013",
+ "5qtD+j": "Update Paper sharing settings, change the name of your Dropbox and much more.",
+ "5r7/Jv": "Can\u2019t show content because something went wrong.",
+ "5rAGUE": "Customise table",
+ "5rX/EF": "Link copied.",
+ "5rfGLn": "Subscribe",
+ "5rflXu": "Check out a preview",
+ "5rn8IP": "Limited member",
+ "5s/k4Z": "With {trademark_business}, you get even more security and collaboration features for your team. These additional features include {vacuuming_policy_max_days}-day version history, more space, email and chat support, and admin management tools for better control and visibility. Compare {trademark_business} and {trademark_plus} here.",
+ "5sdJC6": "{discount}",
+ "5t5m0I": "Sign-in failed. If you\u2019d like to sign in with Apple again, see how in our Help Centre. You could also sign in with your Dropbox account email address and password.",
+ "5tal7W": "Teams",
+ "5tpMRl": "Link not available",
+ "5uIAGo": "Everyone in {team_name} can view",
+ "5uOM5W": "Invited by {admin_name}",
+ "5uj4/u": "Centralised admin console to view and manage all of your business teams at the same time",
+ "5ujupL": "Note: {firstname}\u2019s settings can only be changed in the members page.",
+ "5up237": "An error occurred. Please reload the page.",
+ "5utoYv": "Dropbox Showcase",
+ "5vKcIC": "Localised data storage",
+ "5vUoeT": "{value, plural, one {{value,number} hour} other {{value,number} hours}}",
+ "5vnnd+": "Get your team in sync",
+ "5voD+S": "Cannot change role. This is the last team admin in this team.",
+ "5w32MB": "Where you work",
+ "5wJAeB": "Click here to describe this folder and turn it into a Space",
+ "5wQTp4": "Saving to your {team_name} Dropbox...",
+ "5wz9WX": "Contact Dropbox support",
+ "5x1uwg": "Created",
+ "5x5g3C": "{quotaTb,number} TB",
+ "5xbZh7": "Your shortcut {filename} was created in {folder_name}",
+ "5xjUoq": "",
+ "5y46L2": "Once it has been downloaded, double-click the installer",
+ "5yGE9V": "Or",
+ "5yOp5p": "Decline",
+ "5yjSod": "Change {name}\u2019s role",
+ "5yqgPL": "This lets members share links with people who aren\u2019t in the team Dropbox account. ",
+ "5z5P+5": "Most recent activity",
+ "5zARtW": "More about restore & delete",
+ "5zcAiD": "OK",
+ "5znXHf": "Bear in mind that your admin can update these settings",
+ "6+01wL": "This is an invited member",
+ "6+PaTo": "{count, plural, one {Anyone in your {trademark_business} team with this link can view the file. Expires in {count} day.} other {Anyone in your {trademark_business} team with this link can view the file. Expires in {count} days.}}",
+ "6/4o4V": "{count, plural, one {{name} and {count} other edited this file} other {{name} and {count} others edited this file}}",
+ "6/5hwp": "Multiple people",
+ "6/Iap6": "Turn off alert?",
+ "6/NfP1": "I agree to the Dropbox Terms, {tosTitle},{br}and the Automatic Renewal Terms above",
+ "6/TVPV": "Disbanded",
+ "6/zH1E": "These devices have been unlinked from your work Dropbox account.",
+ "6/zf2a": "Bring ideas to life with Paper",
+ "60A6Qz": "Please wait a few days for your plan to be updated.",
+ "60BabM": "Not enough space",
+ "60HSB/": "Loading",
+ "60fyL6": "How would you like to use Dropbox?",
+ "60pkl0": "Looking for something?",
+ "60uLrP": "Empty files cannot be previewed",
+ "60y/BJ": "Linear design rises from two computers.",
+ "61HjAX": "Make sure they have access to the right files",
+ "61WE1q": "{count, plural, one {This app will be removed from exceptions. It will follow the default permission for whether your team can connect apps not listed in App Centre.} other {These apps will be removed from exceptions. They will follow the default permission for whether your team can connect apps not listed in App Centre.}}",
+ "61fdHZ": "Verify email",
+ "61gAy5": "Sent by {display_name}",
+ "625HOw": "Dropbox {plus}",
+ "62TVke": "Bonus type",
+ "62pp19": "Comment will only be posted to Dropbox.",
+ "62wFTu": "Cancel",
+ "63Ko03": "File recovery is a way of restoring or recovering data lost through accidental edits or deletion. You can restore deleted files or folders, pieces of lost data, or even an entire hard drive.",
+ "63QQsG": "Total prices quoted include applicable taxes.",
+ "63yvS7": "File uploaded to Canvas",
+ "64H9hl": "Hide advanced",
+ "64zb8l": "To make sure we've got your email address right, we have sent a message to {email}.",
+ "650lWu": "{count, plural, one {{name} and {count} other} other {{name} and {count} others}}",
+ "65CdVw": "Auto, fired",
+ "65Ne4W": "This folder is too large",
+ "65RS70": "People can edit and comment",
+ "65ZjuM": "You successfully deleted the team.",
+ "65o/uD": "Click the button in your email to use Paper",
+ "65pLwc": "Date",
+ "667KM+": "Something went wrong. Please try again later.",
+ "67McYW": "{folder_name} shared with members of {parent_folder_name}.",
+ "67dTIZ": "Only admins can invite and manage team members",
+ "67epwi": "Request files",
+ "67fhSx": "Group name",
+ "67r41E": "Business admin support",
+ "689FPX": "The invitation could not be sent.",
+ "68E+K/": "Success! Redirecting you to Dropbox...",
+ "68FvXZ": "{price} per user per month",
+ "68Z9NX": "Error: 500",
+ "68aru0": "Before you start, close any open files. And please bear in mind that apps and certain file types can\u2019t be moved.",
+ "68bbMz": "Everything in Standard",
+ "68wybz": "You're already connected to {service_name}",
+ "69RiKK": "{price} (taxes included)",
+ "69SlWr": "We can\u2019t calculate the total size of this folder at the moment. This can happen when there is a large number of files inside the folder or if the request takes too long.",
+ "69o7Zu": "{description}",
+ "6A4kNh": "{width} x {height}",
+ "6A8hcH": "We\u2019ve downgraded your plan. If you want to keep using {trademark_business}, please add your billing information now and pick up where you left off.",
+ "6AEdAt": "Your member folder is where you can put personal files. Organise this space however you like. Put things here that you don\u2019t want to share with everyone, such as your works in progress.",
+ "6AHSKo": "Oops! We couldn\u2019t find a Dropbox account matching that email address. Click here to create one.",
+ "6ASmGo": "Please unlock your vault before attempting to add to this folder.",
+ "6AZUzG": "Why do I need to enter my credit card for the free trial?",
+ "6AoXUC": "Sync everything",
+ "6BH1uF": "{vacuum_days} accident, theft and disaster recovery",
+ "6BPanm": "Something went wrong. Try it again, or contact us on the Help page.",
+ "6BRq9E": "Authentication history",
+ "6BVmpd": "IBAN",
+ "6BcuWT": "Last downloaded {when}",
+ "6BjFCt": "{professional_vacuuming_policy}-day version history",
+ "6BnQtC": "Add custom backgrounds and logos",
+ "6ByNKu": "Make user managed?",
+ "6CBCBg": "upload to your personal Dropbox",
+ "6CCjcR": "{display_name} won\u2019t be able to manage team settings, remove and uninvite users, or upgrade the team to {trademark_business}. Are you sure you want to continue?",
+ "6Caba5": "Shared with",
+ "6Cn3Fl": "Failed to load pricing information.",
+ "6D/3E5": "Tell us how we can help",
+ "6DJJvT": "home",
+ "6DcoJb": "Automatically back up your desktop, documents and more, directly to Dropbox.",
+ "6E27tG": "Open with Dropbox Preview",
+ "6E7uyE": "Is my payment secure?",
+ "6EGy57": "This gives you two accounts \u2013 your {work_email} account for {team_name} work\nand your {personal_email} personal account for your existing files.",
+ "6EYOIQ": "See live updates",
+ "6EcMoR": "Set password",
+ "6EcS+/": "Go back",
+ "6EjTiu": "Host team name",
+ "6F77Z/": "Please follow the instructions there once it does.",
+ "6Fed5y": "How does sharing and collaboration work with {trademark_business}?",
+ "6GvPYk": "{count, plural, one {{name} edited {count} item} other {{name} edited {count} items}}",
+ "6H0ibg": "Keep your team organised with folders",
+ "6ICjSW": "OK",
+ "6IKSeQ": "We can\u2019t rewind that. Try again, or contact support.",
+ "6IaH2e": "Too expensive",
+ "6J0O1e": "{count, plural, one {{count} result} other {{count} results}}",
+ "6J7JFw": "Archived (unable to edit archived versions)",
+ "6JMMuo": "Select a shared folder or link",
+ "6K4ty0": "Current session",
+ "6KAeEf": "There was an error updating your passcode. Please try again later.",
+ "6KD+lb": "Spreadsheets",
+ "6KOkmn": "Each link tracks insights and sales metrics from wherever it is posted.",
+ "6Kpd/N": "Support tickets",
+ "6Krfx1": "Avoid paying for two subscriptions",
+ "6Krty+": "Cannot select folder. Please try again later.",
+ "6LShhL": "Show your best work, right from Dropbox",
+ "6LyZk0": "Save",
+ "6MBUKk": "Your favourite tools are now in Dropbox. Just choose a file, click Open with and take your pick of the tools.",
+ "6MC56E": "I\u2019d like to share an existing folder",
+ "6MJeaA": "Copy",
+ "6MO4fY": "Please verify your email before sending a request to connect",
+ "6NsS9w": "purchase now",
+ "6O9OEr": "Are you sure you want to remove owner permissions from {user_name}?",
+ "6OArwV": "Summary of card purchase",
+ "6OUwIN": "Failed to download.",
+ "6OXw94": "F",
+ "6Okhjr": "Plan your meals for the week. Keep track of what you\u2019ve got in the cupboard, what you need to buy and how to prepare your favourite dishes.",
+ "6Ooe3V": "How would you like to receive your security codes?",
+ "6P6oA4": "Easily access your team\u2019s work from your computer, mobile device or any web browser.",
+ "6PE8Aj": "Not shared",
+ "6Pdy0A": "Learn how to manage cookies in Google Chrome.",
+ "6Prbzr": "You\u2019re currently on a free {billing_schedule} {start_plan}. If you continue with your current plan, your {billing_schedule} total will be {recurring_total} after your free trial ends on {date}.",
+ "6PtBSH": "Trello",
+ "6QMoj7": "Need to make a change?",
+ "6QvQDC": "Deadline today at {time}",
+ "6QvwvW": "Link accounts",
+ "6RFMXO": "Check your inbox to finish updating your email.",
+ "6RN1GG": "Your current plan",
+ "6RXThu": "Lock files when editing to prevent unwanted changes and avoid conflicting copies.",
+ "6RXx/7": "Renaming undone.",
+ "6RZ/mF": "Copy this link and share it with {email}. They\u2018ll need to add your email address and ask to merge into your team.",
+ "6S9h2c": "DocuSign helps organisations connect and automate how they prepare, sign, act on and manage agreements. As part of its cloud-based System of Agreement platform, DocuSign offers eSignature so users can sign electronically on practically any device, from almost anywhere, at any time. New users get 10 free envelope sends.",
+ "6SDr7W": "Passwords must contain 6 characters or more. Good passwords are hard to guess and use uncommon words, numbers, symbols and uppercase letters.",
+ "6SiEMm": "After purchase, all of your files and folders will remain private unless you choose to share them with your team.",
+ "6T0SgL": "You\u2019re about to cancel {trademark_business} and disband the {team_name} Dropbox team",
+ "6T6/7h": "You can still choose a default editor in your Dropbox settings.",
+ "6TLfgh": "To set it up, turn off Passwords for your team. Find out more about HIPAA",
+ "6TZnes": "We\u2019ll scan content in team folders and label the files that contain personal information (also called personal data or PII). After the first scan, you\u2019ll get alerts if someone shares personal information outside the team. You can also create reports of all labelled files.",
+ "6Tvcqg": "Security settings",
+ "6U3vWl": "I understand that I\u2019ll have to sign in to Dropbox again on my computer",
+ "6Uqbll": "Save",
+ "6V/0tc": "Dropbox needs to verify your email address {email} before you can subscribe. It\u2019s as simple as clicking the link in the verification email we send you.",
+ "6V1zsr": "Is this regarding a cancellation or refund request?",
+ "6V7StD": "Hi {first_name}, we\u2019re sorry you\u2019re thinking of leaving {dropbox_family}. Do you mind telling us why? We might be able to help.",
+ "6VV85R": "Store and sync",
+ "6Vgz8b": "Only admins and group managers can change team folder membership.",
+ "6VnReU": "Colours",
+ "6WO97g": "As a user management admin, they can add or remove members from their team only. They can also do some basic tasks, such as managing groups.",
+ "6WOQfa": "Remove",
+ "6XieeI": "Informational",
+ "6XrNim": "Review...",
+ "6YT7wY": "orange",
+ "6Yc3rI": "Paste a link, and a detailed preview of the doc appears in the channel.",
+ "6Z3AkD": "Edit backup phone number",
+ "6ZAdx/": "View version history",
+ "6a1Rvf": "{count, plural, one {You renamed {count} item in {folder_path}} other {You renamed {count} items in {folder_path}}}",
+ "6aVZjI": "Watermarking your file\u2026",
+ "6aphVB": "lol",
+ "6b1uxi": "Creatives",
+ "6bImhw": "Sign in or to join your team on Dropbox.",
+ "6bRQ0U": "Done",
+ "6cNXJ3": "Add team members",
+ "6cQLSf": "Compare now",
+ "6cRVYz": "Warning",
+ "6cTz+x": "Now there\u2019s an easier way to move files into Dropbox \u2013 give it a try! We suggest that you move your Documents and Desktop folders, but feel free to pick anything you want. After the move, your stuff will live in your Dropbox folder and will be backed up securely to dropbox.com.",
+ "6dQcFd": "Unassigned",
+ "6e+m4u": "Adding shared folder...",
+ "6eSBFO": "The Dropbox Migration Assistant is an early access feature that makes it easy to migrate content to your {trademark_business} account from external drives, network shares and local file servers.",
+ "6ejtCb": "Your Dropbox {plus} plan was activated with a licence key. The plan is active until {date}.",
+ "6elmWe": "Mention someone",
+ "6fTvLO": "Begin setup",
+ "6fY6dL": "Already part of the team",
+ "6fja9U": "We\u2019ve finished recovering your files",
+ "6fxQ8q": "How does Paper integrate with Dropbox?",
+ "6g9u3x": "For each folder, select whether you want to share it with everyone who joins your Dropbox team. Anyone who previously had access to a folder will still have it.",
+ "6gF5ZF": "{count, plural, one {and {count} other} other {and {count} others}}",
+ "6h098p": "Control",
+ "6hVcgB": "Sign out of {browser} on {os}?",
+ "6hxm2u": "Not permanently deleted",
+ "6i37Wu": "Uploading {file_name}",
+ "6iQNae": "Download ZIP",
+ "6iUkVh": "Link will work for 30 days",
+ "6iWjEZ": "Download",
+ "6ia961": "External participant",
+ "6imIqV": "You\u2019re out of licences. Ask a team admin to add licences.",
+ "6ivAqf": "Company-managed",
+ "6jDtY9": "Help with syncing",
+ "6jTAhn": "Sorry, we can\u2019t load your ticket at the moment. Go back to the main page or try again",
+ "6kG9iu": "{count, plural, one {Download ({count} part)} other {Download ({count} parts)}}",
+ "6kdzvy": "Oops, something went wrong",
+ "6kmVkY": "{plan_name} plan",
+ "6kvA3u": "Edit and eSign PDFs.",
+ "6lJC1Y": "Billing postcode",
+ "6lbCLp": "Can I share files or folders with Basic/{trademark_plus} users if I\u2019m on a Business account?",
+ "6llddE": "We couldn\u2019t process your logo.",
+ "6m85k6": "Add to my member folder",
+ "6mg61h": "Press",
+ "6mqD/l": "{displayName} (you)",
+ "6mv1vT": "These folders will start as unsynced.",
+ "6nXDyt": "Yes! Please contact our sales team for more information. To provide the discount, a sales rep will need a copy of your 501(c)3.",
+ "6naKSh": "Great job! You\u2019ve almost finished.",
+ "6npKfP": "Addl. space",
+ "6oKVMW": "Have total control of shared links",
+ "6ooIhn": "Learn more",
+ "6opUf+": "99 years is the maximum",
+ "6osJwj": "Moderate",
+ "6ot4Xq": "{count, plural, one {Update {count} item} other {Update {count} items}}",
+ "6p7phI": "Passwords must contain 6 characters or more.",
+ "6pHgup": "e.g. 2019, 2020, 2021",
+ "6pMHV/": "Open Outlook",
+ "6pMrax": "Continue to items",
+ "6pY1SH": "Compare plans",
+ "6q1DsP": "Track views and downloads",
+ "6q467U": "Disconnect",
+ "6qKq/l": "Can\u2019t get to your courses right now. It should work later.",
+ "6qeTlr": "Organise and store signed documents automatically",
+ "6r35Th": "Gmail",
+ "6sDIou": "Manage multiple accounts",
+ "6sVXnz": "Text me the link",
+ "6sq4gU": "Ticket no. {ticket_id}",
+ "6stS1v": "Remove {device_model}",
+ "6sxDgy": "Active ({size})",
+ "6tNFBX": "Upgrade to work without limits",
+ "6tPzCg": "{price}/year",
+ "6ttZq5": "Sign-in location",
+ "6u3Wb2": "Select a payment type",
+ "6ujmko": "Share easily",
+ "6uu1c6": "Mobile access to keep valuable photos out of your camera library",
+ "6uwoJY": "Comment and annotate on files",
+ "6v0ESe": "Import Google contacts",
+ "6vBnWP": "Add folder",
+ "6w/KDv": "A confirmation email is on its way. Whenever you\u2019re ready, you can sign or send documents directly from Dropbox. You can even access Dropbox documents from your HelloSign account.",
+ "6w0ltk": "Verification email sent to {user_email}",
+ "6wETc+": "{count, plural, one {You were removed from {count} item in {folder_path}} other {You were removed from {count} items in {folder_path}}}",
+ "6wKAib": "Suspend member",
+ "6wSDP/": "If we need more info, we will follow up with you if\nyou included your email address.",
+ "6wTYJs": "Share a folder from your {team_name} Dropbox",
+ "6wVQkn": "Share link",
+ "6x0O+q": "They can access your files through the content page and they can sign in as any member in your team.",
+ "6xuQhu": "{count, plural, one {{count} day} other {{count} days}}",
+ "6yNlKf": "Thanks for signing up.",
+ "6ySAyw": "Licensed members get collaboration, sharing and security features.",
+ "6ya16w": "{count, plural, one {Try free for {count,number} day} other {Try free for {count,number} days}}",
+ "6ycN76": "Disconnect",
+ "6yehkM": "Unverified",
+ "6z63dh": "Link copied. Allows viewing.",
+ "6zUzuL": "Add from Dropbox.",
+ "6zbwL7": "Students",
+ "6zzZgm": "Create link",
+ "7+62hr": "Nice work setting up Dropbox for your team.",
+ "7+ns4J": "Size",
+ "7/Cv18": "Enable or disable Showcase, and limit what people can do with a showcase",
+ "7/Il8r": "or drag files here",
+ "7/JG7q": "You\u2019re not a member of this group, or it doesn\u2019t exist.",
+ "7/M9u2": "Upgrade",
+ "7/f5Vp": "Couldn\u2019t share, but it might work if you reload the page and try again.",
+ "7/jIQh": "We found this unusual activity in {team_name} Dropbox.",
+ "7/kbQP": "Create more with {dropbox_plan}",
+ "7/qGqI": "Please log in as {email}{br}to change your plan.",
+ "7/wZyi": "{userFirstName} can view, download and comment",
+ "70+xsG": "{count, plural, one {You need {count} more licence to import everyone in the CSV.} other {You need {count} more licences to import everyone in the CSV.}}",
+ "700Sbl": "Accessed from",
+ "700pg6": "Preparing files...",
+ "70A4h1": "If you exit without adding a PIN, those files won\u2019t be moved into your vault.",
+ "70WThr": "Edited",
+ "70fmfY": "Team folder name",
+ "71oXUo": "We\u2019re working on it",
+ "71wBuf": "No campaigns match filter",
+ "722XFg": "There was a problem starting your HelloSign trial. Please go directly to hellosign.com to start your trial",
+ "72JtuO": "Save changes?",
+ "72eFzo": "How do you want files stored?",
+ "730g/L": "You can\u2019t delete files from this computer because\n it\u2019s running an old version of Dropbox",
+ "73DZh+": "Couldn't send invitation. Try the invitation modal",
+ "73IpwD": "{extension} files can\u2019t be previewed at the moment.",
+ "73id4F": "Why should my team keep {trademark_business}?",
+ "74EU+T": "Your files and folders will look the same as they did before {date} at {time}.",
+ "74emIA": "Notification options for \"{folderName}\" have been set",
+ "75Ji2R": "Open sidebar",
+ "75p4CK": "Cancel",
+ "76AF1h": "Save to {team_name} Dropbox",
+ "76Ae2R": "Set custom space limit",
+ "76PuUS": "It looks as though you don\u2019t have any support tickets currently",
+ "77Nv0Y": "inclusion",
+ "78AHo5": "Save",
+ "78c7ji": "Verify your domain",
+ "79/WF/": "What can you do?",
+ "79DV5K": "Add licences",
+ "79P0Wl": "An older version of a file",
+ "79oZSg": "{count, plural, one {{count} user} other {{count} users}}",
+ "7Au+O9": "You can add your payment information now, so that your subscription will be renewed automatically when it expires",
+ "7BIy0C": "Create new account",
+ "7BjdGB": "More about teams & admins",
+ "7DvFoA": "This alert is triggered when a team member shares a file that contains sensitive information.",
+ "7E+ZlW": "Unlink all teams",
+ "7E4VWP": "Create shortcut in...",
+ "7E5yD4": "{file_extension} files can\u2019t be previewed. Downloads must be enabled to share.",
+ "7EEE7z": "Anyone with the link can view this file",
+ "7EJCsH": "We\u2019ll charge your iDEAL account.",
+ "7EmbCV": "You\u2019ll get an alert if someone shares malware with your team.",
+ "7FImp3": "Deliver files without using Dropbox storage space",
+ "7Fcxtx": "Space used: {space_usage}",
+ "7Fz7qP": "Current plan",
+ "7G52p4": "Priority email and phone support",
+ "7GHMsg": "This file type isn\u2019t supported.{line_break}For best results, select a PNG or JPG file.",
+ "7GlqMJ": "Preview",
+ "7GmJbG": "As much space as your team needs",
+ "7H2qkE": "Purchase",
+ "7H4sbU": "Created on {date,date,::MMM d, yyyy} at {date,time,::hhmm}",
+ "7HaAgB": "Hide preview from buyers.",
+ "7II8Vq": "{numOfPurgedFolders, plural, one {1 folder was permanently deleted by a member. Don\u2019t worry, all of the contents were already past their retention dates.} other {{numOfPurgedFolders} folders were permanently deleted by a member. Don\u2019t worry, all of the contents were already past their retention dates.}}",
+ "7ITdJ0": "Learn more",
+ "7IVEXg": "Get to all of your files and share them with anyone, from anywhere.",
+ "7Isi2J": "This link isn't quite right",
+ "7Iw06C": "Reason for cancelling (optional)",
+ "7J6IUj": "This file is a package file and can\u2019t be uploaded directly. To upload a package file via the web, try zipping it first.",
+ "7JfaDL": "No one has worked on this file in the past 3 months.",
+ "7Ke97p": "You do not have permission to edit this folder.",
+ "7KlMwN": "Unlock vault",
+ "7M7SRT": "This email can\u2019t be deleted.",
+ "7N2lmu": "Item",
+ "7NLYW8": "The HelloSign integration has been disabled by your admin.",
+ "7NTTlT": "after last activity",
+ "7NYfYb": "YOUR ITEM {name} IS READY TO BE SHARED!",
+ "7Ni7Qd": "Send large files \u2013 up to 100 GB \u2013 securely to any recipient, even if they don\u2019t have Dropbox.",
+ "7O5q1R": "Graphs and charts display incorrectly",
+ "7O9HTU": "You have removed your own access to this file.",
+ "7Oex9C": "Post",
+ "7OxRhv": "Please enter your surname",
+ "7P/SUF": "There was a problem unstarring {item_name}",
+ "7PIeoi": "Two-step verification security issue",
+ "7QAlX9": "This visualisation is an animated illustration that shows a blue serpent shape slowly filling up with red colour until it overflows. It\u2019s meant to playfully illustrate being out of Dropbox storage space.",
+ "7QBrxY": "Move right",
+ "7QTXwc": "In folder",
+ "7QwtIs": "Yes, I\u2019ve removed the malicious software",
+ "7Qzez9": "accessible on any connected device",
+ "7R2/qq": "Does Paper integrate with other applications?",
+ "7R7Sto": "Link copied.",
+ "7RW/1O": "{space} of cloud storage",
+ "7RiLQx": "How to fix common issues with Selective Sync",
+ "7RnoYO": "Slide {index}: {status}.",
+ "7SMyL2": "Talk with a real person in minutes during business hours",
+ "7SjgaG": "Disconnect",
+ "7TAO2F": "Third-party integrations",
+ "7TFFg+": "You successfully verified {domain} and its subdomains. Onboarding accounts with @{domain} emails will now be faster and easier.",
+ "7TJxA6": "You can earn more space by referring your friend to Dropbox! You\u2019ll get a {referral_amount} bonus when they install Dropbox on their computer.",
+ "7TnyoB": "Go to Dropbox",
+ "7TujdZ": "{count, plural, one {{count} file} other {{count} files}}",
+ "7V5b6j": "Deleted {time_ago} by {name}",
+ "7V9Fkg": "{count, plural, one {Anyone with the link can view this folder. Expires in {count} day. Downloads disabled.} other {Anyone with the link can view this folder. Expires in {count} days. Downloads disabled.}}",
+ "7VEMQ1": "Your team no longer has full use of the admin console. To keep using {trademark_business}, add your billing info now.",
+ "7VEW7B": "Plans & upgrades",
+ "7VEvCe": "We just sent an email to {email}. Click the button in the email to verify your address and finish adding your secondary email address. If you can\u2019t find the email, check your spam folder.",
+ "7VGYSH": "OK",
+ "7VLSWU": "Delete permanently",
+ "7VN/eT": "{monthly_price} per user per month",
+ "7VY1E1": "Off, no flash function",
+ "7VYYNS": "Don\u2019t cancel",
+ "7VaQw6": "Change photo",
+ "7W2jrM": "Folders in the shared workspace have stopped syncing and no new files can be added. To get more space, upgrade to {trademark_business}.",
+ "7W9Igi": "Learn more",
+ "7WqO2X": "Get started with your personal Dropbox",
+ "7WtSQw": "Admins",
+ "7X70ZB": "Remind me later",
+ "7XPZDG": "Link your Dropbox content to projects, tasks and team to-do lists.",
+ "7XPmFF": "Something went wrong. Please close this window and try again.",
+ "7XWgdi": "{value} TB",
+ "7XqkzT": "Need more time to decide?",
+ "7Y7wHx": "SUSPENDED",
+ "7YQq8z": "Try reloading the page.",
+ "7Yab1V": "{count, plural, one {Couldn\u2019t paste {count} item.} other {Couldn\u2019t paste {count} items.}}",
+ "7ZfcJ/": "Add members to '{'group_name'}'",
+ "7a3rOL": "Note: these packages install an open-source helper application. The version of this application does not change as frequently as the main Dropbox application. These packages will always install the latest version of Dropbox for Linux.",
+ "7a4yA6": "Their docs will appear as \u201c.paper\u201d files on their computer, and they can then move them around just like any other file.",
+ "7a6RSM": "Help with teams and admins",
+ "7aBsbD": "Add any email address that ends in {headDomains} or {lastDomain}",
+ "7aCRDJ": "Drop files and folders here",
+ "7aMkcz": "How should new files be downloaded to your computer?",
+ "7af/KI": "This Dropbox is only for work, and {name} will have admin control over this account",
+ "7aqxgu": "Choose folder",
+ "7bN4Js": "Looking for details on another plan?",
+ "7bObr8": "{count, plural, one {As a member of the parent folder listed below, {member_name} can still view \u201c{content_name}\u201d.} other {As a member of the parent folders listed below, {member_name} can still view \u201c{content_name}\u201d.}}",
+ "7bV9ju": "Edit group",
+ "7bp3ep": "Start your {trial_length}-day free trial now!",
+ "7cHGzY": "{name} viewed",
+ "7dFy6j": "Updating\u2026",
+ "7dSNRZ": "Invited {user_count} people.",
+ "7djceN": "You\u2019ve already requested a plan change. If you want to choose a different plan, first cancel your pending change.",
+ "7dyBPz": "Archived",
+ "7e4omg": "{team_name} admins can now update this setting",
+ "7eTQm2": "deleted app folder",
+ "7g1fqE": "The average user stores a mixture of photos, videos and documents. When you\u2019re setting up a backup plan \u2013 either to save device space or preserve files \u2013 it\u2019s hard to gauge how many photos and videos 1 terabyte of data can hold. 1 TB gives you the option of storing roughly:
250,000 photos taken with a 12MP camera;
250 movies or 500 hours of HD video; or
6.5 million document pages, commonly stored as Office files, PDFs and presentations. It\u2019s also equal to 1,300 physical filing cabinets of paper!
",
+ "7g5z54": "Create with Dropbox Paper",
+ "7gH+Ao": "Outlook",
+ "7gnJT/": "Remove everyone in {team_name}?",
+ "7gpSOV": "Save space now",
+ "7gy6vP": "You\u2019re upgrading to a {trademark_business} {plan} plan for the remainder of your free trial. Your new {schedule} total will be {recurring_total}, due on {date}.",
+ "7h/xn+": "Password strength",
+ "7hrPpV": "Authentication",
+ "7i9KhQ": "You\u2019re not waiting for anyone to join at the moment.",
+ "7iNoCk": "Manage admins and members in the organisation.",
+ "7iXo5j": "Send securely with Dropbox Transfer",
+ "7ivi5Y": "You started a Dropbox {plus} trial via the iOS app.",
+ "7jFHaC": "You\u2019ll become part of the primary team, and merge your content, members and billing.",
+ "7jU61l": "All done!",
+ "7k/CMy": "You\u2019ve tried to log in too many times. Please try again in a few minutes.",
+ "7kQoXu": "Organise and track work from start to finish. Help your team stay updated on who's doing what.",
+ "7kYVzF": "Something went wrong.",
+ "7kgsyk": "Cancel change",
+ "7kj19u": "{index}. Sign up",
+ "7lAnTg": "No matching user",
+ "7lc6X0": "Times shared",
+ "7lciQm": "External sharing",
+ "7lwk8l": "Asked to join on {joinRequestStateDate}",
+ "7mFZKN": "Your admin set your institution domain. To use a different institution this time, enter the domain above.",
+ "7mcdEU": "To unfollow, visit \"{folderName}\".",
+ "7mjTSW": "Agree",
+ "7mpbMB": "How to sync files between computers",
+ "7mzX/k": "Dropbox Paper admin tools",
+ "7nKLv9": "With the Paper desktop app, you can manage tasks, run meetings and move your projects forwards. Available now on Mac and Windows.",
+ "7nUdHD": "You don\u2019t have permission to manage membership of this folder",
+ "7nlCJP": "Permanently delete team folder?",
+ "7nnCz9": "Shared folder",
+ "7ns7JF": "Due on {day,date,::MMMdd} at {time,time,::hhmm}.",
+ "7oDUUP": "Couldn\u2019t create report.",
+ "7oJ2Rp": "No schedule",
+ "7obT6s": "Unknown error when sending push notification",
+ "7ojjS8": "There was a problem. Please reopen the add member window",
+ "7oqHAY": "Invite-only access",
+ "7oxXPt": "To link your computer, you need to enter a security code. Enter the security code generated by your mobile authenticator app.",
+ "7pLIpL": "Licences",
+ "7pTLBy": "{trademark_plus} trial {ios}",
+ "7qCjrJ": "Create an account or sign in to accept",
+ "7qt4kq": "We\u2019d love to hear from you",
+ "7r0nc8": "You\u2019re cancelling your scheduled changes. Your {trademark_business} {plan} plan will be renewed on {date} and you will be billed {schedule}.",
+ "7r1Wq8": "Reset your PIN",
+ "7raSCH": "Full name",
+ "7rgxnM": "Folder",
+ "7rjTvN": "The gifted subscription will begin after the recipient\u2019s current subscription expires.",
+ "7rk24L": "{count, plural, one {{dropbox_basic} only supports 1 device. Upgrade to {dropbox_plus}\n to stay signed in to more than 1 device at a time.} other {{dropbox_basic} only supports up to {count} devices. Upgrade to {dropbox_plus}\n to stay signed in to more than {count} devices at a time.}}",
+ "7rnsEt": "Activated on {activated_date}",
+ "7sBDNd": "Refund request",
+ "7sFPiN": "Added \u201c{folder_name}\u201d Learn more",
+ "7sVO1G": "{count, plural, one {Sent in {count} day} other {Sent in {count} days}}",
+ "7scpW3": "Link",
+ "7sx9IB": "New hold",
+ "7t1Y5l": "Request e-signatures with DocuSign",
+ "7tTy3M": "Single sign-on (SSO) integrations",
+ "7tWmUr": "You won\u2019t get an alert if a member shares sensitive information outside your team. You can turn off scanning and labelling separately if you want.",
+ "7ta/tB": "Required",
+ "7u/Z5D": "Credit card",
+ "7uyY2y": "Import CSV",
+ "7v6dcE": "{count, plural, one {Anyone with this link and the password can view the file. Expires in {count} day. Downloads disabled.} other {Anyone with this link and the password can view the file. Expires in {count} days. Downloads disabled.}}",
+ "7vgBww": "How satisfied are you with the Family Room folder?",
+ "7w7C+H": "Ask to join",
+ "7wBihs": "Companies using {trademark_business}",
+ "7wbXbV": "Start free trial",
+ "7wz7Ok": "Set to default",
+ "7xDVJJ": "If you cancel your plan, your computer backup will remain available but it\u2019ll be limited to the {basic_space_short_form_gb} storage quota of the {dropbox_basic} plan. If you exceed your quota, automatic backups will stop.",
+ "7xM4Ul": "Privacy & Terms",
+ "7xQbH0": "You added this file",
+ "7xX0jJ": "Feedback",
+ "7y+Tal": "when billed yearly",
+ "7y/t8n": "Point your phone camera at your computer until the download starts.",
+ "7yJWDx": "Link expired, request a new one.",
+ "7yrmLd": "Dropbox needs to verify your email address {email} to enable your Public folder. It\u2019s as simple as clicking the link in the verification email we send you.",
+ "7z4nSY": "Your current plan details (trial ended on {locked_date})",
+ "7zpJoc": "Control access to your transfer by setting an expiry date and password.",
+ "8+T625": "Export",
+ "8+Vj2S": "You\u2019ll get everything in your{br}Dropbox account",
+ "8/Jo8j": "Configure the details",
+ "8/w9ir": "Create new file",
+ "807W+j": "The folder name can\u2019t start with a dot (.)",
+ "80S+yG": "{displayName} \u00b7 Invited \u00b7 Resend invitation",
+ "819C/n": "{name} shared this file with {entity}",
+ "81JfmS": "Ask the community",
+ "81NCFj": "Get the app",
+ "822J3q": "Nothing, they won\u2019t be deleted forever or hidden. Only the owner can delete these items permanently.",
+ "825yNA": "Artist",
+ "82QKyx": "From",
+ "82TDDR": "Collapse",
+ "82WU9J": "Anyone in your Dropbox team with this link can view the folder.",
+ "82iDDY": "{name} download has been paused",
+ "83SsJ1": "{domainsCount, plural, one {Save yourself some work and let people with an {domains} email join your team automatically.} other {Save yourself some work and let people with {domains} emails join your team automatically.}}",
+ "84NDsw": "You don\u2019t have permission to change the settings on this folder.",
+ "84r4yx": "They can join by invitation only",
+ "84rx9D": "Get Dropbox for work",
+ "84tBCx": "Get help in minutes by chatting with Dropbox support",
+ "85BIRm": "There is no data available from the past 90 days.",
+ "85a6yC": "Revoke all",
+ "85eDyB": "{first_name}, here are some Dropbox accounts you can join to work better together.",
+ "85p8vn": "One or more names or email addresses you entered are invalid.",
+ "868B4V": "Continue",
+ "86SUHm": "If you'd like to use a different account to manage your team, you can",
+ "86nreK": "Drop files and folders here",
+ "875e4O": "To",
+ "87FcVM": "Back to admin console",
+ "87faBp": "Connect Canvas to your Dropbox account to easily attach files to courses or submit assignments without switching apps.",
+ "87vAZJ": "you@mail.co.uk",
+ "88ah3M": "Help us improve Dropbox Vault",
+ "88tm6t": "Contact sales",
+ "897rw5": "Closed requests",
+ "89Buqa": "Delete permanently",
+ "89T3/H": "Create",
+ "8A5tqO": "Enter your security code",
+ "8AK5Pp": "Please enter a phone number",
+ "8ArX24": "Open on Dropbox",
+ "8BEeyh": "How to cancel/refund your subscription",
+ "8BMTr0": "Send files up to 100 GB with Dropbox Transfer, including additional customisation options",
+ "8Blp1K": "{intended_recipient} was given access, but you\u2019re signed in as {user_email}.",
+ "8BpVBE": "Confirm delivery with download notifications",
+ "8BygYK": "14 logos that represent the companies that integrate with Dropbox.",
+ "8C0qsm": "You\u2019ll be able to download any of this content by double clicking",
+ "8C6Dyg": "Average",
+ "8CPGr0": "By user type",
+ "8CU33U": "When a new device or browser signs in to your Dropbox account, you\u2019ll get an email straight away with everything we know. To figure out if this was you, have a look at the email:",
+ "8DDD1m": "1 hour",
+ "8DYgdR": "Oldest devices (by last activity) will be removed and disconnected to fit limits",
+ "8Ddcdc": "Channel partner",
+ "8Dtg9+": "BETA",
+ "8EBzlA": "Invite people to your team and start using your shared workspace to organise and access files easily.",
+ "8EZlSa": "{count, plural, one {Anyone in your Dropbox team with this link and the password can view the file. Expires in {count} day. Downloads disabled.} other {Anyone in your Dropbox team with this link and the password can view the file. Expires in {count} days. Downloads disabled.}}",
+ "8Eo5OI": "We\u2019ll send them your request, or untick the team if you want to continue on your own instead",
+ "8FZe3I": "Acknowledged",
+ "8GWs/W": "W",
+ "8HLRwx": "Download the installer",
+ "8HepWx": "Updates every 8 hours",
+ "8Hvsub": "Partial",
+ "8I3UCo": "This file cannot be previewed. Please check that your file extension is correct.",
+ "8Izk7L": "{sharedFolderCount, plural, one {Shared {sharedFolderCount} folder with you} other {Shared {sharedFolderCount} folders with you}}",
+ "8J+4aQ": "PayPal transaction ID",
+ "8J2bi3": "Create report?",
+ "8JgKqx": "Moderate",
+ "8JpgPh": "Unsynced",
+ "8L6T7O": "Save",
+ "8LdEP+": "Block",
+ "8LzcOp": "Let members send messages, share files and meet over video conferencing directly from Dropbox.",
+ "8MPV7A": "See all results for \u201c{query}\u201d",
+ "8MQcfN": "From {date}, we\u2019ll charge you {scheduled_total} per month on your iDEAL account.",
+ "8Mptnf": "Collect files from multiple people, even if they don't have a Dropbox account, while keeping file submissions visible to you only.",
+ "8N7KT8": "{count, plural, one {Restored {count} file.} other {Restored {count} files.}}",
+ "8NCBLs": "There was an error sending your link",
+ "8NRsMQ": "Delete item",
+ "8Nu/kD": "Admin tools and extra security",
+ "8O0P9k": "Under Cookies, select Don\u2019t block cookies.",
+ "8O9Ml7": "Your team\u2019s collaborative workspace",
+ "8OTJco": "Data retention",
+ "8OW3yL": "Team admins",
+ "8OkWFM": "Choose a new 6-digit code that you\u2019ll use to unlock your vault.",
+ "8OxgrK": "Keep your business on track",
+ "8PCF0I": "Custom schedule",
+ "8PKqBc": "Require a physical key to be plugged in to your USB port to sign in.",
+ "8PPImn": "Creating view link...",
+ "8PW7Kh": "Send and receive faxes online. Covers 70+ countries.",
+ "8Ppp84": "Opacity",
+ "8QIhOs": "You work hard for your clients. Dropbox works hard for you.",
+ "8QjKPo": "Everything at your fingertips \u2013 on any device",
+ "8QrZLM": "Choose how you\u2018d like to connect",
+ "8QvHCJ": "Free trial will end on {date}",
+ "8R/Iui": "{name} moved this file",
+ "8Rak3x": "(To choose your own account, please sign in.)",
+ "8SI5mc": "{count, plural, one {You and {count} other viewed} other {You and {count} others viewed}}",
+ "8T61hZ": "members",
+ "8TCdrR": "Try eSignatures by HelloSign",
+ "8TImcP": "Start a transfer",
+ "8TIme3": "Import CSV file",
+ "8TOnv7": "Are you sure you want to delete {filename} from your Dropbox?",
+ "8TOykk": "Settings saved.",
+ "8TnhFk": "Users",
+ "8U/qbn": "Share with Dropbox",
+ "8U6hwT": "{count, plural, one {You cannot have fewer licences than team members, and your account has {minPlanLicenses} licence by default.} other {You cannot have fewer licences than team members, and your account has {minPlanLicenses} licences by default.}}",
+ "8UD/7h": "To see who can access a folder, check here.",
+ "8UO4DP": "Your team will get free access soon.",
+ "8UcRmi": "Fired, red-eye reduction, return not detected",
+ "8UuB5I": "Alerts by severity over the last 7 days",
+ "8Uwt1Z": "Get a quick overview with a glance",
+ "8WOGDU": "Your Dropbox {professional} plan will be converted on {conversion_date}. Your {period} total will be {price} (including taxes).",
+ "8X8aMD": "Ctrl + z",
+ "8XBryx": "Active",
+ "8XPgxq": "Remote device wipe",
+ "8XbArc": "Tips for {trademark_business}",
+ "8XnuVp": "Everyone\u2019s files",
+ "8YUt40": "Change PIN",
+ "8YeSj9": "HR",
+ "8YsFcN": "Your account will be merged into the {team_name} Dropbox account, where you\u2019ll have\na private area for your stuff. {team_name} admins will be able to manage your files and Paper docs.\n{team_name} has disabled Smart Sync, so you\u2019ll be signed out of Dropbox and\nonline-only files will be downloaded to your hard drive next time you sign in.",
+ "8Yy3df": "Pinned 3 days ago",
+ "8ZSwph": "Enterprise admins can manage your team\u2019s files and see team activity to help investigate issues.",
+ "8ZnYLu": "Item name",
+ "8a8x3p": "You can continue using Dropbox with your team, but you\u2019ll be losing:",
+ "8aL8p/": "{credit_type} ending in {last_4}",
+ "8ajQZb": "These devices and browsers are signed in to your account. If any listed below are no longer in use or they look unfamiliar, you should sign them out.",
+ "8bWrbN": "Restore",
+ "8bsdjD": "Two astronauts bobbing up and down on top of a golden road leading into outer space.",
+ "8btGV1": "Clone campaign",
+ "8cKJMG": "We couldn\u2019t find a Dropbox account matching the email address {email}. Sign up for a new account or get help signing in to an existing account.",
+ "8ciQRL": "I understand that our team can\u2019t leave the organisation unless an enterprise admin removes us",
+ "8cyvqx": "Open the desktop app",
+ "8dJybY": "Your {trademark_business} plan will change to {schedule} billing immediately, and you\u2019ll be refunded any difference. Your new {schedule} total will be {scheduled_total}, starting on {date}.",
+ "8ds+MV": "All team admins",
+ "8e1IBP": "Sharing time",
+ "8e6dNr": "Unlock editing",
+ "8e8X2Q": "{name} added this file",
+ "8eIJRU": "Ready to edit?",
+ "8eL0jH": "Fired, return detected",
+ "8eZVYB": "Please agree to the Dropbox Terms",
+ "8eZfi5": "Limit the use of certain Dropbox features on members\u2019 phones and tablets.",
+ "8eiYiI": "Choose who can add people to folders.",
+ "8fJdJ4": "Share this file",
+ "8fj+Bq": "Starts as unsynced",
+ "8fuytD": "Preview",
+ "8gVsSR": "{count, plural, one {{name} moved {count} item into this folder} other {{name} moved {count} items into this folder}}",
+ "8gmJYG": "Please select an issue that you need help with from the list below:",
+ "8gpuN1": "Couldn\u2019t set to your default workspace. Please try again later.",
+ "8grOst": "Un-acknowledge",
+ "8h+ZVh": "Protect work in Dropbox",
+ "8hDEqq": "{count, plural, one {This app will be set to block, preventing your team from connecting it to Dropbox. This won\u2019t disconnect the app for any team members who already have it connected.} other {These apps will be set to block, preventing your team from connecting them to Dropbox. This won\u2019t disconnect the apps for any team members who already have them connected.}}",
+ "8hnMBh": "Reason",
+ "8hyMaE": "Connect",
+ "8i5CD2": "We can make sure files stay protected \u2013 however you decide to share them.",
+ "8j6sBp": "Renaming",
+ "8jiOi9": "You\u2019ll be refunded for your remaining subscription",
+ "8jjoFh": "You are already connected to this team",
+ "8k8t2N": "Download and install the Dropbox desktop app on your computer",
+ "8kGMMY": "To",
+ "8kcKrE": "Edit now",
+ "8kcx/V": "This link was created by {display_name}. To manage access to the file, sign in as this member.",
+ "8lAMhk": "deleted video",
+ "8lI61Z": "Single sign-on",
+ "8ltwDt": "Templates",
+ "8lzhuK": "Security",
+ "8m53T6": "Upload file and try",
+ "8mQgTV": "In the top right-hand corner, click Tools {settings}{chevron_right} Internet options {chevron_right}Privacy {chevron_right}Advanced",
+ "8mUNoz": "Kick-start your team\u2019s next project",
+ "8mkUdI": "You may need to check spam or unblock no-reply@dropbox.com.",
+ "8nB2Fu": "Not authorised to browse {path}.",
+ "8nJFgX": "Sync files across your devices",
+ "8nZWnh": "Enter a valid group name",
+ "8nsyYY": "Last edited by {createdUserName} on {creationTime}",
+ "8o4LmU": "You have unsubscribed from the file.",
+ "8o9wUX": "See all deletion and version history of your files for an unlimited period of time.",
+ "8oHG0B": "{item_name}",
+ "8oKDb5": "Invite friends",
+ "8pL0xd": "Collect ideas and connect all kinds of files in a single doc.",
+ "8pOPp+": "Your free trial period won\u2019t be affected. You will be charged after your free trial ends on {trial_end_date} and your plan will transition without interruption.",
+ "8pTIBW": "Email a Dropbox file as a link via Microsoft Outlook",
+ "8ph+84": "Cancel",
+ "8puerm": "Free up hard drive space automatically by moving inactive files to the cloud.",
+ "8qoK+u": "Get mobile app",
+ "8qrqD1": "Send for signature with HelloSign",
+ "8r0I1I": "You\u2018ll no longer merge with {primary_team_name}, and both teams will remain separate.",
+ "8r1z6a": "Share",
+ "8r3ApF": "Paper desktop app",
+ "8r3iOB": "Both Smart Sync and Selective Sync can help you save space. Selective Sync is an older feature that allows you to choose files and folders to sync with Dropbox. Synced files take up hard drive space, and everything you don\u2019t sync can\u2019t be seen or opened on your computer. With Smart Sync, you can choose to make files \"online only\". Online-only files take up practically no space on your hard drive, but you can still see them, rename them, move them and preview them on your computer \u2013 just like normal files. And when you need them, just open them and they\u2019ll be synced automatically.",
+ "8r7g2J": "Presentations",
+ "8rOTAS": "2 GB of space and limited sharing features",
+ "8rZcLe": "If you purchased your subscription through Google Play, you'll have to request your refund from Google directly.",
+ "8rlotY": "If you remove {name}, they won\u2019t be able to see future changes to this shared folder. Bear in mind that anyone who can access the parent folder will still be able to access this folder.",
+ "8sfQMH": "{durationTimeInDays, plural, one {{durationTimeInDays} day since last modification} other {{durationTimeInDays} days after last activity}}",
+ "8sgmOk": "An unexpected error occurred",
+ "8st5dU": "\u201cHearst has more than 360 businesses. Dropbox makes a significant impact by providing a central hub for our teams to access all of the content they need from anywhere, on any device. It has completely changed the way these teams work.\u201d",
+ "8stY8L": "Require password",
+ "8tm1dH": "{count, plural, one {{count} hour left} other {{count} hours left}}",
+ "8uJf17": "{price} charged yearly",
+ "8uKnLO": "This file was skipped because it\u2019s an internal system file.",
+ "8upVNy": "You can add, modify and remove them from your Dropbox account",
+ "8vR+GP": "{count, plural, one {Only you can view via this link. Expires in {count} day. Downloads disabled.} other {Only you can view via this link. Expires in {count} days. Downloads disabled.}}",
+ "8vhXDd": "Updated",
+ "8vhrE8": "Exit without moving files?",
+ "8vkOAo": "Please note: changing your billing location could impact your applicable tax rate.",
+ "8vpbOk": "Unlimited signature requests",
+ "8w63fP": "{number, plural, one {Viewed {number,number} year ago} other {Viewed {number,number} years ago}}",
+ "8wc14X": "Here\u2019s where you can see who has access to the content you\u2019re looking at.",
+ "8wjxn4": "Remove",
+ "8x+8m0": "Open in Paper",
+ "8x9N0T": "Members of {parent_folder_name} folder won\u2019t be able to access\n {folder_name}.",
+ "8y1DkX": "Download Dropbox for free",
+ "8y1aOx": "Support",
+ "8yAvwd": "Only you have access",
+ "8yBNxI": "Collect inspiration, exchange ideas in real time and get feedback.",
+ "8yPR3T": "To use Smart Sync, you\u2019ll need to allow a system extension from Dropbox. Click Continue below, then click OK on the alert that appears.",
+ "8ybz4F": "Active session limit",
+ "8ykm0G": "Crop, rotate and fine-tune colours. Add filters and text, all from your browser.",
+ "8zDWI3": "{count, plural, one {You moved {count} item from {src_folder} to this folder} other {You moved {count} items from {src_folder} to this folder}}",
+ "8zuxGM": "Team shared folder",
+ "9+RQpr": "Which assignment?",
+ "9+Zj9K": "Campaign info",
+ "9+lBHX": "Search",
+ "9/pd+A": "/month",
+ "9/uuKb": "Remove me from this folder?",
+ "909Pdu": "Change admin role",
+ "91G0fl": "Something not working?",
+ "91fy3Z": "4 of 4",
+ "923/JO": "You do not have permission to join the family. Please refresh the page and try again, or contact your family administrator for help.",
+ "92TP40": "Disable this link on a specific date.",
+ "92Vx1f": "Can\u2019t show link. Something\u2019s wrong with this file.",
+ "92YBd9": "Paper is a single space for your team to create and share work \u2013 it displays everything from video and images to code and sound beautifully.",
+ "92rCGV": "Dropbox makes it easy to automatically back up the photos on your iPhone or Android device. When you enable camera uploads, your photos will upload to the camera uploads folder in your Dropbox account. Camera uploads also has an optional feature you can set so your photos are backed up the moment you take them, from your mobile device to Dropbox. After your photos have been uploaded, you can move them to a different folder in your Dropbox account if you\u2019d like.",
+ "92wq0F": "No file types entered",
+ "93LvA5": "There was an error sending the link",
+ "93O1Dq": "Martin-Sign-Company",
+ "93VJD1": "Go to Event details",
+ "93zKII": "You moved the {card_name} card with this file attached to {list_name}",
+ "941ynO": "Your team doesn't work with anyone outside {teamName} at the moment.",
+ "943V9h": "Select an issue type",
+ "94Vu4C": "
You removed a connected web browser, device or app from your Dropbox account. Let\u2019s change your password to ensure that only you can access your Dropbox.
{pw_policy}Learn more about how to set a strong password.
",
+ "94bfPu": "Create the file you need for the task at hand. Edits to Google Docs, Sheets or Slides are saved back automatically.",
+ "94cLJC": "Invite members",
+ "94d0Gz": "Couldn't find vault. Please check with the owner.",
+ "95OsPW": "Please enter first name",
+ "95Rtq3": "You\u2019ll get everything in {trademark}, such as 1 TB (1,000 GB) of storage space, offline file access, remote device wipe and priority email support \u2013 plus more features to make your work shine.",
+ "95l3d4": "Importing {service_name} contacts",
+ "95x9XL": "Save your email attachments to Dropbox",
+ "96Dl7E": "Combine accounts",
+ "96RMa4": "Desktop app",
+ "96Vf8l": "The desktop app syncs files on your computer to dropbox.com, so you can get your stuff from anywhere.",
+ "96hRce": "Keep passwords encrypted to protect against hacks",
+ "96hcDu": "You don\u2019t have access to App Centre with your team account",
+ "96pf9f": "Sorry, this content couldn\u2019t be requested.",
+ "96ulM9": "It doesn\u2019t look as though you\u2019re on a paid {dbx_biz} plan",
+ "97ZLPM": "The watermark could not be saved because your account is over quota.",
+ "98DfV5": "This setting is turned off for all files in this folder.",
+ "98acYM": "Communicate",
+ "992DNz": "iOS/Android",
+ "99UyMq": "Standard rates apply.",
+ "99mfpn": "You\u2019ll join the team as {email}, then you can decide which files you want your team to access.",
+ "9AK/tz": "Manage who can access Paper links.",
+ "9AyxI5": "Your shared folders and files will appear here so they\u2019re easy to find.",
+ "9B0qpj": "Accept invitation",
+ "9B60nq": "Invited {amount} users.",
+ "9BtwiW": "Team admin, user management admin",
+ "9C/lc5": "Can\u2019t @mention someone in your personal Dropbox.",
+ "9C1BM4": "You have successfully unlinked Slack.",
+ "9C6Zh7": "Click on 'Open with' and select Smallpdf to open PDFs.",
+ "9C7dis": "Previous state",
+ "9CcFdg": "Delete files from lost or stolen devices with remote wipe",
+ "9Co1fJ": "Account security settings",
+ "9DNE0x": "Check out our Help Centre",
+ "9DfCEL": "Thanks! You\u2019re all done.",
+ "9DkYwJ": "{count, plural, one {Anyone with this link and password can edit the file. Expires in {count} day. Downloads disabled.} other {Anyone with this link and password can edit the file. Expires in {count} days. Downloads disabled.}}",
+ "9E8xUP": "Go to items",
+ "9EtAz0": "Hi,{display_name} ({email}) invited you to view the file \"example.pdf\" on Dropbox.",
+ "9FCQD8": "{count, plural, one {Members of the file with this link can view. Expires in {count} day. Downloads disabled.} other {Members of the file with this link can view. Expires in {count} days. Downloads disabled.}}",
+ "9FRoAV": "2. Choose your plan",
+ "9FUQpC": "Got it",
+ "9Fi8TL": "Are you sure you want to remove the shared folder {file_name} from your Dropbox? This shared folder will stay shared with other members and you can re-add it later.",
+ "9GDOEf": "Invite your team members",
+ "9GwZlG": "Personal Space",
+ "9H6BKX": "See who downloads",
+ "9HQPwW": "Do you have any discounts for non-profits or educational institutions?",
+ "9HWjA9": "Error opening file",
+ "9I8Dg4": "Let {user_name} keep a copy of your Family Room folder",
+ "9IYzCq": "You removed {entity} from this file",
+ "9IZPhQ": "Time\u2019s up",
+ "9Ihzjr": "Show who viewed files in this folder to team members and people who can edit.",
+ "9JWHIG": "Unable to execute the required action",
+ "9Jas6o": "Date",
+ "9K9jT1": "As of your first renewal date in 2018, your plan will adopt the new Advanced plan pricing. Your new {schedule} total will be {recurring_total}.",
+ "9KVCqi": "If you cancel your plan, your account will drop from {quota} to {basic_space_short_form_gb} of space (plus any bonus space earned previously)",
+ "9Koui6": "Dropbox community",
+ "9L15vT": "Are you sure you want to remove admin permissions from {display_name}?",
+ "9LwV6I": "Access your Dropbox account from any Windows, Mac, Linux, iOS or Android devices.",
+ "9MDXgW": "To add a Dropbox team folder, you\u2019ll need to upgrade first.",
+ "9Mpjvl": "Share files & folders",
+ "9N3N8W": "If relevant, please describe the steps to reproduce this issue.",
+ "9NkAGq": "Upload folder",
+ "9Oab9R": "You purchased Dropbox {dropbox_plan} via the iOS app. Your plan will expire on {end_date}.",
+ "9OveuT": "Removed",
+ "9PMXaG": "recommended",
+ "9PRHPf": "Disabled",
+ "9Q/1TS": "Saving to your personal Dropbox...",
+ "9QCMuo": "Did you know you can request an instant refund for your account without the help of an agent? To request a refund of your subscription, sign in to your Dropbox account and click Request a refund of your Plus or Professional subscription to be taken directly to your refund page.",
+ "9QLDg8": "Safety first",
+ "9QTLF+": "Light",
+ "9R5mul": "Get Dropbox for mobile",
+ "9R9t69": "Default file browser",
+ "9RBFNn": "Star",
+ "9RkYIu": "Continue with installation",
+ "9Ru4ky": "{count, plural, one {Up to {count} member, easy family sharing and {plan_space} of storage.} other {Up to {count} members, easy family sharing and {plan_space} of storage.}}",
+ "9TDn8O": "{count, plural, one {{name} and {count} other viewed} other {{name} and {count} others viewed}}",
+ "9TLSvT": "Cancel {plan} plan",
+ "9TVXpy": "Task title",
+ "9TcKh/": "Sign-in attempt expired.",
+ "9U9gjD": "You rolled back {single_item_name}",
+ "9UOHBZ": "Custom branding",
+ "9UdVyB": "They\u2019ll receive a copy of the Family Room folder in its current state, but won\u2019t be able to see future changes.",
+ "9Ui6u2": "More than {yearsSinceCutoff}",
+ "9UmkJy": "Your request to join was declined",
+ "9V9G5m": "Cancel your Plus or Professional subscription",
+ "9VRfot": "Please add an icon for this app",
+ "9VXwXH": "Paperless signing that scales with your business.",
+ "9VlSbF": "Manual",
+ "9W0BXd": "Security codes will be generated by an authenticator app",
+ "9WMEfp": "Your computer was successfully linked to your account",
+ "9WTRXc": "Name updated.",
+ "9X/XH4": "",
+ "9XDuy+": "Can view, edit, delete, comment on and save files",
+ "9XdwOI": "Try Dropbox Plus for passwords and more",
+ "9Z4Ptj": "Items shared. Type, size and path",
+ "9Z9r19": "Dropbox is recovering your files",
+ "9ZZYrU": "We couldn\u2019t find a Dropbox account matching that email address.",
+ "9ZbCky": "Couldn\u2019t undo paste.",
+ "9ZczZk": "Can\u2019t save. Markup isn\u2019t available for this file type.",
+ "9ZqdLn": "deleted code",
+ "9Zs+OY": "\u201cProtected Health Information\u201d",
+ "9Zx9uj": "Subscribe to notifications",
+ "9a+Bwx": "Other",
+ "9a9FOw": "{folderCount, plural, one {{folderCount,number} shared folder} other {{folderCount,number} shared folders}}",
+ "9aeamM": "They should try not to use Dropbox for a bit",
+ "9alAnt": "your browser",
+ "9alsnN": "Couldn't change {name}'s role.",
+ "9arWaU": "If there is a conflict or inconsistency between the terms of this HIPAA BAA and the remainder of the Agreement, the terms of this HIPAA BAA will govern to the extent of the conflict. Except as expressly modified or amended under this HIPAA BAA, the terms of the Agreement remain in full force and effect.",
+ "9b+utM": "Send large files with Transfer",
+ "9b3/OP": "Store a token with Facebook",
+ "9b6lrI": "A guest viewed this file",
+ "9byxfZ": "Can\u2019t find it here?",
+ "9cSdtw": "Update your browser",
+ "9cj0Es": "Set a password",
+ "9eGRHz": "Drag and drop",
+ "9f3QFy": "It\u2019s important",
+ "9fCVcb": "After a meeting you host is recorded to Zoom cloud, the recording will be copied from Zoom cloud to your Zoom folder in Dropbox. We\u2019ll notify you when files are copied. This feature requires certain settings in your Zoom account to be enabled.",
+ "9fLrh/": "{count, plural, one {Skipped {count} person who is already a member of the team.} other {Skipped {count} people who are already members of the team.}}",
+ "9fMG6q": "Extended version history",
+ "9fef95": "Loading your folders\u2026",
+ "9foXwb": "Please enter your company size.",
+ "9gQpmR": "If you\u2019re an admin for a {dbx_biz} account, you can allow\n access to files synced to one top-level team folder. More info.",
+ "9h6nkS": "yourdomain.com",
+ "9hKn1S": "Filter to {folder_name}",
+ "9htZoO": "Members of the folder with this link can view. Downloads disabled.",
+ "9isGfn": "no. {ticketId}",
+ "9j1jzb": "Couldn\u2019t grant access to {requester_email}",
+ "9j7wtG": "Anyone in your {trademark_business} team with this link can view the file. Downloads disabled.",
+ "9jay6Z": "Our business is changing to {trademark_plus} or {trademark_professional}",
+ "9kKUEZ": "Years",
+ "9kVfTz": "Cancel",
+ "9kg6I+": "Changing this will rename the Dropbox folder on all team members' computers.",
+ "9lplRT": "Edit '{'group_name'}'",
+ "9lsUlB": "Name",
+ "9m9zTf": "Primary phone number",
+ "9n/oNu": "Specific team admin/groups",
+ "9n5hWh": "{explanation}",
+ "9oBl00": "Edit",
+ "9oT838": "The stuff in this space is shared with everyone in your team.",
+ "9puzWn": "To invite members with a link, add licences.",
+ "9q9Jhs": "Change plan",
+ "9qXmaf": "Any",
+ "9qoOeF": "Try for free",
+ "9s47b8": "Receipt",
+ "9s4M13": "Shared link URL",
+ "9sggQN": "Company size updated.",
+ "9skvJU": "Automatically save edits to Microsoft Office files in Dropbox, and always work from the most up-to-date version.",
+ "9suezP": "File does not exist.",
+ "9tHV6e": "Your Dropbox deployment was purchased through {reseller_name}.",
+ "9tWpFU": "We failed to bill your current billing instrument on file on {date}.",
+ "9toIi4": "Removing member...",
+ "9tpsop": "If you accept {displayName}\u2019s invitation to be a trusted contact, that means:",
+ "9tqB+r": "You must provide a valid identity provider sign-in URL to enable single sign-on.",
+ "9u9nEt": "How to recover deleted files",
+ "9uHtUs": "{display_name}\u2019s personal account isn\u2019t managed by the {team_name} team, so its contents aren\u2019t accessible to admins.",
+ "9uRzgj": "{trademark_business} Advanced Server Integration plan required.",
+ "9ug4JK": "Search activities",
+ "9v0bSQ": "Stop worrying about storage space \u2013 create amazing work without thinking about what your hard drive can handle.",
+ "9v2+SN": "Delete",
+ "9wdsbq": "The domain portion of the email address (the portion after the @) is invalid.",
+ "9xHDZe": "Continue leaving",
+ "9xLR6M": "Never mind. ",
+ "9xXIAi": "Please provide a name for the new folder.",
+ "9xak9u": "You\u2019re not syncing all of your {team_name} Dropbox folders to this computer.\n You can make those folders online only with Smart Sync.\n That way, you can easily access them and still save hard drive space.",
+ "9xgxj0": "Name",
+ "9xjlyh": "Spreadsheet",
+ "9xkxHM": "Your team no longer has full use of {trademark_business} features. Add your billing info now and you can pick up where you left off.",
+ "9xlOag": "Requests",
+ "9y4ORJ": "\u201cHIPAA\u201d",
+ "9yYWu+": "Close",
+ "9ylS0L": "Your download will still continue if you close this page.",
+ "9ynHXt": "Set your team up for success",
+ "9zBt93": "{lengthOfSelectedFolders} selected folders",
+ "9zKAIq": "Almost ready to go",
+ "9zN/0n": "Basic ({basic_storage_gb})",
+ "9zXodW": "People can view and comment",
+ "9zmM7L": "Members can share within the team and with approved people",
+ "A+7vH+": "Leave team?",
+ "A+8wXS": "Date range:",
+ "A+luT2": "Invited {user_count} people.",
+ "A+nrfT": "Send it again",
+ "A/3wcW": "To access {content_name}, choose an account",
+ "A/4awJ": "You can invite 1 member with this link. Add their name so you can track who has it.",
+ "A/96BB": "{trademark_business} users can\u2019t sign in with Apple. Please sign in with your email address and password.",
+ "A/lIV4": "30-day file recovery and version history",
+ "A/vkeo": "Don\u2019t wait \u2013 this offer expires on {expiration_date}",
+ "A01AX2": "Sign in as user",
+ "A0CVFo": "Loading more members...",
+ "A0KR8q": "Someone deleted {filename}. Restore it to keep working on your latest version.",
+ "A0ZAfU": "How much space does my team get?",
+ "A0d0gP": "File sync across devices",
+ "A0f9t6": "You can transfer content until {date}",
+ "A16uYC": "Customers",
+ "A1Asiw": "Successfully deleted the recovery token.",
+ "A1DSQ1": "Only members you select can invite people",
+ "A1E2Ar": "Anyone can invite people",
+ "A1NOlF": "Executable",
+ "A1VSQM": "Email it instead",
+ "A1tyau": "Preview files on the web and leave comments directly in specific parts of the file.",
+ "A273sc": "Cannot import. Make sure the file is in CSV format and UTF-8 encoded.",
+ "A2G0sf": "What will happen",
+ "A2X/mK": "{count, plural, one {Sending {count} invitation\u2026} other {Sending {count} invitations\u2026}}",
+ "A2cXxH": "Try for free",
+ "A3cCkZ": "Cancel link",
+ "A3vDB+": "Invitation deleted.",
+ "A41J5c": "{count, plural, one {You have selected more than {count} user, which is the maximum allowed to use this page. You can contact us to complete this order.} other {You have selected more than {count} users, which is the maximum allowed to use this page. You can contact us to complete this order.}}",
+ "A4NXzf": "When it\u2019s totally full, folders in the shared workspace will stop syncing and members won\u2019t be able to add new files. To get more space, upgrade to {trademark_business}.",
+ "A4boBS": "Duration",
+ "A4hF74": "{name} is already a {new_role}.",
+ "A4nKxB": "There was an error retrieving your account information.",
+ "A5e1nu": "Price",
+ "A5hoZ/": "Request description",
+ "A5jT3S": "
You can find more information about refunds here.
",
+ "A5xQHG": "As an individual",
+ "A6gKEq": "The Dropbox desktop folder makes it easy to stay in sync without interrupting your flow.",
+ "A79DfA": "Edit space limit",
+ "A7cFjC": "Share with these apps",
+ "A8C212": "Add a team admin from the trusted team",
+ "A8qtqw": "Drop files here",
+ "A8yD2a": "Allow members to enable camera uploads and computer backups",
+ "A9VWK1": "Got it",
+ "A9w5h2": "2-year plan",
+ "AAA4Ng": "Invoice for {name}",
+ "AAPE8r": "{num_days, plural, one {Your trial will be upgraded automatically to a {dropbox_plus} account in {num_days} day.} other {Your trial will be upgraded automatically to a {dropbox_plus} account in {num_days} days.}}",
+ "AAQLq4": "Work",
+ "AAaWbr": "The {team_name} team will be permanently deleted and all members will be removed.",
+ "AAne2J": "Sign in",
+ "AAqh+5": "The left sidebar of the app lists starred and suggested folders. The middle pane shows how to create an overview with descriptions, to-dos and @mentions.",
+ "AB91up": "Which shared folder or shared link are you having trouble with?",
+ "ABhYEq": "Deleted",
+ "ABuPQv": "Asked to join",
+ "ABwlTm": "Enter your institution\u2019s domain.",
+ "ACT/JG": "{price} / family (includes GST)",
+ "ACVnV9": "by {modified_by}",
+ "ACkjCJ": "Automatic backup and recovery protection for one device.",
+ "ACxSQZ": "Creation time",
+ "ADTv/8": "Paste a link to the event you would like to undo here",
+ "ADVAM4": "No results.",
+ "ADYm3j": "Secondary team",
+ "AEevrh": "Choose how to sync your files",
+ "AEyki5": "Top-level folders added on web start as online only",
+ "AF+/tL": "Video",
+ "AFSJ3V": "Sorry, you\u2019re not authorised to do this",
+ "AFScK8": "Send and request electronic signatures",
+ "AFh00+": "New",
+ "AGKWLu": "You need to sign in to see files and folders in your work Dropbox that may cause syncing problems.",
+ "AGXz3U": "Only the owner can move some of these folders to a team folder.",
+ "AGa70V": "Your admin has disabled this setting.",
+ "AH/PXS": "Set a password to limit access to the file via link.",
+ "AH4JT6": "There was an error while trying to pair.",
+ "AIqD3P": "Next",
+ "AJEVeE": "Anyone in your {trademark_business} team with this link and password can view the file. Downloads disabled.",
+ "AJk/mG": "You added {single_item_name}",
+ "AK0VR1": "Sign in to add more",
+ "AK48XH": "Dropbox needs to verify your email address {email} to finish updating your email. It\u2019s as simple as clicking the link in the verification email we send you.",
+ "AKCa1l": "Use and Disclosure.",
+ "AKXLQz": "Edit email",
+ "AKdTOF": "Updating folder settings...",
+ "AKmV/v": "Dedicated phone and chat support",
+ "AKoqYC": "If you turn off the system extension, it will be uninstalled and you\u2019ll\n no longer be able to use Smart Sync. You\u2019ll be signed out of Dropbox on\n all computers you\u2019ve connected. Once you\u2019ve signed in again, files\n that were set as online only will be downloaded and will take up space on your hard drive.",
+ "AKsIbN": "Max file size (MB)",
+ "AL6RgK": "{price} per month",
+ "ALMsaw": "Folder members with the link can view until {date}",
+ "ALfhls": "Create to-do",
+ "AM/h+a": "You will no longer have a subscription to {addon_name}, which currently grants you unlimited file recovery and version history. Please note that you can\u2019t add {addon_name} back once you\u2019ve cancelled your subscription.",
+ "AMQSOr": "Sign in",
+ "AMSZK+": "Names can\u2019t contain {invalid_characters}",
+ "AMTmTK": "First name",
+ "AMbVJu": "Clear all",
+ "AMcrXU": "Get Dropbox for iOS",
+ "AMi311": "New first",
+ "AN5z8K": "A place for everyone with space for everything",
+ "ANUEUs": "The names dot (.) and dot dot (..) aren\u2019t allowed",
+ "ANxsmU": "Remove yourself from \u201c{parent_folder}\u201d?",
+ "AOhoa4": "Download",
+ "AOhvcM": "No sheet to show",
+ "AP9nbK": "Info",
+ "APJefm": "Something went wrong, but it should work if you try again.",
+ "APqTeb": "An admin in your team manages these apps for your {teamName} Dropbox account.",
+ "AQ10W0": "@angela please put final version here once approved",
+ "AQNzzE": "Make them a support admin?",
+ "AQWCeu": "Store all of your signed documents in one secure place.",
+ "AR/5y3": "Someone else is making a change at the moment. Please try again in a few minutes.",
+ "AR/x0b": "No company-managed groups found",
+ "AR3sLa": "OK, thanks!",
+ "ARFmYd": "All dates",
+ "ARJeG+": "Download failed",
+ "ARYk7X": "INVITED",
+ "ARdJGs": "Upgrade to an Advanced plan to get more space.",
+ "ARfvq4": "To add this folder, you\u2019ll need {needed} of space in your Dropbox. You currently have {remaining} of space left.",
+ "ARhWBm": "Continue anyway",
+ "ARxiTU": "We have received your report and will look into it.",
+ "ASRI+S": "When a lot went wrong, undo everything by going back to any point in the last {version_history_length} days.",
+ "ASXrei": "Can I upgrade my existing {dropbox_basic} or {trademark_plus} account? How does migration work?",
+ "ASZGQ1": "Status",
+ "ASnOd4": "{count, plural, one {{name} renamed {count} item} other {{name} renamed {count} items}}",
+ "ASqQAc": "Deleted Life Vault folder",
+ "AT7ChO": "Triage",
+ "AUEkPL": "Email match: {emailDomain}",
+ "AUVVuM": "deleted disk image",
+ "AUX6bx": "Password changed successfully. Any existing sessions, devices and apps can still access your Dropbox.",
+ "AUtTf8": "Manage your payment information",
+ "AUvNZU": "Links",
+ "AUzwig": "Effective date:",
+ "AV3JCA": "Edit two-step verification",
+ "AVJ8pJ": "You\u2019ve made it this far \u2013 why not give your team what it needs to keep growing? Scale your team with the space and tools that make a good team great.",
+ "AVWuae": "Get the Dropbox that connects{br}your entire business",
+ "AVgcYn": "You will no longer have a subscription to {addon_name}, which currently grants you one-year file recovery and version history. Learn more",
+ "AVlRrQ": "Your trial will end in four days. Your account will be downgraded, and your team will lose out on {space} of space, file recovery and advanced features such as Smart Sync.{br}{br}Add your billing info now so your plan will transition without interruption on {trial_end}.",
+ "AWLWNd": "Unable to sign in. Please try again.",
+ "AWX3CI": "Renew",
+ "AX/4il": "{name} deleted {single_item_name}",
+ "AX20W0": "Connect Trello to Dropbox",
+ "AX6tzq": "This link is invalid",
+ "AXMJrf": "Add exception:",
+ "AXdltP": "Additional user(s)",
+ "AXtlaD": "Centre-weighted average",
+ "AZAqNG": "{value, plural, one {{value,number} month ago} other {{value,number} months ago}}",
+ "AZPIG5": "Copying files...",
+ "AZYIpb": "If you\u2019d like more than that, please contact sales.",
+ "AZvTRu": "JPG, PNG, GIF and more",
+ "AZyzep": "Invitations sent successfully.",
+ "Aa0IeW": "Base locale:",
+ "AaWqmt": "This gives members the option to back up photos and videos from their mobile devices automatically. Everyone will get their own Camera uploads folder that isn\u2019t shared with the rest of the team.",
+ "AbUoiK": "{name} turned off viewer info",
+ "Ac43cu": "Alternative sign-in options",
+ "AcEWpy": "Download",
+ "AcIKp8": "Dropbox {trademark_professional}",
+ "AcQYt9": "Cancel",
+ "AcTLHd": "Commenting",
+ "AdZTsb": "Please describe the issue you\u2019re experiencing in as much detail as possible to enable us to troubleshoot it faster.",
+ "Adel35": "Manage requests",
+ "Ae1ck1": "Folder name",
+ "Ae3d4k": "Create new Microsoft Office files, upload photos and scan documents straight from the Dropbox app on your iPhone.",
+ "AeXk4J": "File owner",
+ "AesiRa": "Priority:",
+ "Afbd2m": "Advanced server integration trial",
+ "AfgxjZ": "
You can find more information about cancellations here.
",
+ "Afo8TC": "See what Dropbox can do",
+ "AgUX/m": "Make content accessible to everyone, from anywhere with a company folder",
+ "Ah28BX": "HelloSign eSignatures",
+ "AhNhGX": "Invite trusted contact",
+ "AhSs9N": "No domains",
+ "Ahb+5C": "What should happen when a member disconnects a computer or mobile device?",
+ "AhcQ+n": "month",
+ "Ai+Hmi": "Dropbox Basic",
+ "Ai9G7w": "The watermark could not be saved because you do not have permission to save to this folder.",
+ "AiCsXp": "Close",
+ "AiEiIb": "The team admin and members of the team will still have access to team files and folders",
+ "Aj1Vqb": "files entry point onboarding modal",
+ "Aj5ymN": "Something went wrong. Please try reloading the add-in.",
+ "AjPrmn": "Tasks are synced from emails you star.",
+ "AjarNz": "Team folders can\u2019t be deleted.",
+ "AjkSqw": "Upgrade to {dropbox_professional} for more space",
+ "Ak0AwV": "Extremely dissatisfied",
+ "AkLAAg": "You\u2019ll lose access to all {team_name} groups. Your account will be converted to a personal Dropbox.",
+ "AkcG97": "Device tickbox",
+ "AkoOwN": "Enter password",
+ "AlSHtr": "App Centre",
+ "AlpLdm": "Get help downloading Dropbox",
+ "Am0cfD": "Choose who to share this folder with",
+ "Am0oLV": "Learn more",
+ "AmEj2/": "By confirming, all existing scheduled changes will be cancelled.",
+ "AnAwlI": "Create report",
+ "AnCJrk": "This file type isn\u2019t supported. For best results, select a PNG or JPG file.",
+ "AnTrsf": "This email is already taken. ",
+ "Anhyxs": "Gmail settings saved",
+ "Ao5Pwf": "Share a link instead",
+ "AoKm6Y": "Pending email change",
+ "AoU5JI": "It looks as though you\u2019re using an older sync feature",
+ "Ap0tqr": "{trademark_business} provides three plans to fit your team\u2019s needs. The {standard_plan_name} plan gives your team {standard_plan_size} of shared storage. For teams needing more space, the {advanced_plan_name} and {enterprise_plan_name} plans provide as much space as you need.",
+ "ApENy7": "On",
+ "Aq/UfD": "You are removing the link to \u201c{fname}\u201d created by {owner}. This link will no longer work for anyone who has it.
We'll notify {owner_email}. Do you want to continue?",
+ "AqH9gg": "Single sign-on (SSO) integrations",
+ "AqQlEF": "{pro_space} of space",
+ "AqRWwC": "Cancel",
+ "AqdxzJ": "Purchased",
+ "Aquro6": "Want to keep using Dropbox with your team?",
+ "ArB9mG": "It\u2019s not very important",
+ "ArqQYa": "The folder name is invalid.",
+ "As2n1+": "Invited by {name}",
+ "AsODc2": "{name} restored {single_item_name}",
+ "AsgwQQ": "Passwords",
+ "At94iP": "Share",
+ "AtC6hy": "You\u2019re cancelling your scheduled billing change. Your Dropbox {plan} plan will be renewed on {date} and you will be billed monthly.",
+ "AtPOo0": "Keep it separate",
+ "Au8OeU": "Plan downgrade scheduled",
+ "AuRzIq": "This app is listed in App Centre. Select Manage this app to make changes to its permissions.",
+ "AupGw5": "That\u2019s too large. Try a file that\u2019s {max_size} MB or less.",
+ "AvC4zO": "Move files",
+ "AvK1w/": "More about syncing",
+ "AvcnE0": "From a computer",
+ "AvhcCE": "Create, edit and organise Google Docs, Sheets and Slides",
+ "AvhnVi": "Team members with this link can view the folder.",
+ "AwEwo2": "Your logo should be at least 20px by 20px.",
+ "AweRvI": "Note: If you\u2019re using your Chromebook at work or school, you might not be able to change this setting. For more help, contact your administrator.",
+ "Awpyvm": "Smart Sync",
+ "AwwRIX": "The email address you entered is invalid.",
+ "Ax4+ny": "Sent!",
+ "AyD3/3": "It looks as though {email} is already in another Dropbox team. You can still invite them to your team using a different email address.",
+ "AySSOB": "Attach",
+ "Az/c9G": "Close this window and return to the Dropbox desktop app to continue.",
+ "AzElDC": "Manage members",
+ "AzRPpu": "Try for free",
+ "AzuKe2": "Simple, secure eSignatures",
+ "B+5CcZ": "Contact your admin to upgrade to an Advanced plan and get more space.",
+ "B+Z5a5": "{numInvitees, plural, one {You need more licences for this invitation. Contact your reseller to add more.} other {You need more licences for these invitations. Contact your reseller to add more.}}",
+ "B0BOfb": "Pending email change",
+ "B0FLmM": "Delete this policy?",
+ "B0Xgkz": "Add your name",
+ "B0gVcH": "Work together anywhere",
+ "B1LWln": "(your current plan)",
+ "B22YnE": "Send faxes online from Dropbox files and receive confirmation of receipt. HelloFax has international coverage to 70+ countries. New users get 5 free faxes for new accounts.",
+ "B2uHCh": "Copy this link and share it with {email}. They\u2018ll need to add your email and give you access to their admin console.",
+ "B3CC0j": "{gigabyteSpace}",
+ "B3RLyV": "There isn\u2019t a link for viewing.",
+ "B400nx": "We\u2019ll charge your IBAN ending in {last4}.",
+ "B4gFdK": "Resend",
+ "B4hIYu": "{actor_name} moved the {card_name} card with this file attached to {list_name}",
+ "B4vMzU": "They\u2019ll keep access to their own content and any folders shared with them. They\u2019ll lose access to any team folders and anything not shared with them directly.",
+ "B5Agak": "Templates for IT teams",
+ "B5C3BM": "Cancel invitation",
+ "B5Fd74": "Drag files and folders here to upload, or browse from your computer",
+ "B5WHGf": "Download this export",
+ "B5xaho": "upload to the folder \u2018{folder}\u2019",
+ "B5ygR1": "Prevent people with this link from downloading.",
+ "B69Z5q": "Everyone will be removed from this file. You\u2019ll still keep a copy of this file in your Dropbox.",
+ "B6BQW0": "Thanks for helping Dropbox improve your experience.",
+ "B6dG2q": "Billing name",
+ "B70y83": "You rewound {item_name}",
+ "B7AytW": "Unread",
+ "B7S1VF": "Suggested from your activity",
+ "B7S5UI": "To sign in again, you\u2019ll need your phone or a backup option for the second step.",
+ "B7hug6": "Reseller support",
+ "B7wMrN": "Can\u2018t sign in?",
+ "B8sL3t": "Owner",
+ "B9Dq75": "Create, store and share cloud content from Google Docs, Sheets and Slides, Microsoft Office files, and Dropbox Paper alongside traditional files in Dropbox.",
+ "B9hIv7": "Learn more",
+ "B9i1lm": "Work with best-in-class business tools",
+ "B9jSy7": "To see more information about the Dropbox pricing plans that are available, please visit our plan page.",
+ "B9kRrE": "Open in app",
+ "B9nMuZ": "What is a {trademark_business} user?",
+ "BABZhM": "Alerts policies",
+ "BBTooV": "A screen capture demonstrating the tracking capabilities within the Showcase feature of Dropbox. The user begins on a screen with their list of showcases. After clicking on the number of views, comments and downloads for a showcase, the user sees engagement information on their showcase by viewer and file.",
+ "BBhL4X": "Loading folders",
+ "BCJrz5": "Select a folder",
+ "BCNI47": "Change my Dropbox plan",
+ "BChhOI": "{count, plural, one {The {count} admin other than you will be signed out of dropbox.com immediately and prompted to reset their password.} other {All {count} admins except you will be signed out of dropbox.com immediately and prompted to reset their passwords.}}",
+ "BCyGLk": "Try again",
+ "BDDDn/": "Copy team ID",
+ "BDKipQ": "Collaborate by leaving targeted feedback on videos for your team.",
+ "BDPPA/": "Undoing move...",
+ "BDfWiD": "{sharerName} and other people we think you work with have joined this team",
+ "BDtFp+": "{count, plural, one {Copied {count} item.} other {Copied {count} items.}}",
+ "BDvzfr": "There is another pop-up window already open",
+ "BEFvHI": "Traffic and insights",
+ "BEOiVL": "Remote workshop plan",
+ "BF7J/9": "{to_email} was given access, but you\u2019re signed in as {user1_email} and {user2_email}.",
+ "BFoFQM": "Hand in assignments quickly, without having to sign in every time.",
+ "BFxzt+": "To",
+ "BGC0oW": "All members will be automatically signed out of dropbox.com every day.\n This session length might interrupt the members\u2019 workflow.",
+ "BGMJLS": "People can edit, delete, comment on and add the files to their Dropbox",
+ "BGilt5": "Archive",
+ "BGjMiE": "Add items",
+ "BGyZpk": "You do not have permission to pin to {path}",
+ "BGzgS/": "Moving files\u2026",
+ "BHATNe": "Karen J.",
+ "BHClQE": "Something went wrong. Please try again later.",
+ "BHiVSS": "",
+ "BHsBCZ": "Are you sure you want to delete {item_count} items from your team member folder?",
+ "BI7WaU": "Remove {collaboratorName}?",
+ "BIfjkX": "Welcome to {team_name}\u2019s {dropbox_business}",
+ "BIh4SD": "Your {plan} plan will be renewed on {date}. {billing_summary}",
+ "BIwxa4": "Quickly give whole departments or teams access to folders and files",
+ "BJHueE": "This can take a while. We\u2019ll email you when the report is ready.",
+ "BJJDSm": "You don\u2019t have enough licences.",
+ "BJQoka": "{count, plural, one {{count} reply} other {{count} replies}}",
+ "BK/LED": "You\u2019re already creating this report. We\u2019ll email you when it\u2019s ready.",
+ "BK7t9c": "You will need to allow Dropbox to access your account.",
+ "BKISIV": "Confirm",
+ "BKfMXQ": "{name} renamed {from_name} to {item_name}",
+ "BLAjVt": "Change sync default",
+ "BLMWP/": "Link not found",
+ "BLivWp": "See individual and team plans",
+ "BLmrgy": "Total edit time",
+ "BMQUdK": "Close",
+ "BMhlbR": "Viewing now",
+ "BNlIo5": "Deselect",
+ "BOIgzx": "Anyone in your Dropbox team with this link and the password can view the folder. Downloads disabled.",
+ "BOLnxx": "Thanks. Your feedback will help improve Dropbox.",
+ "BOj5uG": "Large grid",
+ "BPDVoc": "See how your team has used Dropbox over time",
+ "BPT3zF": "Sharing and collaboration are just as easy with {dropbox_business} as they are with {dropbox_basic} or {trademark_plus}. You can add collaborators to shared folders so they always have the most up-to-date versions of files they're working on together, or you can send a copy of a file or folder instead. Plus, with {dropbox_business}, admins can control sharing permissions and see audit logs of sharing activity.",
+ "BQ34Lf": "",
+ "BQJPmf": "{name} accounts",
+ "BR8Tap": "1 month",
+ "BRMB6V": "Content management",
+ "BROm59": "on {datetime}",
+ "BRqDy1": "Now, let\u2019s review",
+ "BSsiar": "Malware or virus",
+ "BSwIRv": "I\u2019ve changed my mind \u2013 take me back to Dropbox",
+ "BTHLkw": "{focal_length} mm",
+ "BTNaP3": "To make sure we have the right email address, we sent an email to {user_email}. Click the button in the email to start using {showcase}",
+ "BTdE3l": "Retention",
+ "BTrvIQ": "Which app is this feedback about?",
+ "BV1uZg": "Folder overview changed.",
+ "BVaBI+": "Customer console",
+ "BW7hgp": "As much space as your team needs with sophisticated admin, audit, security and integration capabilities.",
+ "BWJGoq": "Resume",
+ "BWM4PG": "Phone",
+ "BXhw+q": "Activity",
+ "BXmY1r": "We couldn\u2019t reach your phone number. If this has happened before, click here.",
+ "BXzOOL": "You don\u2019t have any recent conversations",
+ "BY+Sxv": "Members moved",
+ "BYTHdG": "{trademark_business} {scheduled_plan}",
+ "BYTz5T": "Name this export",
+ "BYkDpN": "Image details",
+ "BYmWL4": "Re-link this computer",
+ "BZ+Od4": "Why are my Dropbox files missing?",
+ "BZIYTj": "Post and preview",
+ "BZcalE": "Organise team info",
+ "BZkpj2": "Consent",
+ "BZwQbv": "Continue",
+ "BaJ3/b": "Dropbox agrees that, within a commercially reasonable period following termination of the Agreement, not to exceed ninety days, Dropbox will return or destroy all PHI received from the Customer, or created by Dropbox on behalf of the Customer. Despite the foregoing, if this return or destruction is not feasible, Dropbox will extend the protections of this HIPAA BAA to the PHI not returned or destroyed, and limit further uses and disclosures to those purposes that make the return or destruction of the PHI infeasible.",
+ "BaNqPa": "Sales call notes \u2192",
+ "BaU4v4": "Cannot convert to a Dropbox Basic account",
+ "BahKtt": "This file could not be watermarked.",
+ "BayfYG": "If you want to keep using it, why not add your billing information now and get it out of the way? It won\u2019t interrupt your free trial period, and you\u2019ll transition seamlessly at the end of the {trial_days} days.",
+ "Bb9vvF": "Get Dropbox",
+ "BbAEqS": "Solutions",
+ "BbTthn": "Package your transfer and send it over \u2013 then you can view it here.",
+ "BbVXLk": "Are you encountering any issues with this file preview?",
+ "Bbnzjx": "File browser",
+ "BcXpnh": "On",
+ "Bcojaq": "Contact support",
+ "Bcpu+z": "Toggle whether inherited members are displayed or hidden",
+ "BdUKjA": "Using {usage} of {quota}",
+ "BdgOjU": "Please enter your name and a valid email address.",
+ "Bdz08I": "By type",
+ "BerEfa": "Family Room folder",
+ "BerOfs": "Compare our plans",
+ "Bf160P": "Verify your email",
+ "BfD9wn": "Creative template",
+ "BfEAMA": "({maxCommentLength} character limit)",
+ "BffPZc": "Add search terms to improve your results",
+ "Bg2T2/": "Sticker menu",
+ "Bg4C2n": "You don\u2019t have permission to manage membership of this file",
+ "BgBbVR": "Pin to...",
+ "Bgsqmh": "For viewing",
+ "Bh1By2": "Filter by date, email and more",
+ "Bhm8Q8": "Activity in shared folders (weekly digest)",
+ "BhxxXf": "The {card_name} card with this file attached was moved to another board",
+ "BiBJqz": "Advanced security features",
+ "BihZjv": "This file hasn\u2019t been updated in the past year.",
+ "Bj8GE3": "{trademark_business}",
+ "BjAart": "Continue with trial",
+ "Bjb3rs": "{count, plural, one {Are you sure you want to attach {count} file to this email?} other {Are you sure you want to attach {count} files to this email?}}",
+ "BjqhsA": "You\u2019re all set!",
+ "BjtU1h": "Space used",
+ "BjuWgM": "Anyone in the {trademark_business} team with this link can edit the file.",
+ "BkClNB": "Low",
+ "BkKYO9": "Token refreshed successfully.",
+ "BkuRIT": "Present files with your logo, company name and a background image with branded sharing.",
+ "Bl1/Rp": "Back",
+ "Bl42Mh": "Team admin, support admin",
+ "BlFhZY": "Are you sure you want to disconnect {workspaceName}? You\u2019ll need to reconnect to this {serviceName} workspace to continue using it with Dropbox.",
+ "BlnVw/": "Remove their admin role?",
+ "BmNZ7+": "Ctrl + c",
+ "Bmep3+": "Prepare your document easily",
+ "Bmlee+": "{recurringCost} {taxRateText}",
+ "Bmo28B": "{count, plural, one {Skip this file} other {Skip these files}}",
+ "Bn45Hc": "Jumping between accounts is easy",
+ "BnxGMW": "Modified",
+ "Bo6T4v": "Remove pending member?",
+ "BoGtrT": "\u201cMy first reaction when IT implemented Dropbox was relief because I knew it would revolutionise how we work, make our job easier and make us all better at what we do\u201d",
+ "BoJi/Z": "Something went wrong. Please try again later.",
+ "BoLL3S": "Email, name or group",
+ "BoaISa": "{browser} on {platform}",
+ "Bp/TpE": "TRIAL",
+ "Bp4fPr": "Incorrect name or email address",
+ "BpPk8Q": "Custom quota must exceed 15 GB",
+ "BpSnBu": "Transfer files up to 100 GB to anyone",
+ "Bpm3al": "Well-designed, by design",
+ "Bq/2xV": "Delete file?",
+ "Bq65fh": "Please select a reason for cancelling:",
+ "Bq8Uia": "Google Pay and App Store billing",
+ "BqFPCE": "Help us make Dropbox classification smarter",
+ "BqoQS6": "Block",
+ "BqqQJn": "Collect and receive large files from anyone \u2013 right in your Dropbox account.",
+ "BrE2tZ": "Start check-up",
+ "BrIpHU": "Expiry date",
+ "BrZ+ML": "For freelancers and solo workers",
+ "BrZq/p": "Close",
+ "Brdumg": "This includes all files and folders inside your team\u2019s purple member folders. Learn more",
+ "BroQin": "Show preview with splash screen",
+ "BsLZDt": "Block",
+ "BssyWI": "Transfer later",
+ "BstyO6": "Back up important or finished files",
+ "Bti7ZJ": "Every member will get a new folder called \u201cPaper docs\u201d in their Dropbox. All of their paper docs and folders will be moved there.",
+ "BunHhw": "Your new {schedule} total will be {total}.",
+ "Bur9Rj": "{numDocuments, plural, one {Send {numDocuments,number} document for eSignature per month} other {Send up to {numDocuments,number} documents for eSignature per month}}",
+ "BvUPS9": "{count, plural, one {Added {count} item to clipboard.} other {Added {count} items to clipboard.}}",
+ "BvX9fO": "Cancel the move",
+ "BvqoGd": "Selecting a folder in your {dropbox_name} Dropbox will remove the existing deadline you\u2019ve set.",
+ "BvyC2g": "Hold name",
+ "Bw4yjs": "Uploading...",
+ "BwpcMZ": "Verification email sent to {email}",
+ "Bwr8UQ": "Create new folder",
+ "BxYl3D": "Can\u2019t find the verification email? Send another email",
+ "BxgXG2": "Just you",
+ "BxjdMG": "Didn\u2019t work?",
+ "BxyH89": "Folder history",
+ "ByrYhN": "You can\u2019t upload files from your computer after you\u2019ve chosen files from your Dropbox.",
+ "BzTN4Y": "Protect your best ideas. Add a digital watermark to any file before sharing with collaborators or clients.",
+ "Bzjp8Q": "{name} will be notified that you\u2019ve signed in to their account.",
+ "BzyzgE": "To resolve this issue, you can try:",
+ "C+1sfc": "Our Help Centre is the fastest way to get help. Select an issue.",
+ "C+6/kN": "After a certain amount of time",
+ "C+Np3r": "Templates for sales teams",
+ "C+cgdZ": "Revoke",
+ "C/EDB6": "Please enable more users for this app",
+ "C/Rlk8": "On (alert only)",
+ "C/gp+a": "Folder, {alt}",
+ "C/iu7P": "{showcase} isn\u2019t available for teams who\u2019ve signed a HIPAA Business Associate Agreement",
+ "C0CNZE": "The image used in this Prompt version.",
+ "C0Cv1B": "Create campaign",
+ "C0EJuB": "Still have questions?",
+ "C0XK4Y": "Keep your team\u2019s files and the conversations about them in the same place by connecting tools such as Slack and Zoom.",
+ "C12AhB": "Step 1 of 2",
+ "C1bQRh": "You\u2019ll find your Paper docs in Files, along with all of your Dropbox content. Recently viewed or created docs are also listed in Home.",
+ "C1kd1L": "Audio",
+ "C1x9sH": "Get {discount,number,::percent} off the usual price when you choose Advanced",
+ "C20oMk": "Edit photos",
+ "C2BKnZ": "Failed to load modal.",
+ "C2K8FK": "Manage the visibility, access and download permissions of all of your files, folders and links.",
+ "C2jCcj": "Back to Dropbox",
+ "C35LL5": "Keep your family\u2019s content safe with the latest encryption technology and robust security features. At Dropbox we have been protecting data for over a decade \u2013 it\u2019s our top priority.",
+ "C3vD8m": "Creative",
+ "C41TAx": "Attach more links",
+ "C4C3zD": "Anyone in your {trademark_business} team with this link and password can edit the file.",
+ "C4CWQC": "Link copied successfully",
+ "C4FJfI": "Sign up",
+ "C4J82N": "Not available to invite",
+ "C50rI2": "Blog",
+ "C5jY7c": "Search in App Centre",
+ "C6IfhA": "Find out how to change to an individual plan",
+ "C7+cKO": "5-year plan",
+ "C7GGQr": "Usage",
+ "C7LfmG": "Add an email address, name or group",
+ "C7Sn78": "Role",
+ "C7V9H3": "Select folders to remove from this computer",
+ "C8/58i": "Enter a new email address for your personal Dropbox. You\u2019ll need to verify your new email address in order to finish updating your personal email.",
+ "C8/FYy": "Keep everyone in sync",
+ "C8NyKM": "You won't be charged until you confirm your purchase on the next screen.",
+ "C8cYDt": "Link expired",
+ "C94zzZ": "Sync your passwords to one place across your devices. Learn more",
+ "C9D7bp": "Or, cancel your subscription by following these steps:",
+ "C9JnJZ": "My teams",
+ "C9N3eb": "Select which file versions to include",
+ "CABcgS": "Your trial has expired but we were unable to process your credit card for the Dropbox {plus} upgrade.",
+ "CAJjXO": "Please enter a valid email address",
+ "CAPfT/": "Space",
+ "CAT/px": "{name} failed to download",
+ "CAxLNf": "Please enter a valid postcode.",
+ "CB1sZR": "Start a launch plan",
+ "CBoODF": "and {number_of_more_domains} more",
+ "CC5sIb": "Extracting {file_name} to your Dropbox \u2013 {time_remaining}.",
+ "CCItA6": "Add a screenshot",
+ "CCL40r": "Upgrade to Advanced",
+ "CCUrto": "Deleted files can\u2019t be renamed.",
+ "CCmgaO": "You haven\u2019t created any shared links.",
+ "CCsjH2": "Security keys help you complete two-step verification when logging in to Dropbox.",
+ "CD+ZYc": "Folder access removed.",
+ "CDgQc9": "Please update your billing information to re-subscribe.",
+ "CEIbrX": "Setting up your trial...",
+ "CGBKot": "Active member",
+ "CGFY8N": "Give feedback",
+ "CGQ57Z": "Successfully uninstalled app.",
+ "CGZ17o": "Click 'Open with' and select Gmail.",
+ "CGyvlS": "Securely store unlimited passwords and access them wherever you need.",
+ "CHevf+": "
PLEASE NOTE: The information on this page relates to the account registered with {email}.
",
+ "CI9/rJ": "Mark all as completed",
+ "CILfa8": "We couldn\u2019t find that app.",
+ "CITqJj": "Enjoying your {trademark_business} trial?",
+ "CIbq3r": "This file type can only be shared with view access",
+ "CIfJ04": "Plan highlights",
+ "CIiM/g": "A record will be made in the activity log that you have signed in to on {name}\u2019s account.",
+ "CIqO2V": "Verify your email address at {email} to share folders and ensure that your account can be recovered.",
+ "CJT3Wa": "Choose image",
+ "CJeup7": "Your name",
+ "CJpXzt": "See who downloaded",
+ "CJtjRk": "{count, plural, one {Anyone with this link can edit the file. Expires in {count} day. Downloads disabled.} other {Anyone with this link can edit the file. Expires in {count} days. Downloads disabled.}}",
+ "CK2JPR": "Invite to join",
+ "CKJ3Xr": "Unlink or relink a computer, phone or tablet to Dropbox",
+ "CKj3RT": "Either that file was deleted or you no longer have access to it.",
+ "CKozbQ": "You\u2019ll be emailed when this product becomes available",
+ "CLvZsN": "{count, plural, one {The minimum package comes with {min_num_users} licence. You can activate your extra licence at any time.} other {The minimum package comes with {min_num_users} licences. You can activate your extra licences at any time.}}",
+ "CLzi2a": "Mac",
+ "CMJbXJ": "We're a small team that operates on the same level as a company that has a couple of hundred employees because we\u2019re using the right technology and the right platforms\u2026I collaborate with hundreds of content creators, and without Dropbox Business, collaborating would not be nearly as efficient or easy.",
+ "CMt9TG": "{count, plural, one {You\u2019ll be charged {new_amount_with_tax_rate_str} to add {count} licence for the remainder of the trial period. From {next_billing}, your new {schedule} total will be {total_amount_with_tax_rate_str}.} other {You\u2019ll be charged {new_amount_with_tax_rate_str} to add {count} licences for the remainder of the trial period. From {next_billing}, your new {schedule} total will be {total_amount_with_tax_rate_str}.}}",
+ "CNGRmj": "Centralise entire team\u2019s work",
+ "CNHOhT": "Make files online only",
+ "CNLpjm": "N/A",
+ "CNNb4+": "When you start drafting an email, you can attach Dropbox files from here.",
+ "CNPdm5": "Open",
+ "CNx4iO": "Failed to lock",
+ "COB0tV": "Supported file types",
+ "COSVBy": "Change how new Dropbox users join",
+ "COcw+E": "Once you\u2019ve added the meta tag and saved the HTML file, your domain is ready to be verified.",
+ "COtdTL": "Scheduled total licences",
+ "COuQ/F": "You turned on commenting for {entity}",
+ "CP2g4s": "Cancel",
+ "CP9OZj": "We\u2019ll let {display_name} know their account has been unsuspended. This means they\u2019ll have full access to everything in their account again.",
+ "CPIIvy": "Move items anyway",
+ "CPUBF2": "Go to folder",
+ "CQ7F9W": "Tasks",
+ "CQTi9x": "{cur_file_num} of {num_total_files}",
+ "CR+5G4": "return to the main page",
+ "CRaaPT": "{count, plural, one {You and {count} other edited this file} other {You and {count} others edited this file}}",
+ "CRu5LB": "We didn't find any files or folders in your Dropbox that will cause syncing problems.",
+ "CSR/JZ": "{trademark_business} is only intended for businesses and organisations, not for consumers.",
+ "CSRnaR": "Choose whose files to include",
+ "CTFQyD": "You\u2019re already connected to {service_name}",
+ "CTRelf": "Invitations sent!",
+ "CUEIMF": "Add your info now so you don\u2019t have to later. You won\u2019t be charged until after your free trial ends on {trial_end_date}.",
+ "CUOG9o": "Revoke access",
+ "CUmnlA": "{name} moved {item_name}",
+ "CUmyb2": "Deselect this row",
+ "CUocxO": "{name} shared {single_item_name} in {folder_path}",
+ "CVe8VC": "At the end of your trial, you will be downgraded to a free team plan. Your team will lose out on {space} of space, file recovery and advanced features such as Smart Sync. If you choose to purchase now, it won\u2019t interrupt your free trial period, and your plan will transition without interruption at the end of the {trial_days} days.",
+ "CVumiI": "My computer",
+ "CVzXRv": "Share",
+ "CWMWS0": "When a member wants to invite someone new to the team, you\u2019ll see the request here.",
+ "CWjdjE": "The specific pages within the platform on which the campaign can appear.",
+ "CX1y/7": "Dropbox Professional",
+ "CX7Qsk": "Open calendar event",
+ "CXIFxS": "The icon for a file",
+ "CXTMJd": "Dropbox is recovering {infected_user_full_name}\u2019s files",
+ "CXfPLw": "Sort by",
+ "CXm4lo": "Need help with something?",
+ "CYH8DH": "Say hello and add a message (optional)",
+ "CYHFZJ": "({start} \u2013 {end})",
+ "CYfaKX": "Edit security keys",
+ "CYkszS": "Your free trial of {dropbox_trial_plan_name} will end on {trial_end_date}. If you don\u2019t purchase {dropbox_trial_plan_name} by the end of your trial, you\u2019ll go back to {dropbox_current_plan_name}.",
+ "CYt8vZ": "connect computer to Dropbox account",
+ "CYuBjY": "Platform:",
+ "CZBH+L": "Asked to join on {requestDate,date,medium}",
+ "CZBgT9": "This increases the chance of accidental data loss or a large-scale resync.",
+ "CZC77D": "Remember to add a title",
+ "CZDfZ8": "Advanced security protects your life\u2019s work",
+ "CZcIMc": "{count, plural, one {This shared folder will be added back to your Dropbox account.{br}{br} Because this folder is shared, other people might have made changes to it since it was removed from your account.} other {These shared folders will be added back to your Dropbox account.{br}{br} Because these folders are shared, other people might have made changes to them since they were removed from your account.}}",
+ "CZcw7A": "Error importing users.",
+ "Ca6k2W": "You have an exclusive offer.",
+ "CaLU0w": "Stormcrow feature:",
+ "CaPWf4": "Opening the Dropbox desktop app\u2026",
+ "CaWcwf": "Their former team won\u2019t lose access to shared folders",
+ "CaboZW": "The maximum size for {extension} files is {size}",
+ "Cae1N7": "Get Dropbox for work",
+ "CagMem": "Upgrade now",
+ "Cc37un": "Deleting files...",
+ "CcHCln": "A team folder with this name already exists.",
+ "CclWH3": "All of your family info, all together in one place",
+ "CcpVyl": "Share",
+ "CdIseI": "the phone, you\u2019ll need a PIN.",
+ "CdjelZ": "Personal email",
+ "CdnhdL": "Password-protected",
+ "Ce6mTU": "When should we remind the user?",
+ "Ce9FpX": "Log in successful. Your browser will be redirected in a few seconds.",
+ "CeMx7Q": "Can\u2019t upload folders in Safari. Upload the files separately or try another browser.",
+ "CeW+ki": "Collaborate",
+ "CehxyY": "Images",
+ "Cf14JO": "Are you sure you want to delete {filename} from your {team_name}workspace?",
+ "CfZkFh": "After your free trial, you will be charged {plan_price} {period} until you cancel your subscription.",
+ "CfdLws": "256-bit AES and SSL/TLS encryption",
+ "Cffj+5": "you@example.com",
+ "Cfhoeq": "Change billing period",
+ "CfiPnG": "Member",
+ "CfmdLY": "See who has previously viewed your files and when.",
+ "CgREwE": "Hide link",
+ "Cgg/GQ": "Can comment",
+ "CghgW/": "Item",
+ "CgpQgI": "Support admin",
+ "Cgtj8U": "Removed from the team.",
+ "Chex7V": "Save attachment",
+ "Chf30m": "Unable to upload one or more files",
+ "Ci6LzN": "You can also set your default apps for supported files.",
+ "CiEY+j": "Next time they log in",
+ "CiHyv+": "Ensure your Dropbox security settings are up to date.",
+ "CiZnrG": "We were unable to delete the comment.",
+ "Cj1p0k": "Space earned",
+ "CjHpil": "Drag your CSV file here or{br} select it from your computer",
+ "CjMRSv": "This HIPAA BAA will expire upon the earlier of: (a) a permitted termination in accordance with this HIPAA BAA; (b) the expiry or termination of the existing Agreement; (c) the execution of an updated HIPAA business associate agreement that supersedes this HIPAA BAA; or (d) if the Customer downgrades to a Dropbox service that is not included in the Included Functionality.",
+ "Cjp7Qo": "People we think you work with have joined one of these teams.",
+ "Cjuiv2": "{count, plural, one {Remove licence} other {Remove licences}}",
+ "Ck16Gr": "Collaboration",
+ "CkJ/6V": "Assignee",
+ "CkJRtk": "Lifetime access",
+ "CkSNkV": "Customers",
+ "CkebzH": "Get a pulse",
+ "Ckv1Uz": "Ref. pages:",
+ "CkykNe": "Paperless signing in Dropbox powered by HelloSign!",
+ "CkyxPA": "Show in folder",
+ "Cl/4Rx": "{count, plural, one {{name} moved {count} item from {src_folder} to this folder} other {{name} moved {count} items from {src_folder} to this folder}}",
+ "Cl3pwT": "This feature isn\u2019t available on Internet Explorer. Please try on a different browser.",
+ "CleGDk": "Cancel",
+ "ClmYKS": "See more stories",
+ "CmFrWR": "Congrats! You\u2019ve added the extension!",
+ "CmUy7l": "Monitor team activity, view connected devices and audit sharing activity.",
+ "CnrwJR": "Powerful sharing, collaboration tools and {plan_space} of storage.",
+ "Co/4Mf": "Dropbox Smart Sync",
+ "CoNUK+": "Create product",
+ "CoSE9G": "1 million API calls/month for data transport partners",
+ "CofOK0": "You won\u2019t get an alert if a member shares sensitive information outside your team.",
+ "CpeF4U": "Create groups to share with lots of people in one go.",
+ "CpiKUF": "Text files",
+ "Cpk2oz": "Your selection reflects your current plan / billing period / add-on (space). Your {billing_period} total will not change. Your scheduled change will be reverted.",
+ "Cq5FzG": "You\u2019ll get an alert if a member shares sensitive information outside your team.",
+ "CqPhXv": "You can only email this link",
+ "CqUAV5": "Transient ID + email assertion",
+ "CqxU6X": "On {date}, your plan will change from {start_plan}, billed {start_billing_schedule}, to {end_plan}, billed {end_billing_schedule}. Your new {billing_schedule} total will be {recurring_total}.",
+ "CrQ+7O": "Request admin access",
+ "Crjkyu": "Declined on {request_date}",
+ "Crrn66": "Unlink {device_model}",
+ "Cs6e8c": "Something went wrong. Please try again later",
+ "CsgvOF": "Great! Let\u2019s change your email address.",
+ "Ct4owd": "To change your billing information, please first of all renew your {trademark_business}\n account. During the renewal process, you\u2019ll be able to choose a different payment method.",
+ "CtH5WI": "Integrated options to join a Zoom meeting or send a message on Slack to a Dropbox user profile.",
+ "CtZXhM": "Create team folder",
+ "CtlL6P": "Payments & billing",
+ "Ctm1ee": "{count, plural, one {Could not add {count} file} other {Could not add {count} files}}",
+ "Cu4KD8": "Here\u2019s your team space",
+ "CunpdT": "A copy of the BAA Agreement will be uploaded to your Dropbox once you agree.",
+ "CutXPW": "Some of these items are shared, so other people might have made changes since they were removed from your account.",
+ "CuvJqT": "None",
+ "Cv/c25": "Already member group",
+ "CvAVX3": "Archive",
+ "CvC6k9": "You\u2019re saving {savePercentage,number,::percent} per licence over the course of a year.",
+ "CvTxIw": "This alert is triggered when someone outside your team shares a malware file with team members.",
+ "CvbPIi": "Organisation admins",
+ "CvhuBB": "If you already use Dropbox, moving to a {trademark_business} account is easy! All of your content will stay the same \u2013 your files will stay where they are and all of your settings (such as shared folder relationships and linked devices) will remain the same. For admins, all of your team members who already use Dropbox will have the same experience, and anyone without an existing Dropbox account will be prompted to sign up when you send them an invitation. For Dropbox {trademark_plus} users who switch to {trademark_business}, any remaining credits will be returned as a pro rata refund to the original payment method.",
+ "CvxD0q": "Brand logo",
+ "Cw6aHE": "Not allowed by your team. Contact your team admin to connect.",
+ "CwYxp0": "Instant access",
+ "Cwkfdc": "Sampling rate",
+ "CwuFw8": "Cookies are required to view this Dropbox content. You may need to enable them in your browser.",
+ "CwzQuV": "One last step: download the desktop app to have all your files at your fingertips.",
+ "Cx9wsw": "Experience campaigns",
+ "CxRIXA": "Welcome to Professional",
+ "CxlnYJ": "{trademark_business}: {title}",
+ "Cxmbw8": "Your team is losing {space} of space, and you and your team members have returned to your initial space quotas.",
+ "Cy+7xr": "You renamed this file",
+ "CyOG7U": "Add payment method",
+ "CyRaJu": "Your Dropbox account is full.",
+ "CyuYgB": "Make them a team admin?",
+ "CyxyyA": "Folder members",
+ "Cz9tal": "Rewind to a previous time",
+ "CzRGuP": "Search for files, folders and content",
+ "D+/RyZ": "Choose a file to start",
+ "D+135/": "Edit {display_name}\u2019s space limit",
+ "D+KIIm": "The file doesn\u2019t exist",
+ "D+gjeO": "Any device",
+ "D/5sPh": "slack",
+ "D/D/vE": "New users join",
+ "D/P6Pa": "{fileCount, plural, one {{fileCount,number} file} other {{fileCount,number} files}}",
+ "D/Sn82": "Fantastic! Click here to go back to the Dropbox Support home page.",
+ "D/m9XE": "Couldn\u2018t find an answer above? Please submit a help request form so we can get in touch.",
+ "D/n9sr": "Next",
+ "D/prww": "Members must use two-step verification",
+ "D/rjjz": "You\u2019re already connected to {service_name}",
+ "D/sjzk": "{outstanding_invites} remaining",
+ "D/tUrq": "View file",
+ "D09GlF": "Resend",
+ "D0UebZ": "How branded sharing works",
+ "D0n7tP": "Bear in mind that if group members have a shared link to this file, they might still be able to view or edit it.",
+ "D0noCL": "PIN changed.",
+ "D14eS/": "Save email attachments to Dropbox",
+ "D1br1j": "Check out",
+ "D26Tzh": "Any active members of your {plan} team will be downgraded to Dropbox Basic accounts on {date}.",
+ "D2FbWd": "wizard fist bumping a rabbit",
+ "D2TAqV": "Space that grows with your team",
+ "D2VN2I": "To change who can access the link, go to the shared folder options.",
+ "D2WNWl": "You won\u2019t get an alert if a member deletes an unusually large amount of content.",
+ "D3751u": "Do you want to delete this file?",
+ "D3IxOv": "Pinned 5 days ago",
+ "D3YZN3": "Now pick up where you left off in the Dropbox app.",
+ "D3qjGs": "Charged now:",
+ "D4+6Xw": "Add an optional message",
+ "D4EFB6": "The destination folder has been deleted. Please choose another one.",
+ "D4emRA": "Verify your email to start sharing",
+ "D4rg8p": "Full deployment",
+ "D4zrFS": "I understand this can\u2019t be undone and my team\u2019s account will be completely transferred to the primary team",
+ "D5/6mK": "I no longer need this product",
+ "D5EX99": "I still want to downgrade",
+ "D5S/Kk": "Deleted Paper doc",
+ "D6kbg6": "Start by inviting your family",
+ "D6wSz0": "Create CSV report",
+ "D7t0ul": "You must agree to the Dropbox terms to turn on Paper",
+ "D82jPj": "Play, comment on and publish private and public videos",
+ "D8D6Vb": "Failed to load request.",
+ "D8K+9v": "Hide",
+ "D9+Ln+": "15-day trial",
+ "D93tst": "Enable your IT team to structure a company wiki, build a self-service knowledge base and onboard new recruits with ease.",
+ "D9XHqB": "Unable to show section.",
+ "D9l0jJ": "You ({name}) are the owner",
+ "D9yBwz": "Your local currency has changed. Your selected plan\n is {monthly_per_user}/user/month ({monthly_price} charged per month).\n You\u2019ll only be charged if you don\u2019t cancel your trial before it\n ends on {trial_end_date}.",
+ "D9zyJH": "Set to default",
+ "DA3CAk": "Make space to work",
+ "DA7PGf": "What can I do with Paper?",
+ "DAGHpK": "Having trouble installing? ",
+ "DAPFIt": "Collapse module",
+ "DB3BmC": "Keep your family organised",
+ "DBGyx6": "You moved the {card_name} card with this file attached to the {board_name} board",
+ "DBYP+0": "Upgrade to {trademark_business} to get access to the full admin console and take your team to the next level.",
+ "DCJ3J1": "Only you can see this folder. Put things here that you don\u2019t want to share with everyone, such as your work in progress. If you already had files in Dropbox, they\u2019re now here, safe and sound.",
+ "DCNJ2c": "Include an image on your splash screen that shows up when you share files or folders.",
+ "DCWM0R": "Open",
+ "DCfdq9": "Sign in to your personal Dropbox",
+ "DDCDRp": "People with password",
+ "DDCr3O": "Remove {item} from upload queue",
+ "DDg1zX": "{team_name}",
+ "DE3hjq": "What\u2019s Included",
+ "DEVLIQ": "A complete list of your linked devices can be found here.",
+ "DExBT7": "Your background image should be at least 20px by 20px.",
+ "DF2xnS": "Contact telephone",
+ "DFLqLE": "6-digit code",
+ "DFjPX9": "Illustration of a computer with a new file",
+ "DG4lYD": "Wrap up projects by easily and securely sending final files or large collections of files, complete with password protection, expiry dates and delivery confirmation.",
+ "DGTMqU": "Start signing",
+ "DGdGzv": "Share family photos, docs and more",
+ "DGxBAt": "Optional",
+ "DHafRJ": "{trademark_business} account",
+ "DHeu7O": "Media",
+ "DHjasW": "Created:",
+ "DHwU7Z": "For individuals",
+ "DHwX9/": "Cancel",
+ "DI9fEf": "Sharing {folder_name} with members of {parent_folder_name}\u2026",
+ "DIlw7R": "Illegal content",
+ "DIq6Gz": "Could not communicate with host window {target_origin}",
+ "DJOIWU": "Require an additional layer of security when signing in, such as a key or code.",
+ "DJRhTP": "You're not signed in to the Dropbox account that {vaultOwnerFname} invited. {SwitchAccounts}",
+ "DKA/ma": "A drawing of a camera with the Dropbox green tick",
+ "DKSsPd": "Resend verification email",
+ "DKjb8y": "Got it! Thanks for letting us know",
+ "DLEQeq": "Link settings",
+ "DLVRSH": "Individual doc settings can be changed to allow people outside my team to open the doc.",
+ "DLrTA7": "Only the latest version",
+ "DLyScQ": "",
+ "DM7zll": "Download for {platform}",
+ "DMts9k": "Cancel",
+ "DN6GvF": "{count, plural, one {To continue, you need to sign out of one device} other {To continue, you need to sign out of {count} devices}}",
+ "DNyJ1w": "No results",
+ "DO0qKT": "deleted link",
+ "DOOyh7": "Shared folders and links",
+ "DOgC5w": "Dropbox app already installed? Can\u2019t install software on this computer?",
+ "DOiA9c": "Something went wrong. We\u2019re working on it.",
+ "DOjvpK": "Sending request...",
+ "DOkWiK": "Will my credit card be charged right now?",
+ "DPdWKV": "The amount of space you receive by default",
+ "DPv1pf": "{numUsers, plural, one {{numUsers,number} user} other {{numUsers,number} users}}",
+ "DQ0Rwh": "Provisioned",
+ "DQAg6E": "Help with billing and payments",
+ "DQE4OW": "Download complete",
+ "DQLFiT": "Enter a title for this card...",
+ "DQiXDX": "Smart Synced",
+ "DRKsia": "Free up {xgb} GB of hard drive space with Smart Sync",
+ "DROpD+": "Deselect all",
+ "DRVSxm": "A guest downloaded this file",
+ "DRw3WP": "Anyone in your Dropbox team with the link and password can view this file",
+ "DSMBAE": "Start typing a folder name",
+ "DT4G8U": "Something went wrong.",
+ "DTHqX2": "{standard_rewind_policy_max_days}-day account recovery with Dropbox Rewind",
+ "DTOpUy": "That\u2019s a bit too long ({count}/{max} max)",
+ "DTxqCx": "Buyers can download the files and keep a copy.",
+ "DU4eMy": "Canvas",
+ "DU9Meo": "Restoration link",
+ "DUDfaX": "Add items",
+ "DUHhfd": "Move all files to team account",
+ "DUJmji": "{count, plural, one {You cannot have fewer licences than team members, and your account has {count} licence by default.} other {You cannot have fewer licences than team members, and your account has {count} licences by default.}}",
+ "DUTcNc": "Go ahead and click on it now.",
+ "DUVaTi": "Verify email",
+ "DUbjsQ": "I need more help",
+ "DUeQds": "Tasks marked as complete here will be ticked off in Paper automatically.",
+ "DVJ4/q": "View earlier dates",
+ "DVUAxh": "By text",
+ "DVWR1j": "Outlook",
+ "DVayew": "If you don\u2019t have a personal account, click 'Link accounts' to create one for free.",
+ "DWChyI": "Automatically saves email attachments when you send emails to {email_address}",
+ "DWcV9y": "Unsharing unsuccessful. This folder has too many files.",
+ "DWwxhG": "View-only in preview",
+ "DWyepJ": "You were removed from {single_item_name} in {folder_path}",
+ "DX7rMh": "Can\u2019t show link. Something\u2019s wrong with this file.",
+ "DXC6te": "Remove admin privileges from {display_name}",
+ "DXEa3N": "Not now",
+ "DXIWrE": "deleted archive",
+ "DXXUzU": "
Your currency is based on the billing address that you first used to purchase a Dropbox subscription.
If your new billing country uses the same currency, you can update your billing information to change your country.
To change your currency, you must cancel your current Dropbox subscription and re-subscribe using a new billing address in your desired country.
",
+ "DY6gzv": "Close",
+ "DYOfu0": "Dismiss",
+ "DYmg/x": "Here\u2019s how stuff looks when you share outside the team.",
+ "DYpwRs": "Store",
+ "DYzA9G": "See how many people are using their own Dropbox accounts in your company domain, and help them join your team.",
+ "DZ14UC": "This transfer is over the {file_size_limit} limit",
+ "DZFGjg": "Downloading {name} {progress,number,::percent}",
+ "DZRU+E": "Move files between a personal and Dropbox Business account",
+ "DZSpcz": "Remember that, after downgrading from {current_plan_name}, you\u2019ll go from {current_plan_space} to {free_quota} of space (plus any bonus space earned previously) and you\u2019ll lose powerful features such as Smart Sync.",
+ "DZZcth": "Work",
+ "DZeWex": "You can change access to any folder at any time.",
+ "DZtAEl": "Pin",
+ "Da7N5p": "Dropbox sharing permissions make it easy to collaborate with familiar settings.",
+ "Da7zII": "You\u2019ve successfully verified permission for our support agents to view additional information related to your account. Please watch for an update from our support team.",
+ "DaDVT1": "All members will keep a copy of your Family Room folder.",
+ "Db79+e": "Failed to load modal.",
+ "DbLUIG": "Save",
+ "DbT6E7": "Your {plan} will be downgraded to Dropbox Basic on {date}.",
+ "Dc18S0": "How does Smart Sync save space on my hard drive?",
+ "DcKHEo": "Missing dates",
+ "DcKRPG": "Unlink",
+ "DcuOhc": "{index}. Create your account",
+ "DdQVS4": "Members of {shared_folder_name} ({member_count_string})",
+ "DdgIRL": "Keep editing",
+ "De29fY": "Signed in to {name} Dropbox",
+ "De5grV": "Member",
+ "DeB65W": "Couldn\u2019t upload. Try again in case it was a one-off, or reload the page.",
+ "DePCsb": "{folder_name} team folder has been restored but no groups have access to it. Would you like to add groups now?",
+ "DeXDpY": "Top right",
+ "Demriw": "Expired",
+ "Df007B": "{client_version_number} for {platform}",
+ "DfB6Pu": "month",
+ "DfGklh": "Back to preview",
+ "DfguIi": "Your version has unsaved changes.",
+ "Dg9/fw": "Download settings",
+ "DgNBM/": "iDEAL",
+ "DhAXrs": "Link not available.",
+ "DhomU6": "Copy link",
+ "Di+hvL": "Select a location for your Dropbox folder",
+ "Di2bB3": "URL",
+ "DiOQqr": "Or continue with {space} {dropbox_basic} plan",
+ "Die2Pn": "Rename transfer",
+ "Dj/752": "{count, plural, one {{count} new} other {{count} new}}",
+ "Dj00Xc": "Password",
+ "Dj4LXB": "We can\u2019t issue a refund at the moment because your last payment is still being processed. Please wait at least 2 business days, then try again. If you continue to have issues, contact Dropbox Support.",
+ "Djcj3P": "People with the password can view",
+ "Djg5OP": "Message on Slack ({workspaceName})",
+ "Dk+Py4": "New to Trello? Get started",
+ "DkHo17": "Enter your thoughts here",
+ "DkK6KM": "There was an error deleting this invitation.",
+ "DkMbIR": "Select files",
+ "Dkf+Pc": "Go to my Dropbox",
+ "DkgKYE": "Back",
+ "Dl+iw2": "Someone else\u2019s account",
+ "DlTX41": "{dropbox_paper} keeps teams together",
+ "DlX7Ow": "Payment method",
+ "DlYP8J": "Shared with other people",
+ "Dla82j": "{team_name} members",
+ "DldXvN": "Download is unavailable while file is being uploaded.",
+ "DljPpW": "Insert your security key to use it",
+ "DmMDME": "{price} per month",
+ "DmXK1H": "{count, plural, one {({count} member)} other {({count} members)}}",
+ "Dma8SU": "Custom expiry",
+ "DmpaCL": "For editing",
+ "Dn6iyj": "Marking up file...",
+ "DnISVN": "With the Family Room folder, everyone can access shared content such as photos and videos, holiday or wedding planning spreadsheets, and emergency contacts when you need them the most.",
+ "DnSYRK": "Folders",
+ "DnYpJ5": "image",
+ "DnaiNC": "Add everyone in {team_name}",
+ "Dnp+hz": "Coordinate teams by setting milestones, assigning to-dos and managing approvals.",
+ "DoIf+E": "Message on Slack",
+ "Dp8U2l": "Please verify your email address",
+ "DpG3vJ": "Your team\u2019s plan usage details are below. If you have any questions, you can contact {reseller_name} on {email_or_phone}.",
+ "DpbrhN": "This can happen when something isn't safe or isn't allowed to be shared.",
+ "Dq0QQH": "or drag files here",
+ "DqRjhN": "\u2013",
+ "DqcjPT": "You can view",
+ "Dqm0Ju": "Got it",
+ "DrEa0N": "{new_total} per {new_period} will be charged to your payment method on file.",
+ "DrX/AV": "The file storage interface and someone using Dropbox integrations to create a Google Slides presentation.",
+ "DrXtUG": "Information",
+ "DryIqI": "Link creator name",
+ "DsVskZ": "When the page reloads, tap 'Download' again.",
+ "Dt53+6": "Connect to Zoom",
+ "DtHJTE": "Duplicate campaign...",
+ "DtMAq9": "Your call has ended.",
+ "DtOr0o": "You can come back at any time by going to your account tab in the top right-hand corner and clicking Take a tour",
+ "DtTthQ": "Data governance will be moved over",
+ "DtibH5": "How to use camera uploads",
+ "DtwbRE": "Project folder",
+ "DuMLvR": "Album name",
+ "DuR7iM": "There was an internal Dropbox error.",
+ "DuTcCA": "{count, plural, one {Anyone in your Dropbox team with the link can view this file. Expires in {count} day.} other {Anyone in your Dropbox team with the link can view this file. Expires in {count} days.}}",
+ "DuhPxK": "This file is larger than the maximum size (20 MB)",
+ "DunJW9": "Download again",
+ "DupHq4": "{count, plural, one {You\u2019ll be charged an additional {new_amount_including_tax} for adding {additional_licenses} licence pro rata for the current billing period.{white_space}} other {You\u2019ll be charged an additional {new_amount_including_tax} for adding {additional_licenses} licences pro rata for the current billing period.{white_space}}}",
+ "Duy5BB": "Team folder name",
+ "DvP2/w": "{selected_plan_detail} ",
+ "Dvl2Dl": "Does a showcase use Dropbox storage space?",
+ "Dvw5Kr": "Most recent",
+ "Dvwua+": "Overview",
+ "Dw/7c6": "Some of these people are not in your Dropbox team.",
+ "Dw43cf": "From {date}, your plan will be downgraded to Dropbox {plan_name} without extended version history. You will revert to {days}-day version history. Your new {billing_schedule} total will be {scheduled_total}.",
+ "Dw9ZsX": "Cardholder name",
+ "Dwje+M": "Delete {display_name}\u2019s account completely",
+ "DxhWHl": "Finally now all of your tools, content and collaborators are accessible from the same place. {trademark_business} is more than secure storage \u2013 it's a smart, seamless way to optimise your existing workflow.",
+ "Dy7R90": "Untick the team if you want to continue on your own instead",
+ "DyAxR3": "Your account will be merged into the {team_name} Dropbox account, where you\u2019ll have\na private area for your stuff. {team_name} admins can manage your files and Paper docs if they\nupgrade the account to {trademark_business}. You\u2019ll sign in with {work_email}.",
+ "DyrBQI": "Rename",
+ "DzaRL0": "Join the {team_name} shared Dropbox account?",
+ "DzcvS8": "Enter a valid number",
+ "E+3IgE": "If you\u2019re running Dropbox on your server for the first time, you\u2019ll be asked to\n copy and paste a link in a working browser to create a new account or add your server to an\n existing account. Once you\u2019ve done this, your Dropbox folder will be created in your home directory.\n Download this Python script to control Dropbox from the command line. For easy access,\n put a symlink to the script anywhere in your PATH.",
+ "E+Sm/s": "Tips for using Dropbox Paper",
+ "E+Vu/n": "Cannot request access for an inactive team.",
+ "E+nHv4": "Support",
+ "E/Jy6H": "While you wait, you can preview this file in another tab.",
+ "E/vNT2": "You haven\u2019t included anyone to invite! Please invite at least one person.",
+ "E0iC8o": "You can ask the person who shared the link to invite you directly. Just so you know, you're signed in as {email}.",
+ "E0v6mC": "Share with",
+ "E1ARN2": "Freelancers",
+ "E1J8cw": "{numInvitees, plural, one {You need more licences for this invitation. Please contact your account executive to purchase licences.} other {You need more licences for these invitations. Please contact your account executive to purchase licences.}}",
+ "E1MoOZ": "We\u2019ll send a reminder email to anyone who hasn\u2019t yet set up two-step verification.",
+ "E1Zecc": "Create report",
+ "E1aGBg": "{team_name} account",
+ "E1nUJ4": "{count} images and videos",
+ "E2/xHY": "The system extension will be uninstalled from your team\u2019s computers.",
+ "E2qErh": "Extremely satisfied",
+ "E3AATa": "Duration",
+ "E3Cjhs": "Monitor the file-level actions that your team members are taking.",
+ "E3Ydgf": "You can only copy this link",
+ "E4/Q2q": "Learn more",
+ "E44pjD": "Guess again",
+ "E49hK6": "Couldn't extract files. Can only handle files up to {file_size} MB.",
+ "E4RVKt": "We've dispatched a fleet of pandas to analyse your account. Please wait\u2026",
+ "E5+L0i": "An overview of Dropbox Paper showing text, a checklist, images and two users collaborating with comments.",
+ "E5PyhP": "Your licence key will be activated and no charge will be made to your payment method on file.",
+ "E5ZvL4": "The \u2018team name\u2019 is the name your {trademark_business} account will go by. For example, \u2018Team World Peace\u2019. You can always change this, even after it\u2019s been set.",
+ "E6+0Aw": "Just before a spike is a good place to start",
+ "E6DVmG": "Drag here or choose files",
+ "E6Ku17": "open settings",
+ "E6SULc": "This account\u2019s {plan} plan will be renewed on {date}. {billing_summary}",
+ "E6W3e0": "Branded sharing",
+ "E6pkM7": "We noticed something suspicious, such as a lot of downloads in a day. Ask the owner to create a new link. Learn more",
+ "E6ymO6": "Cancel",
+ "E73zzX": "{price}/month{line_break}({tax_string})",
+ "E76/3z": "Email sent!",
+ "E7Mnxf": "Remove manager permissions",
+ "E7n2JC": "If you\u2019ve got an issue, we\u2019re here for you. Chat directly to Dropbox support to resolve any issues quickly.",
+ "E7rT2W": "Ads",
+ "E8K1hr": "example@company.com",
+ "E8kLRO": "Withheld {tax_name} ({tax_percent,number,::percent .##}): {tax_amount}",
+ "E8w+ml": "Cancel trial",
+ "E8yrWK": "Connect your domains",
+ "E9Pl4j": "Send up to 2 GB per transfer",
+ "E9Q42D": "Enter a new password for your account. This will also change your email address from {email} to {new_email}.",
+ "EAkfIY": "Easier collaboration",
+ "EBSl02": "{count, plural, one {{count,number} person is already in your team: {emails}} other {{count,number} people are already in your team: {emails}}}",
+ "EBUqtV": "Unlock your vault, refresh the page and try again.",
+ "EBx+nl": "AM",
+ "EC77h4": "Using too much of my family\u2019s storage",
+ "ECG75B": "Smart Sync",
+ "ECZFz/": "{count, plural, one {{count} member} other {{count} members}}",
+ "ED/wrT": "Remember me",
+ "EDBJwx": "Disconnect",
+ "EDsCCo": "Your Dropbox account has over {max_files,number} files. Syncing that many files in one go will take a long time. We recommend that you sync only the folders you need right now.",
+ "EEXzcz": "Manage creative work with clients",
+ "EEc43S": "Freelance",
+ "EEvTVP": "Anyone with this link can edit the file. Downloads disabled.",
+ "EExgXY": "Verified domains:",
+ "EF/17d": "Pages",
+ "EF52pb": "Send up to {send_size_limit} for free to anyone",
+ "EFGwFd": "Members of {team_name} won\u2019t be able to access {folder_name}.",
+ "EFMKS+": "Download the file",
+ "EFRGA8": "Collapse section",
+ "EFmCuH": "Text me the link",
+ "EFtntj": "Current plan",
+ "EG+Tsf": "Folder renamed.",
+ "EG/Tli": "Delay (in seconds):",
+ "EGb0bw": "Manage this app",
+ "EGoORJ": "Creating report\u2026",
+ "EGrZ5w": "Dismiss",
+ "EH4Xhy": "Sign in to dropbox.com to keep working.",
+ "EHGhBT": "Use this token when setting up Dropbox with your EMM vendor.",
+ "EHeQzm": "How file locking works",
+ "EI542R": "The {card_name} with this file attached was unarchived to the {board_name} board",
+ "EIHDne": "Two-step verification adds an extra layer of protection to your account. Whenever you sign in to the Dropbox website or link a new device, you\u2019ll need to enter both your password and a security code sent to your mobile phone.",
+ "EIOOOI": "Team policies",
+ "EIQpcq": "Edit language",
+ "EIToGf": "We\u2019re working on a {trademark_family} plan with more shared space, but an upgrade isn\u2019t available yet. Individual {trademark_family} members can free up space by deleting unused files and folders, or they can opt out of {dropbox_family} and choose an individual plan that meets their needs.",
+ "EIULk3": "No limit",
+ "EIxg6H": "Install the Dropbox system extension to enable Smart Sync?",
+ "EK/q5b": "Link copied. Allows viewing.{br}{copiedUrlDisplay}",
+ "EKgeAS": "Couldn\u2019t rewind this folder. Try again or let us help",
+ "EKnGia": "The member was removed from your family.",
+ "ELKKjB": "Full",
+ "ELPoBF": "Just one moment while we take you back to the desktop app.",
+ "ELsJsf": "Previous slide",
+ "ELzCWG": "We couldn\u2019t log you in with Google. Try again?",
+ "EMOHAJ": "Templates for marketing teams",
+ "EMTopi": "Removing {member_name}...",
+ "EMXHTJ": "Send for signature",
+ "EN9RBU": "External sharing",
+ "ENGFia": "Paper is partially enabled for your team. You can control who has access here.",
+ "ENMVb1": "Couldn\u2019t undo move.",
+ "ENlS4s": "{count, plural, one {Moving {count} item...} other {Moving {count} items...}}",
+ "ENrcwA": "Dropbox Paper is a new type of doc where teams can bring ideas to life in a single space. Use Paper to write and edit, manage tasks, review designs or run meetings.",
+ "EOFX3k": "You can\u2019t restore any files that have been removed from your Dropbox",
+ "EOoaCf": "Dropbox",
+ "EOtUeY": "Invite by email",
+ "EOwMfn": "See all deletion and version history of your files for one year.",
+ "EP1jNF": "Members moved",
+ "EP2yEU": "3 or more",
+ "EPgLDL": "Edit hold",
+ "EPpPpF": "{count, plural, one {Your plan only supports 1 linked device. Upgrade to {dropbox_plus}\n to stay signed in to more than 1 device at a time.} other {Your plan only supports {count} devices. Upgrade to {dropbox_plus}\n to stay signed in to more than {count} devices at a time.}}",
+ "EPx9jS": "Camera model",
+ "EQ1qvT": "Ray P.",
+ "EQ6NDi": "Contact us",
+ "EQfnGr": "We were unable to complete your request.",
+ "EQpX0G": "Default permission for all other apps",
+ "ER3Cey": "Document turnaround times up to 80% faster",
+ "ESBIe+": "Schedule",
+ "ESecig": "Tables",
+ "ESoQOz": "You left the team.",
+ "ETBRGg": "recommended",
+ "ETO0Wr": "Add a note if you like",
+ "ETQ33x": "Error creating report.",
+ "ETUSAG": "Account plan \u2192",
+ "ETp2gK": "Present work to my team or clients",
+ "ETy9PA": "Cannot add an empty folder",
+ "EUUBQX": "There was an unexpected error. Please try again later or contact support.",
+ "EUhgvE": "Tidy up",
+ "EUp7Eo": "Email or name",
+ "EV/g+s": "No groups found",
+ "EV0Bgi": "Get {vacuum_days} of accident, theft and disaster recovery",
+ "EWbjWs": "Duration",
+ "EWc63s": "{count, plural, one {{count} member} other {{count} members}}",
+ "EWrDUn": "Choose members or groups",
+ "EXBwHQ": "{start_date} - {end_date}",
+ "EXL4DE": "Interested in other ways you can keep your account secure?",
+ "EXfF4B": "This link is invalid. Please verify that the link was opened directly from the email you received and try again. If you still receive this error message, please contact our support team.",
+ "EXrwGc": "Everyone in {team_name} can edit at the top level. Change setting",
+ "EY3gAJ": "Get started",
+ "EYJ3Li": "People can only view and download the file",
+ "EYQ0Wr": "Please log in as {email}{br}to upgrade your plan.",
+ "EYb0mR": "Select your bank...",
+ "EYw1Cy": "Documents",
+ "EZm8Rx": "Failed to load modal.",
+ "Ea8/7H": "You\u2019re about to change your Dropbox email address ({email}) and reset your password. Would you like to continue?",
+ "EaSxr+": "Send invitation",
+ "EbFf1n": "Looking good!",
+ "EbjYX+": "Name of product",
+ "EcKZ4P": "Keep {trademark_business}",
+ "Ed/RQ2": "Title",
+ "Ed74Bk": "Failed to unlink paper devices. Please try again later.",
+ "EdVYXW": "A drawing of a cat reaching for a fish skeleton under a box",
+ "EdrYIB": "Move members",
+ "EeWtuF": "Uploads complete!",
+ "Eeorda": "\u2022 Changing your browser to an updated version of Chrome, Edge or Opera",
+ "Ef8m3r": "Allow members to request signatures and sign documents",
+ "EfMIQd": "{count, plural, one {{count} key} other {{count} keys}}",
+ "EfUQcM": "IP address",
+ "EfqPiJ": "Your changes won\u2019t be saved.",
+ "EfyLN0": "Free up your computer\u2019s hard drive with Smart Sync",
+ "EghH/d": "{num_docs} Paper docs and {num_folders} folders",
+ "EgikhY": "Create groups to simplify sharing",
+ "EgjKrN": "The ZIP folder you\u2019re downloading doesn\u2019t sync with {firstName}\u2019s vault. If {firstName} makes updates, your folder stays the same",
+ "Eh1woB": "{storage} of storage to help you store or share a few files for a quick project.",
+ "Eh61ix": "Add your business name and logo to any files or folders you share.",
+ "EhBVdm": "We\u2019ve emailed the receipt and instructions for accessing your file to {email}.",
+ "EhXC4d": "Get your link code",
+ "EhkgVc": "Status icon",
+ "Ehmc4Q": "Please disable Paper first.",
+ "EhrnXF": "Your request is pending approval",
+ "EhtH9U": "Viewing now",
+ "Ei1e3Y": "Make folders online only",
+ "EiEqjk": "Make {collaboratorName} the owner of this folder?",
+ "EiOh7j": "Go from {basic_space} to {space} of storage space, and unlock premium features",
+ "EipTQ9": "Upload Dropbox content anywhere the content editor appears in Canvas.",
+ "Ej5kjR": "In company-managed groups, admins are responsible for adding and removing members. In user-managed groups, users approve new members and existing members can leave whenever they like.",
+ "EjL/IJ": "Send me a notification",
+ "EjS5+X": "Submit",
+ "EjnB2M": "Save hard drive space by making files online only. Members can\n still browse online-only files directly from the Dropbox folder on their computers.",
+ "Ejp/L8": "Platform",
+ "EjsYag": "This member will be notified that their account has been suspended and their devices will stop syncing. The account will continue to use a licence and you can remove the suspension or delete the account at any time.",
+ "EjtFRv": "Sync top-level folder too?",
+ "Ejwzio": "Your account will be downgraded and your team will lose the additional space it\u2019s been using, file recovery and advanced features such as Smart Sync.",
+ "Ek+UwA": "Activity: this week",
+ "EkFAkT": "From {date}, we\u2019ll bill you once a {schedule_noun} for your Dropbox {plan}. Your new {schedule} total will be {scheduled_total}.",
+ "Ekh3bq": "OS version",
+ "El1G5f": "No deadline",
+ "El6O0Q": "toolbar",
+ "El6a1g": "What is {dropbox_enterprise}?",
+ "ElDiXe": "Unable to create transfer",
+ "ElMtg6": "Well done!",
+ "ElTpYK": "If selected, {name} will be shared with everyone that joins your Dropbox team.",
+ "ElcPzY": "What is Smart Workspace?",
+ "ElsIdD": "An unknown error has occurred. Please enter your password and try again.",
+ "Elv8fe": "Your background image should be no more than 10 MB in size.",
+ "EmB8rD": "Account created. One last step...",
+ "EmJLlM": "Status: {status}",
+ "EmOY+w": "Creating new transfer...",
+ "En219Z": "Create folder",
+ "En5KXm": "HelloSign \u2013 a Dropbox company",
+ "Enxj1g": "Keep all of your team\u2019s work in one place",
+ "Eo3G73": "Error unlocking. Please try again later.",
+ "EoEi1l": "Fired, return not detected",
+ "Eoa7wt": "Support request verification",
+ "Ep2u8E": "Invite friends",
+ "EpLafK": "You can manage access in the admin console.",
+ "EpYmFq": "Delete selected watermark image",
+ "EpeY3Z": "Remove",
+ "EqTfoU": "Year to date",
+ "EqUCHi": "Created shortcut",
+ "Eqe8R9": "Choose your plan",
+ "ErPYhx": "Dropbox signs HIPAA Business Associate Agreements to enable Covered Entities and their Business Associates to store Protected Health Information in Dropbox. Please complete the following fields:",
+ "ErccPg": "Summary",
+ "Ercy3i": "Select all",
+ "ErrGVR": "Unlink all of your mobile devices from Paper.",
+ "Erx7lP": "Send a reminder?",
+ "EsX/pm": "{count, plural, one {{creator_name} sent {count} item} other {{creator_name} sent {count} items}}",
+ "EtJkOW": "Content management",
+ "EtOBfz": "Anyone in your Dropbox team with the link and password can view this folder",
+ "EtTGfV": "We couldn\u2019t issue your refund and your plan hasn\u2019t been changed. Please contact Dropbox Support.",
+ "EtmMRq": "Advanced sharing permissions",
+ "EuBU0c": "Restoring...",
+ "EuLBkx": "Add your teammates\u2019 email addresses below:",
+ "EuP9S1": "Easily integrate Dropbox with any large identity provider.",
+ "EwObyT": "Share the file with others",
+ "EwZlqx": "Choose a folder for submitted files",
+ "EwnYms": "A {dropbox_paper} document containing a photo of a satellite and a to-do list.",
+ "EwtFU3": "Try Professional free",
+ "Ex23ZE": "The Customer will not use the Services to create, receive, maintain or transmit PHI to other Dropbox services outside the Included Functionality, except where Dropbox has expressly entered into a separate HIPAA Business Associate Agreement for use of those Dropbox services. The Customer agrees that Dropbox has no obligation to protect PHI under this HIPAA BAA to the extent the Customer creates, receives, maintains or transmits such PHI outside the Included Functionality, including the Customer\u2019s use of its offline or on-premise storage tools or third-party applications.",
+ "ExAvCI": "{count, plural, one {You restored {count} item} other {You restored {count} items}}",
+ "ExhGkl": "Shared link URL",
+ "Ey/8Q8": "Trust this computer",
+ "EyHIRK": "Number of files",
+ "EyJ4U4": "{count, plural, one {{count} shared folder} other {{count} shared folders}}",
+ "Eyrk2O": "{name} shared this file with {entity}",
+ "EzrGZU": "The Dropbox mobile app simplifies common tasks that can eat up your day. Scan receipts, stickies and other documents in seconds using your phone\u2019s camera. Save time \u2013 and get peace of mind \u2013 with automatic photo and video backup.",
+ "EzsjEm": "Congrats! You\u2019ve enabled two-step verification.",
+ "EzzmNI": "Open file",
+ "F+LnFL": "T",
+ "F+hl46": "Cannot open this policy",
+ "F+zn0K": "Close",
+ "F/B5QX": "Instantly start Zoom meetings from Dropbox, automatically copy recorded meeting videos and transcripts to Dropbox, and see file activity in one place.",
+ "F/FWqg": "Other details",
+ "F/gmjd": "Password required for this link",
+ "F/nFEH": "Link expired, please request a new one",
+ "F/p9Uq": "Customisable solutions",
+ "F0Q7WV": "deleted team folder",
+ "F0SdTF": "Native (Windows Explorer, macOS Finder)",
+ "F0kqUs": "On, red-eye reduction",
+ "F0o6Ad": "You won\u2019t get an alert if a team member shares malware.",
+ "F1PCBh": "Delete account",
+ "F1TVtm": "{count, plural, one {By default, folder contents will sync to members with access to the folder.} other {By default, folder contents will sync to members with access to these folders.}}",
+ "F1g1bb": "or",
+ "F1loHM": "Team admins from the trusted team will be able to sign in to your admin console.",
+ "F1v4ge": "Simple, secure file storage and sharing with built-in tools to help you get and stay organised.",
+ "F1wJ2u": "Can I cancel the trial at any time?",
+ "F2/IGw": "{count, plural, one {Emailed to {count} person} other {Emailed to {count} people}}",
+ "F23jdQ": "Remove a member of \u201c{parent_folder}\u201d?",
+ "F2cWbF": "You can select how you\u2019d like each file type to open in Dropbox.",
+ "F2lDMN": "Upgrade now",
+ "F3VlpS": "You are saving {discount_total,number,::percent .##} in total on your yearly subscription. This includes a {discount_yearly,number,::percent .##} standard saving for choosing a yearly subscription, plus a special {discount_promo,number,::percent .##} discount.",
+ "F5ADP7": "Country and postcode must match your account\u2019s payment information.",
+ "F5GHJL": "The secondary team, {team_name}, has team Selective Sync enabled. To continue merging, enable this feature for your team too on the Sync settings page.",
+ "F5JKr7": "Current members",
+ "F5NZs5": "Save changes",
+ "F5h/wg": "Trouble downloading? Try again",
+ "F5izuk": "Completed",
+ "F6NIR0": "Turn off",
+ "F7A+9f": "The owner of {file_name} isn\u2019t a member of {team_name}.",
+ "F7gl6q": "Create link",
+ "F7owMq": "Could not disconnect {name} \u2013 please try again later",
+ "F7yotX": "Overview examples to inspire you",
+ "F836B+": "On (anyone)",
+ "F8dz1D": "{count, plural, one {Are you sure you want to invite this user?} other {Are you sure you want to invite these {num} users?}}",
+ "F9y0Zn": "Teams & admins",
+ "FA70cd": "Connect Dropbox",
+ "FAZpqt": "Team checklist",
+ "FAd9tz": "Name",
+ "FAgdb8": "Not at all happy",
+ "FBZ1TU": "Adobe Sign tracks the entire signature workflow and automatically stores all of your signed documents in one secure place.",
+ "FBhWHL": "Wrong PIN \u2013 try again",
+ "FBlHqR": "@mention someone to share this file.",
+ "FC7yfm": "{name} unlocked this file",
+ "FCAxfK": "{count, plural, one {{count,number} second} other {{count,number} seconds}}",
+ "FCIOqW": "Account verification",
+ "FCkFiN": "Get app",
+ "FDU/qx": "Over {million_user_count} million people use Dropbox and more than {business_count} teams use {trademark_business} to work smarter, including:",
+ "FDhMqF": "Your plan includes as much space as you need and unlimited API calls.",
+ "FDlkl8": "Send file to {slack}",
+ "FDw3AL": "Office 365 integration",
+ "FEEs/D": "Couldn't save as PDF because your Dropbox is out of storage",
+ "FEVIN3": "Show this ad until",
+ "FEpy0h": "Download name",
+ "FF2MgF": "Hover over a message > 'More actions' > 'More message shortcuts' > search for 'Dropbox'.",
+ "FFEhM0": "Request reopened. People can upload files again.",
+ "FFSHc1": "Download the error log to see what went wrong. Once you\u2019ve fixed the errors, try importing the file again.",
+ "FFXJyz": "Email link",
+ "FFaFs4": "To",
+ "FFdNpb": "Always deliver your best",
+ "FFqVaU": "Enter Dropbox 2-step verification code",
+ "FFs3dJ": "1. Secure it with a PIN",
+ "FH3K02": "Upgrade to add your own",
+ "FHWCk7": "Sending\u2026",
+ "FIEkjq": "Which Dropboxes do you want to unlink from {host_name}? Any Dropbox you unlink will immediately stop syncing.",
+ "FIkuCu": "don\u2019t connect computer to Dropbox account",
+ "FIt40L": "Something went wrong with the download. Please try clicking the Download button again.",
+ "FJLHLl": "Only you can view via the link. Downloads disabled.",
+ "FJruXu": "Previous last",
+ "FKQMdu": "After a meeting you host is recorded to Zoom cloud, the recording will be copied from Zoom cloud to your Zoom folder in Dropbox. We\u2019ll notify you when files are copied. This feature requires certain settings in your Zoom account to be enabled.",
+ "FKUdiy": "Your account will be merged into the {team_name} Dropbox account, where you\u2019ll have\na private area for your stuff. {team_name} admins can manage your files and Paper docs if they\nupgrade the account to {trademark_business}. {team_name} hasn\u2019t enabled Smart Sync, so new files will\nbe downloaded to your hard drive.",
+ "FKe7lD": "{count, plural, one {{filename} and {count} other item were deleted successfully.} other {{filename} and {count} other items were deleted successfully.}}",
+ "FKgWDC": "Enter the password for this link",
+ "FKs4ZT": "Manage",
+ "FL9yea": "Ctrl",
+ "FLLfhH": "Include {filename}",
+ "FLUEFq": "Link settings",
+ "FLZdgG": "Sad cat holding a broken umbrella in the rain",
+ "FLm00O": "Back",
+ "FM0J2d": "Edit settings for {name}",
+ "FMV0on": "This should be your full company name. This name will appear on billing statements.",
+ "FMgHvt": "File is being uploaded...",
+ "FMi51Q": "Your Dropbox pricing will automatically change on {date}.",
+ "FMwtPZ": "Please enter a valid number of users.",
+ "FN1EQh": "You\u2019re being billed externally.",
+ "FN3eG2": "Send",
+ "FNJvCl": "You\u2019re not signed in",
+ "FNTreO": "Only a team admin can convert {display_name}\u2019s account to a Basic account.",
+ "FNbyIG": "Responsibility.",
+ "FNvZo7": "Only admins",
+ "FNvk2j": "{price} / {duration}",
+ "FO/O/t": "Help Centre",
+ "FO/PBa": "{count, plural, one {You currently have {count} licence ({cost} per licence/{billing_schedule}).} other {You currently have {count} licences ({cost} per licence/{billing_schedule}).}}",
+ "FO7ep6": "Come back to this page on a PC with Windows 10 or a Mac with at least macOS Sierra 10.12 to get the {trademark_passwords} desktop app.",
+ "FODqf1": "Sign in",
+ "FOTirc": "This shows info about who has viewed a file to team members and anyone who can edit it. Team members can also track traffic and insights on files they can edit.",
+ "FOxSlp": "Track key details from your customer calls. Outline agenda topics, jot down notes and capture related action items to keep you and your team accountable.",
+ "FPEPRA": "{count, plural, one {Only you can view via the link. Expires in {count} day.} other {Only you can view via the link. Expires in {count} days.}}",
+ "FPPh+1": "When your download is complete, run the Dropbox installer",
+ "FQDYXM": "Don\u2019t set an end date",
+ "FQExXY": "Turn off Smart Sync update for Mac?",
+ "FQbLTX": "Keep Dropbox in your pocket",
+ "FRK0o9": "You can\u2019t upload files because you\u2019re out of space. Before you can upload to Dropbox, you need to get more space.",
+ "FRQa4i": "Only team admins",
+ "FRQeqz": "Edit profile",
+ "FS5Khl": "{count, plural, one {Tap Yes when you get the notification on this device:} other {Tap Yes when you get the notification on any of these devices:}}",
+ "FSZhfb": "User\u2018s password reset.",
+ "FSeZKt": "Allow 1-2 business days for a response.",
+ "FT16WL": "Comment",
+ "FTRXjM": "Cancelling your Dropbox {trademark_plus} trial in the {billing_store} will not affect your {trademark_business} trial.",
+ "FU93ia": "A new app is connected",
+ "FUgw/y": "Safari currently has no way to selectively allow Dropbox third-party cookie access. Please use a different browser.",
+ "FUlJkV": "Microsoft Word",
+ "FVWBqr": "Name changed.",
+ "FVe48a": "{potential_gb} GB",
+ "FVfpGL": "Report this ticket",
+ "FVq+2q": "Invite people to the team without waiting for admin approval",
+ "FW1/1Y": "Please enter a new password",
+ "FWJkxz": "Shared with you",
+ "FWSVAK": "Advanced, billed monthly",
+ "FWcIMP": "Add an email address for members to contact",
+ "FWvbK+": "Remove member",
+ "FXDId4": "Unarchive campaign",
+ "FXXrRL": "Reset all passwords?",
+ "FXfq01": "Enter a valid email address",
+ "FXqYpV": "Allows viewing.",
+ "FYFWxi": "Dropbox now has two {trademark_business} plans: {standard_display_name} and {advanced_display_name}. To give you the most powerful admin controls and security features, we\u2019ve given you access to {advanced_display_name} features at no extra charge. You\u2019ll have access to these features at your original pricing plan until your first renewal date in 2018. After that, your account will adopt the storage plans and pricing of {advanced_display_name}. If you want to downgrade to {standard_display_name}, you\u2019ll have until your first renewal date in 2018 to do so.",
+ "FYSoqK": "Show recommended plans",
+ "FZC8rP": "See info about people who view my files",
+ "FZm653": "Dropbox for Windows",
+ "FZvvYq": "Signed in with {provider}",
+ "Fa+cEy": "Anyone in your Dropbox team with the link and password can view this file. Downloads disabled.",
+ "FaO5KK": "App Centre would be better if\u2026",
+ "FaOoVc": "Not sure",
+ "Fb2HRt": "Let\u2019s create your new team account",
+ "Fb2T0a": "Communication",
+ "Fb32+S": "Open image source selection menu",
+ "Fb6V6v": "Billed monthly",
+ "Fb8F3r": "Tiered admin roles",
+ "FbWoPF": "Manage this team in the admin console",
+ "Fbyffs": "Shared {folder_name}.",
+ "Fbyxe1": "{count, plural, one {Members of the containing shared folder with the link can view this file. Expires in {count} day.} other {Members of the containing shared folder with the link can view this file. Expires in {count} days.}}",
+ "FcMi9V": "Category",
+ "FcUWvI": "Activity",
+ "FcXf1g": "Do any of these help with photos and videos?",
+ "FccHej": "A new device is linked",
+ "Fd23KZ": "{plan_name} is {price_per_year} per year. You\u2019ll save {savePercentage} compared with monthly billing.",
+ "Fd4rpp": "Search for a domain",
+ "FdIUrR": "Use shared folders without worrying about going over your storage quota.",
+ "FdPHTR": "Just sign in or create an account.",
+ "FdTkAn": "Moving files...",
+ "FeZD2I": "Auto, fired, return not detected",
+ "Feu4we": "{dropbox_plus} user",
+ "FfTCDK": "{business_space} of space",
+ "FfUURL": "To",
+ "FfZ3WR": "Create new export",
+ "Ffa/mi": "You\u2019ve lost access to powerful features.",
+ "Ffd3Cn": "Dropbox needs to verify your email address {email} to finish updating your personal email. It\u2019s as simple as clicking the link in the verification email we send you.",
+ "Fflsme": "What\u2019s included in the free trial?",
+ "Fh9Atn": "2 GB of space",
+ "FhSkpL": "Package, {alt}",
+ "FhXZaX": "Stormcrow",
+ "FhbDUp": "All team admins and activity log",
+ "FhxAuj": "You added this file",
+ "Fi5vzl": "Upload in progress...",
+ "FijxUX": "Your account comes with a free Plus trial",
+ "Fk4cKH": "Cancellations & refunds",
+ "FkaCY0": "I\u2019m sure",
+ "FkvWlK": "{failed_count,number} of {total_count,number} couldn't be moved to {target_team_name}",
+ "Fl6LcA": "Signed in to team",
+ "FlQsLB": "\u201cThe space in which we live should be for the person we are becoming now, not for the person we were in the past\u201d{br} \u2013 Marie Kondo",
+ "FlW+uk": "When people email you files, you can save those files from here.",
+ "FlqVEE": "Hello, world",
+ "Fm7xpO": "Save all of your edits to Dropbox.",
+ "FmMziB": "{count, plural, one {Anyone in your {trademark_business} team with this link and password can edit the file. Expires in {count} day.} other {Anyone in your {trademark_business} team with this link and password can edit the file. Expires in {count} days.}}",
+ "FmeLvS": "There was an error processing the X.509 certificate. Double check the certificate and try again.",
+ "Fmjlrn": "No billing information on file",
+ "FmwO+2": "Congratulations on joining {trademark_business}!",
+ "Fn1En+": "Dropbox is not working properly",
+ "FnHDRJ": "You haven't included anyone to invite. Please invite at least one person.",
+ "FoHNXw": "Saving changes...",
+ "FoLSMR": "Healthcare",
+ "FolCTl": "The University of Sydney Business School logo",
+ "FomW4x": "Request sent",
+ "Fozt1X": "Quickly move or copy files to a new location",
+ "Fp+Rh0": "Getting a new token will block all mobile sign-ins in the EMM app until you save the new token in your EMM vendor account and update the Dropbox EMM app on your team\u2019s devices.",
+ "Fp+s39": "Lets them view only. They can\u2019t see comments.",
+ "FpGVRp": "Rename",
+ "Fpw5cG": "Learn more about what they can access",
+ "FqbGUM": ", billed {schedule}",
+ "FquCbz": "Show who\u2019s viewing files in this folder to people who can edit.",
+ "Fr4ziX": "Suspended",
+ "Fr6+q3": "Stop syncing files",
+ "Fra1aX": "You\u2019re backing up your photos with automatic camera uploads",
+ "FsLrBD": "Suggest members",
+ "Fsd+XK": "Dropbox may use and disclose PHI only as permitted under HIPAA and as specified in the Agreement and this HIPAA BAA. Dropbox may also use and disclose PHI for the proper management and administration of Dropbox\u2019s business and to carry out the legal responsibilities of Dropbox, provided that any disclosure of PHI for these purposes may only occur if: (a) required by applicable law; or (b) Dropbox enters into a Business Associate Agreement with the person or entity to whom PHI will be disclosed.",
+ "FsmDQI": "I don\u2019t like suggestions.",
+ "Ft3ikL": "Create account and continue",
+ "Ft4lr4": "Code",
+ "FtUdJa": "Ready when you are",
+ "Ftc2rw": "View downloads",
+ "Ftg4vm": "Please correct the form errors and try again",
+ "FtiJRA": "Search result {index} of {result}: {aria_title} in {location}",
+ "Ftkrln": "Well done!{br}Dropbox installed",
+ "Fu5CC4": "Something went wrong. It should work later.",
+ "FuPzY9": "We sent a code to {email} and any devices you\u2019ve linked to this account. Enter the code to continue.",
+ "Fv/8LI": "{count, plural, one {Permission changed for {count,number} app.} other {Permissions changed for {count,number} apps.}}",
+ "Fv7AjG": "Enter your reason here...",
+ "FvQTeI": "You can now use your security key to complete two-step verification when you sign in to Dropbox.",
+ "FvXtZK": "{device_name} icon",
+ "Fvjb7e": "Your account will be merged into the {team_name} Dropbox account, where you\u2019ll have\na private area for your stuff. {team_name} admins will be able to manage your files and Paper docs.\n{team_name} hasn\u2019t enabled Smart Sync, so new files will be downloaded to your hard drive.\nYou\u2019ll sign in with {work_email}.",
+ "Fw9VX7": "Sent to {recipient_first} and {recipient_second}.",
+ "FwFrOA": "For households",
+ "FwIpLD": "Discard",
+ "FwY8UG": "Saturday",
+ "Fwdgfr": "Member left team and converted to individual account.",
+ "FwgOvv": "Failed to update task.",
+ "Fwo2By": "How happy are you with this file preview?",
+ "Fww5XR": "Ask for a new link",
+ "FwxW5d": "Drop in a link to automatically add a preview for dozens of media types such as YouTube videos, Pinterest boards and code snippets.",
+ "FxRqE+": "[Email]",
+ "FxTO0x": "Create CSV report",
+ "FxoGBv": "Group",
+ "FysXyj": "Loading folder history",
+ "FzPwz1": "Create report?",
+ "G+NHPz": "Join team",
+ "G+dVoc": "Submitter name",
+ "G+lPYi": "Edit policy",
+ "G+o88n": "*Long distance charges may apply.",
+ "G/+x4N": "{durationTimeInDays, plural, one {{durationTimeInDays} day from creation} other {{durationTimeInDays} days after creation}}",
+ "G/Kz4Q": "Size",
+ "G/OZRB": "Location:",
+ "G/hflv": "Clear files from lost or stolen devices to keep company data in the right hands.",
+ "G0BGYo": "Image loading",
+ "G0Bo7E": "Sent by you",
+ "G0eFMx": "This month",
+ "G0iSiW": "Send invitation request icon",
+ "G0kfHQ": "Have a look",
+ "G1c4c7": "Schedule a call",
+ "G1qknX": "Online-only files will no longer appear to take up hard drive space, but you won\u2019t be able to see their full size before you download them.",
+ "G22gqW": "Nothing happened this week",
+ "G2LAVo": "Transform your folders",
+ "G2PT1D": "Done",
+ "G2fJEY": "Your {app_name} Contacts are available when sharing files with Dropbox.",
+ "G2jO1n": "{count, plural, one {Couldn\u2019t copy {count} item.} other {Couldn\u2019t copy {count} items.}}",
+ "G2k2hl": "A person doing work on a laptop in a caf\u00e9.",
+ "G2xST/": "Signed in",
+ "G32RJ7": "Colour",
+ "G3CiMx": "Dropbox doesn\u2019t currently offer HIPAA support for Showcase.",
+ "G3L9yN": "Add partner admin",
+ "G3SC9+": "Or with an existing Dropbox account",
+ "G3gJf8": "Jane",
+ "G49pwM": "Yes. You can cancel at any time. This is a no-obligation free trial.",
+ "G4M3yK": "Signed out",
+ "G4MWO/": "Mark all as read",
+ "G4ktGR": "Confirm you want to cancel your change",
+ "G4o7Ay": "Password protection on files",
+ "G5Pred": "Slack integration",
+ "G5QRye": "Easily and securely send files to clients and vendors from within Adobe Photoshop.",
+ "G61RCe": "Prepare content to download",
+ "G62PXN": "Search groups",
+ "G6HUee": "We couldn\u2019t reach your phone number. Are you sure it\u2019s correct?",
+ "G6YtZx": "Permanently delete in the admin console",
+ "G6fMgg": "Select billing cycle",
+ "G6pT4u": "{name} added {single_item_name} in {folder_path}",
+ "G71pmj": "{count, plural, one {/user/month, starting at {count} user} other {/user/month, starting at {count} users}}",
+ "G76Bc1": "Make manager",
+ "G79Iwz": "Oops... something went wrong",
+ "G7jTKb": "{display_name} ({email})",
+ "G86tSi": "You can turn on Paper free of charge at any time.",
+ "G8MvaH": "Two men talking about how to find a trusted Dropbox partner.",
+ "G915sS": "Client",
+ "G9Qw5q": "Members won\u2019t be able to edit top-level folders, but admins will be able to edit them in the admin console. Access to anything inside the folders won\u2019t change.",
+ "G9Z0Ln": "illustration of person taking photo of family members",
+ "GAHqSI": "Showcase your brand with a custom logo and background",
+ "GAk+s1": "Build an app",
+ "GBT3WZ": "Restore member",
+ "GBUARD": "Select team folders to add",
+ "GBaqQN": "Dropbox desktop",
+ "GBrNRo": "You\u2019ll get an alert if a member moves an unusually large amount of content.",
+ "GBu2Ic": "{count, plural, one {Moved {count} item to {dest}.} other {Moved {count} items to {dest}.}}",
+ "GBuqK+": "{count, plural, one {You restored {count} item in {folder_path}} other {You restored {count} items in {folder_path}}}",
+ "GC3RYQ": "Request a secondary team merge into my team",
+ "GC4Lj2": "If you just need help managing settings such as billing and security, you can allow this team access to your admin console instead.",
+ "GCHvoP": "What to do if audio files or videos won\u2019t play on the Dropbox mobile app",
+ "GCzx3+": "Make support admin",
+ "GDSx6k": "{count, plural, one {Members of the containing shared folder with this link can view the file. Expires in {count} day.} other {Members of the containing shared folder with this link can view the file. Expires in {count} days.}}",
+ "GDUcy7": "Dark",
+ "GDikFY": "Choose folder",
+ "GER5ks": "DELETED BINDER",
+ "GESxnb": "A cartoon woman uses a laptop while she sits at a desk near a bulletin board filled with notes.",
+ "GEcDxp": "The Dropbox Migration Assistant only migrates content to the locations you choose, either a team folder or {trademark_business} account. Folder permissions are not migrated to {trademark_business}.",
+ "GF5n87": "Team folder created.",
+ "GFGDaG": "No password",
+ "GFJLg5": "All activity",
+ "GFhs9d": "Start free HelloSign trial",
+ "GFxvjq": "How Rewind works",
+ "GFzp3j": "All amounts shown are in {currency}.",
+ "GG80Oc": "Up to 5 users",
+ "GGfLFz": "This member might be out of space if you set a limit lower than their current\n usage.",
+ "GGj0mz": "HelloSign trial started.",
+ "GH5ghx": "Do any of these help with team and admin questions?",
+ "GHBzHK": "Link sent to {phone_number}",
+ "GHOvO/": "Default background added.",
+ "GHSqyI": "A team space for everyone to work in",
+ "GHUPHC": "Lock icon",
+ "GHgKTe": "Directory restrictions",
+ "GITIns": "Relax \u2013 all of your info is secure",
+ "GJ7/9v": "Dropbox Paper mobile is not included in device approvals. Members will still be able to use the Dropbox Paper mobile app on any number of mobile devices.",
+ "GJAB8B": "Suggest something",
+ "GJesZx": "1 of 3",
+ "GJuXgi": "And more!",
+ "GK+TXw": "We\u2019ll charge your card ending in {last4}.",
+ "GKBCGI": "Amount charged",
+ "GKgRRt": "can edit",
+ "GLQxt4": "Group names",
+ "GLtYJa": "Start chat",
+ "GM9O28": "Save",
+ "GMLScf": "Undo",
+ "GMRGcj": "{count, plural, one {Removed app from exceptions.} other {Removed {count,number} apps from exceptions.}}",
+ "GN5l5p": "Account settings & sign-in",
+ "GNNuwW": "Membership request removed.",
+ "GNjUSI": "Their team will become part of your team and use your licences",
+ "GNolQQ": "Follow",
+ "GO5jX5": "Step 3 of 3",
+ "GO7ZWv": "Now that you\u2019ve made room on your device list, you can continue to install Dropbox on your computer.",
+ "GO8hjQ": "Paper automatically formats your doc and even sends you a reminder when a due date\u2019s coming up. Plus you can convert any doc into a presentation with just one click.",
+ "GOcFCv": "For starters",
+ "GOgFbO": "I\u2019m running out of disk space, what should I do?",
+ "GOgkb+": "Here\u2019s what we suggest",
+ "GOrQGH": "Member",
+ "GOzuO6": "Requested on {request_date}",
+ "GPDghz": "recommended",
+ "GPgj53": "{count, plural, one {{count} group} other {{count} groups}}",
+ "GPhXnH": "Please enter surname",
+ "GPrFxQ": "Limited admin",
+ "GQ1gFJ": "We couldn\u2019t find any matches",
+ "GQB5zk": "Personal Dropbox space",
+ "GQS6/m": "Download Dropbox to get started",
+ "GQZPKR": "Discard changes?",
+ "GQhP3K": "If you\u2019ve got a deadline coming up or a task due, or if someone shares a doc or mentions you, Paper follows up. Like your own personal assistant.",
+ "GQixcT": "You need to agree to HelloSign\u2019s terms and conditions first.",
+ "GQqYaL": "Restore",
+ "GREGY1": "Work",
+ "GRT2xh": "If you want to use Vault again, sign up for {PLUS}.",
+ "GRyN3w": "Spreadsheets",
+ "GSJawD": "Storage",
+ "GSj5XF": "Android",
+ "GSjEU0": "{count, plural, one {{name} added {count} item in {folder_path}} other {{name} added {count} items in {folder_path}}}",
+ "GT9zYK": "Business Advanced",
+ "GTNg67": "File access removed.",
+ "GTwtgQ": "Inactive for more than",
+ "GU+cu2": "Upgrading will cancel all scheduled changes.",
+ "GU8La8": "Link sent to {email}",
+ "GUKJ0I": "Send reminder",
+ "GUSUqO": "Dropbox Paper helps teams bring their ideas to life in a single space. They can work together in real time on any type of content \u2013 from code and text to video, images and sound.",
+ "GVBhip": "After uploading the HTML file, it should be accessible at one of these links:",
+ "GVDaoy": "Policy",
+ "GVJm+/": "Everyone can rewind only their own folders and folders they can edit",
+ "GW4cXr": "View folder",
+ "GWKu4W": "Chris R. Vaccaro, Director, Live Operations & Editor-in-Chief, Mobile",
+ "GWZZEI": "Drag files and folders here to share them with your family",
+ "GWmSVK": "Upload error",
+ "GWtL57": "Restore account",
+ "GWzQpn": "Member removed from {current_folder}.",
+ "GXUwCl": "Only a team admin can work with a hold.",
+ "GY5th8": "Would you like to sync everything in your {label} Dropbox ({need_gigs} GB) to this computer?",
+ "GY9Uat": "Start your 14-day trial",
+ "GYDnJ7": "Members of the containing shared folder with this link can view the file. Downloads disabled.",
+ "GYFlxk": "Install Adobe Flash Player to preview this video.",
+ "GYPuMT": "Low",
+ "GYhJ5f": "Deleted content isn\u2019t sorted by last modified",
+ "GYj3Ib": "Text message",
+ "GZ7Mjc": "What can Dropbox help you do?",
+ "GZW/r9": "Select devices to sign out of",
+ "GZbfwA": "Add emails",
+ "Ga3Ee+": "Folders",
+ "GaL0QU": "Dropbox mobile app",
+ "GaUyyL": "Modified",
+ "GbIGMP": "Camera uploads",
+ "GbOWVs": "{count, plural, one {Anyone in your Dropbox team with the link and password can view this file. Expires in {count} day. Downloads disabled.} other {Anyone in your Dropbox team with the link and password can view this file. Expires in {count} days. Downloads disabled.}}",
+ "GbToMT": "To set up a BAA, first you need to turn off Showcase for your team. Learn about HIPAA",
+ "GbyPA7": "Enter password",
+ "Gc+HwO": "Capitalised terms used here, but not defined here, are defined in the Agreement or under HIPAA.",
+ "GcYOVe": "{count, plural, one {You unshared {count} item} other {You unshared {count} items}}",
+ "GcryKJ": "{trademark_business} {plan_name}",
+ "GctNeH": "animated image showing what a transfer looks like",
+ "Gd/02t": "Current password",
+ "GdR1oX": "PIN must be numbers only",
+ "Ge2zdm": "Setting updated.",
+ "Ge53zy": "Show fewer files",
+ "GeMENn": "You\u2019ve reached the limit for computers allowed by your company. Ask your admin for help.",
+ "GeMbUy": "Choose {trademark}",
+ "GeokGk": "On (team + approved)",
+ "Get3xu": "All the space you need",
+ "Gevpqz": "Connect more apps",
+ "GevpuM": "MasterCard",
+ "GfBT/H": "Failed to delete invitation link.",
+ "GfRRwj": "Nothing to export yet",
+ "GfwCtS": "Please update your search and try again",
+ "GgOoMO": "Host team",
+ "GhOTyb": "Undo unwanted edits with {dropbox} Rewind.",
+ "GhTqsZ": "View the file contents",
+ "Ghdn8K": "Removing you from {sharedFileName}\u2026",
+ "GhycE9": "Turn on Smart Sync update for Mac?",
+ "Gi+irE": "can\u2019t upload folders or empty files",
+ "Gimj2c": "Link password",
+ "Gir0fu": "Set up Dropbox password",
+ "Gj7aSc": "You and your family members will lose access to the plan\u2019s storage and features, and your accounts will be downgraded to {dropbox_basic}.",
+ "GjcSo6": "No billing information on file. Add billing information.",
+ "GkNuiP": "Any day",
+ "GkZAlh": "Yes",
+ "GkiAxR": "If you remove {collaboratorName}, they won\u2019t be able to see future changes to this shared folder.",
+ "GlCum8": "This could be a brute-force attack or a case of stolen credentials.",
+ "GlPgxg": "Upgrade to Professional for advanced features",
+ "GlyhO1": "Please enter your name",
+ "GmIF3z": "Cancel {dropbox_family}",
+ "GmYEt0": "PDFs",
+ "GmgQyg": "Sign in with a notification",
+ "GmhVIx": "Anyone in your Dropbox team with this link and the password can view the folder.",
+ "Gmhr/j": "Sorry, we can\u2019t load your tickets at the moment. Check your connection or try again",
+ "GmjvDa": "Out of space, visualisation",
+ "Gmn3D8": "View and join {app_name} Calendar meetings from the Dropbox desktop app.",
+ "GnRAIi": "You were removed from {item_name}",
+ "GnZgOE": "Team folders",
+ "GnwhBg": "Keep your organisation\u2019s content for the right amount of time using policies. More about managing policies",
+ "Gnx3as": "Find a partner",
+ "Go+sgr": "You are currently receiving the enhanced admin and security features of the Advanced plan. In an upcoming renewal, you\u2019ll be able to select the plan that\u2019s best for your team.",
+ "Go7X6c": "This won\u2019t disable computer backups for members who already use it, or new members who have it enabled when joining the team. Click the Activity tab to see a list of current users.",
+ "GoJlu1": "Name",
+ "GoMNKq": "Now that you\u2019ve upgraded, you can continue installing Dropbox on your computer.",
+ "GoSmfp": "Edit filters",
+ "GouPmU": "Show off your brand when you share",
+ "GozfFf": "{count, plural, one {Change permission} other {Change permissions}}",
+ "Gp382Q": "Automatically",
+ "Gp73Gl": "Contact your team admin to change your email",
+ "GpDu1w": "With powerful productivity features and {proSpaceLongFormRounded} of space, you can share your work, leave feedback and secure your most important files without ever leaving Dropbox.",
+ "GpJJcz": "Details",
+ "GpPK8+": "Invite a team to join your organisation",
+ "GpRPBp": "Who can access members\u2019 shared links?",
+ "Gpbcs7": "Set due date",
+ "Gpl8g/": "Most relevant",
+ "Gq1zrQ": "Changed your mind?",
+ "GqY805": "{count, plural, one {Delete {count} item permanently?} other {Delete {count} items permanently?}}",
+ "GqeH/g": "Preview",
+ "Gqy59m": "Easily send, securely sign and safely store your most important agreements in one seamless workflow, without leaving Dropbox.",
+ "GrOPDo": "Rename selected file",
+ "GrQ0WV": "Joining date",
+ "GrRQ6k": "Your old security settings will be retained, but you won\u2019t be able to edit or update those settings after your plan expires.",
+ "GrRuNU": "Remove",
+ "GrjtS2": "Audio",
+ "GrzEGn": "Can\u2019t merge with deleted members under legal hold",
+ "Gs7ExQ": "Add as much or as little information as you want.",
+ "GsGfjl": "You have a {discount_percentage,number,::percent} discount on your plan",
+ "GsYWrv": "Your account will be merged into the {team_name} Dropbox account, where you\u2019ll have\na private area for your stuff. {team_name} admins can manage your files and Paper docs if they\nupgrade the account to {trademark_business}. {team_name} has disabled Smart Sync,\nso you\u2019ll be signed out of Dropbox and online-only files will be downloaded to your hard drive\nnext time you sign in.",
+ "Gswd9y": "Tasks",
+ "GtD4wV": "Move",
+ "GtEgoD": "Tell a story they\u2019ll remember",
+ "GtIXiK": "Last activity: {lastActivity}",
+ "GtnN8Q": "Live support",
+ "GuFukq": "This info helps us create the best Dropbox experience for you",
+ "GuPz9+": "Share method",
+ "Gv/wFX": "Attach",
+ "Gv9sd0": "Restore {filename}?",
+ "GvVIof": "{count, plural, one {{count} file} other {{count} files}}",
+ "GvWda5": "Please enter a licence key.",
+ "GvhVZe": "From {date}, we\u2019ll charge you {scheduled_total} per year on your PayPal account.",
+ "GvyTYC": "Enter your user code here:",
+ "Gw/y1C": "+ {overflowCount} more",
+ "GwU19k": "\u2013",
+ "GwYES8": "So-so",
+ "GweSkC": "Updating your billing information will cancel your scheduled plan downgrade. If you still wish to downgrade, you will need to schedule it again.",
+ "GxGFZR": "Corrupt file. Couldn't save as PDF",
+ "GxUUi9": "You\u2019ll get everything in {trademark}, with more features to make your work shine",
+ "GxZHMk": "{proSpaceShortFormTB} of storage space and:",
+ "Gxo9oX": "By the Secretary.",
+ "GxuR0v": "Your {team_name} account is full",
+ "GyXbnS": "Other shared folder",
+ "Gz5ABt": "Can view",
+ "GzIlL6": "Device approval exceptions",
+ "GzWfVx": "Text formatting doesn't look right",
+ "GzWou6": "Recommended for you",
+ "Gzwfsl": "Neither satisfied nor dissatisfied",
+ "H+alQe": "I agree to the Dropbox Terms",
+ "H/EWDP": "Change fill colour",
+ "H/HStg": "1 - Low",
+ "H/swjG": "Uncalibrated",
+ "H039rr": "To accept, you\u2019ll need to create a Dropbox account if you don\u2019t have one \u2013 this is for security reasons.",
+ "H0LN98": "{inviteCount, plural, =0 {Invite people} one {Invite {inviteCount,number} person} other {Invite {inviteCount,number} people}}",
+ "H0eBAl": "You renamed {single_item_name_prev} to {single_item_name_next}",
+ "H0iUxc": "Adam Montgomery, Senior Manager of Programming{br}Sundance Film Festival",
+ "H0vBqO": "Dropbox is out of date. Please refresh your browser.",
+ "H1ElMK": "Remove",
+ "H1M5yT": "{dropbox_paper} is a co-authoring workspace for your entire team. Now you can create, collaborate and provide feedback in the same doc at the same time.",
+ "H1PVRE": "Save space automatically",
+ "H1lq+q": "Manage",
+ "H1oavy": "Complete",
+ "H1vHwe": "Direct debit",
+ "H1ycIc": "Delete {team_name} files from this computer next time it comes online.",
+ "H2GbM6": "Active",
+ "H2IlNh": "Delete",
+ "H2QPye": "Neutral",
+ "H2ofu+": "Your Dropbox {plan} plan will be renewed on {date}. Your current {schedule} total is {recurring_total}.",
+ "H2wQDg": "Leave your feedback on Microsoft Office, Photoshop and AutoCAD files directly in Dropbox, without having to jump between apps.",
+ "H34pPA": "Support language: {supportLanguage}",
+ "H3NEmP": "Show columns",
+ "H3lmrv": "Import contacts",
+ "H421mj": "Background image for header section of plans page",
+ "H4k98t": "Couldn\u2019t retrieve files shared with you. Reload the page to try again.",
+ "H59ICk": "Save change",
+ "H5wjQY": "Approved (unable to edit approved versions)",
+ "H67Ftf": "You\u2019ve been successfully verified. Please proceed with your ticket.",
+ "H684JI": "Assign to a team member",
+ "H68Sgw": "Zoom",
+ "H6l0cK": "{filename} was deleted successfully.",
+ "H6xaCT": "Work Dropbox name",
+ "H7COCY": "File editing apps",
+ "H7SBVz": "Dismissed",
+ "H7UzHi": "You're on the list!",
+ "H7nsto": "This will become a user-managed group, and the person you choose below will be responsible for approving new members. Group members can leave whenever they like.",
+ "H8C+fg": "Codec",
+ "H8M0bZ": "Export removed.",
+ "H8MI4r": "What we recommend",
+ "H8TlMC": "It looks as though this team has already denied your request.",
+ "H8kVwY": "Edit",
+ "H8sj9w": "Terms",
+ "H8wHlD": "User management admin",
+ "H8xyuK": "Try free for {pro_trial_days} days",
+ "H98NkM": "\u00b7",
+ "H9Hs3T": "Non-team member",
+ "H9WoJS": "Can\u2019t change folder yet. Try again when syncing is complete.",
+ "H9Zp4a": "Your {trademark_business} trial is almost over.",
+ "H9aEgq": "Member restored",
+ "H9bzwx": "Access to \u201c{folder_name}\u201d is restricted.",
+ "H9rBQy": "Link accounts to sync private channel names.",
+ "H9rZ+V": "Search Google contacts",
+ "H9uRFU": "Paper is more than a doc \u2013 it\u2019s a workspace that brings creation and coordination together in one place. Write and edit, brainstorm, review designs, manage tasks or run meetings.",
+ "HA1+Cm": "Why are you deleting Vault?",
+ "HAAh4y": "File locking",
+ "HACouR": "From {transition_date}, the {plan_change} new {schedule} total will be {recurring_price}.",
+ "HAcA8Z": "Error 500",
+ "HAlJa9": "More about domain verification",
+ "HB7g+f": "(must exceed 15 GB)",
+ "HBbLM7": "Your free trial ended on {trial_end_date}. To keep using {trademark_business}, add your billing info.",
+ "HBov4l": "Can\u2019t copy file to Paper",
+ "HC8obw": "Choose members",
+ "HCPIUK": "Next",
+ "HCULl2": "Leave \u201c{group_name}\u201d?",
+ "HCfuYu": "{billing} billing",
+ "HDHR0n": "Remove member",
+ "HDI+C1": "Add sign-out URL",
+ "HDLXAq": "Cannot connect to Canvas. Contact your IT admin for help.",
+ "HDZWlz": "Click Agree to:",
+ "HDhelG": "A user is prompted to use Dropbox Rewind to restore legacy files",
+ "HEAnKS": "Speed up deployment with advanced membership options.",
+ "HEEzOS": "Other",
+ "HEuMg1": "PIN protection",
+ "HFHj7f": "Continue with your {basic_trademark} plan",
+ "HFIwYG": "Deleted files",
+ "HGK/k8": "Done",
+ "HGnEOI": "Undo recent move/copy/rename/delete",
+ "HH1Zxq": "Hold name",
+ "HHFG/g": "Folder name",
+ "HHHqnX": "Members of {team_name} shared workspace",
+ "HHSh3Y": "Name / Host / Alias",
+ "HHw5B1": "Cancel",
+ "HI573A": "Collapse sidebar",
+ "HIIRnD": "Expiry",
+ "HJycq7": "You\u2019ll find more tips and tricks in the \"Get started with Dropbox\" guide.",
+ "HK/4rZ": "Dropbox brings everything \u2013 traditional files, cloud content and web shortcuts \u2013 together in one place.",
+ "HK0Txc": "Copy invitation link",
+ "HKKwpB": "Enter your mobile phone number",
+ "HKLnt7": "Try Professional free",
+ "HL27OJ": "Page {index}",
+ "HL53xA": "Very helpful",
+ "HL8I1g": "Loading...",
+ "HLCXYg": "Started sharing",
+ "HLFmts": "Verification email sent.",
+ "HLKO0X": "Create, edit and organise G Suite files in Dropbox. Google Docs, Sheets and Slides are managed directly in Dropbox so you have one place for all of your stuff.",
+ "HLRJwR": "Members",
+ "HLjGpv": "Rotate clockwise button",
+ "HLknNq": "From {date}, we\u2019ll bill you once a {new_period_noun} for your {plan} plan. Your new {new_period_adj} total will be {new_amount}.",
+ "HLmZdz": "Interpretation.",
+ "HMW7Ne": "Switch to your personal account",
+ "HMXhhr": "Easily clear files from lost or stolen devices",
+ "HN1A6V": "Unlock files",
+ "HN4DNT": "Device no longer counts towards the limits",
+ "HNC9Lh": "View and share your videos with clients and collaborators without comments or distractions.",
+ "HNESzN": "Leave time-coded feedback",
+ "HNQAmH": "Token copied to clipboard",
+ "HNYKWv": "Sep",
+ "HNYPaQ": "Use account transfer to maintain ownership of company data as employees leave the team",
+ "HNr4Tz": "I\u2019ve had a major personal or professional life change since my initial purchase",
+ "HONi9s": "We sent a security code to {phone_number}.\n Enter it below to verify your phone number",
+ "HONz4t": "Members",
+ "HOb8Zp": "The following characters are not allowed: angle brackets \\ / : ? * \" |",
+ "HOeBKT": "Team member",
+ "HOpKHM": "{billing_cycle} \u2022 10 TB of space",
+ "HP1brc": "{numRemainingLicenses, plural, one {You have {numRemainingLicenses} licence available.} other {You have {numRemainingLicenses} licences available.}}",
+ "HPL0VF": "There was a problem completing this request",
+ "HPQGXc": "Asked to join {teamName}. Watch for your invitation at {receiverEmail}",
+ "HQ+1ks": "Successfully signed up for Dropbox.",
+ "HQ5Qz9": "People you\u2019ve removed from this list will still have access to anything that\u2019s already shared.",
+ "HQHg/u": "Members:",
+ "HQLtn1": "Folder updates in progress. Please try again later. Learn more",
+ "HQbgSZ": "Professional",
+ "HQpjCB": "There was an error checking whether this sign-in was approved.",
+ "HQyDBL": "Colour",
+ "HRXOjw": "opt",
+ "HSEIk+": "Share photos, family documents and more ",
+ "HSOuro": "HELP ARTICLES",
+ "HSPEq6": "Email sent. Once your email has been verified, reload the page to edit the file.",
+ "HTNS2w": "Get more space so you can send file requests.",
+ "HTfFxv": "Save or drag files and folders directly into your Dropbox desktop folder",
+ "HTy4qW": "Resend code",
+ "HUdX3O": "Advanced sharing features let you share files securely with contractors and clients.",
+ "HUib64": "Check the location",
+ "HVFLyu": "Get a quick view of your next meeting",
+ "HVbcWT": "Not happy",
+ "HWIOHC": "Give your team account a name",
+ "HWM1AQ": "{target_user} is not a contact on Zoom",
+ "HWM6Uw": "This email address is already taken. Sign in or reset your password",
+ "HWzWGh": "You don\u2019t have any closed file requests",
+ "HX2xZg": "Everything in {trademark}",
+ "HXCRYd": "Please enter a valid email address.",
+ "HXUg2y": "Send feedback about {fileName}",
+ "HXV3TA": "Order",
+ "HXZRg5": "Members can create, edit and comment on docs.",
+ "HXu34b": "If you needed to change the date range, create a new hold. Once a hold is active, the dates can\u2019t be changed.",
+ "HZAH7x": "Restore {display_name}\u2019s account",
+ "HZLxBg": "Preparing content. We\u2019ll email you when it\u2019s ready.",
+ "HZQHwv": "Enter your password to continue.",
+ "HZjsks": "Your subscription is on an extension period.",
+ "Ha0eqI": "Share",
+ "Ha0jO6": "This is where you can review customer information and sign in to customer accounts.",
+ "HaTVO+": "Powerful admin tools",
+ "Hb4Su9": "{count, plural, one {Get {count} more day at no cost} other {Get {count} more days at no cost}}",
+ "Hb7XPb": "Currently a team admin",
+ "Hb8EW5": "A maximum of 10 files can be added to a reply",
+ "HbDkss": "To change who can access the link, delete this link and create a new one.",
+ "HbIa1K": "{count, plural, one {Delete {count} item permanently?} other {Delete {count} items permanently?}}",
+ "HcGRtD": "Confirm",
+ "HcGUcR": "{count, plural, one {You rolled back {count} item in {folder_path}} other {You rolled back {count} items in {folder_path}}}",
+ "HcIX4g": "Failed to load modal.",
+ "HcLjiD": "Watermarking is available on PDFs and images.",
+ "HcOP1H": "Breadcrumb target",
+ "HcWcP1": "Try {trademark_professional} for {professional_storage_tb}",
+ "HcrzX8": "Change sync default",
+ "HdXJYa": "ISP",
+ "HdZiKF": "{actor_name} unarchived the {card_name} card with this file attached",
+ "HdahfL": "How it works",
+ "HdhXP9": "{count, plural, one {Couldn\u2019t move {count} item to {folderName}. Shared folders can\u2019t be moved to other shared folders.} other {Couldn\u2019t move {count} items to {folderName}. Shared folders can\u2019t be moved to other shared folders.}}",
+ "HdzKjx": "Create and use Google files from within Dropbox to have all of your spreadsheets stored in one place.",
+ "He0jGy": "You\u2019ll create a new, personal Dropbox account for your existing files and Paper docs.\nThis will give you two accounts \u2013 your {work_email} account for {team_name} work and your\n{personal_email} personal account for your existing files.",
+ "HeEyzc": "Get help from our chatbot",
+ "HeO+aZ": "Access your content from as many devices as you need",
+ "HfKKgw": "Step {step}",
+ "HfawA2": "After this invitation, you\u2019ll have no remaining licences.",
+ "HfqlAa": "Show viewer info on files",
+ "Hg3ZgC": "File is too large to be uploaded.",
+ "HgtbP8": "Spaces is a beta product from Dropbox",
+ "Hgzy7O": "All content starts as online only",
+ "Hh48DQ": "Select or create group",
+ "HhF+sV": "{app_name} is connected",
+ "HhKKvd": "Done",
+ "HiCMAW": "Legally required",
+ "HiF7mU": "Cancel",
+ "HigOCc": "Authentication managed by admin",
+ "HjCRjv": "OSX package file",
+ "HjO8Si": "Join and continue",
+ "HjYlKs": "Go to preview",
+ "Hjoc2x": "\u2318 + x",
+ "Hjykd1": "Sign in",
+ "HlErkT": "For now, everyone in your team will have access to these folders. Don\u2019t worry, it\u2019s easy to manage who sees what.",
+ "HmSzCT": "Syncing and uploads",
+ "HmX4I+": "View as",
+ "HnQxWy": "Uploads will be disabled 30 days after the deadline.",
+ "HnlRF6": "Please provide a rating",
+ "Ho1wvS": "Add a professional touch to shared files with custom elements, such as your logo and the name of your brand. Try it now by upgrading to Dropbox Professional.",
+ "HoIciT": "Get help using Dropbox for Salesforce Marketing Cloud. Or sign out of Dropbox.",
+ "HoOysE": "This opens the Dropbox desktop app by default (instead of Windows Explorer or macOS Finder) for all members. Members can override this setting individually.",
+ "HoaWzb": "Store and back up",
+ "HogqPZ": "Accept",
+ "HoreJj": "Preview on Dropbox",
+ "HoteAV": "Document crucial information and specific actions to take in the event of an emergency to protect your team, property and processes.",
+ "HpU0zC": "It\u2019s been over 15 minutes since you tried to sign in to Dropbox. If you still want to sign in, please go back to your browser and try again.",
+ "Hpq9jD": "File settings updated.",
+ "Hq9ZDW": "Reminder sent.",
+ "HqEpaM": "Remove user",
+ "HqqxDf": "Team and shared",
+ "HrYfiy": "Save attachments to Dropbox",
+ "Hrl6yI": "Members can\u2019t sign in with SSO",
+ "HrsBkO": "Assign a task",
+ "HsAedA": "Changes to selected files using {app_name} will be saved back to Dropbox. This app will have access to the username, email address and country for your account.",
+ "HsNFKS": "Please upload files under {size}",
+ "HsXino": "Remove imported contacts?",
+ "Hsu6/c": "Change sync default for {number_of_folders} folders",
+ "Ht+u+u": "New file default setting",
+ "HtRCek": "App permissions",
+ "HtoHur": "Downgrading to Basic?",
+ "HtojdY": "Administrator",
+ "HuBLn4": "Security and privacy",
+ "HuMd4z": "Let members route content through other emails",
+ "HuNwyG": "VAT ID: {id}",
+ "HuQz7C": "Store signed completed documents in your Dropbox account.",
+ "HuZ5CC": "Back",
+ "Huz4GZ": "Optional: turn off scanning",
+ "Hv/B/8": "Aperture",
+ "Hw0CHA": "New campaign",
+ "HwNzSA": "
Showcases and folders do similar things \u2013 they are ways of packaging (or \u201cbundling\u201d) files in your Dropbox account. You can then share this package with others.
There are three main differences between showcases and folders:
A folder is simply a list of the files within it, whereas a showcase allows you to curate the files on a branded page with visual previews, custom layouts and file captions
You can track activity on a showcase but not on a folder
A file can only exist in a single folder, whereas a file can be included in multiple showcases
There\u2019s also one important similarity: if you edit the files in a showcase or shared folder, recipients will always see the latest version of the file.
",
+ "HwUfO2": "The domain portion of the email address (the portion after the @: {domain}) is invalid.",
+ "HwbdrG": "Anyone in the {trademark_business} team with this link can view the file. Downloads disabled.",
+ "HxBVSR": "Restore access",
+ "HxJdqb": "Contact your channel partner",
+ "HxTR1s": "{count, plural, one {{count} image} other {{count} images}}",
+ "HxsND3": "An error occurred. Please contact your family manager for help.",
+ "HyLTmY": "We\u2019ll send an email to {email}. {link}.",
+ "HyWjj5": "Your security codes will be sent by text message",
+ "HzJQla": "How should we send the download link to your mobile device?",
+ "HzLiwF": "Document sidebar",
+ "Hzf41j": "1. Choose your plan",
+ "Hzl5eH": "This file request was closed while you were uploading. Contact {name} to re-enable the request.",
+ "HzvYM+": "View tickets",
+ "I+93e/": "We\u2019re always adding apps to App Centre.",
+ "I+AUF/": "Emergency and continuity plan",
+ "I+q7BE": "Switch to {tm_professional} trial",
+ "I+vIeJ": "Select all",
+ "I+y+FC": "File requests",
+ "I/3pPF": "Enough room for all of your photos, work presentations or whatever you need to store",
+ "I/B7j3": "You\u2019re upgrading to {trademark_business} {plan}. We\u2019ll charge you {prorated_price} now, which is pro rata for the current billing period. Your plan will be renewed on {date}. Your new {schedule} total will be {scheduled_total}.{upgrade_warning}",
+ "I/IF83": "To",
+ "I/JP41": "Retention period",
+ "I/QUfU": "Send files up to 2 GB with Dropbox Transfer",
+ "I/W9YH": "Shared folders owned by {team_name} will be moved automatically into that account.\n If you have a lot of shared folders, this could take a few hours.",
+ "I/ePp9": "Added the shared folder {folder_name}.",
+ "I/mK/6": "Tick the box if a task is complete. Otherwise assign a time today, this week or later to work on each task.",
+ "I0SkG7": "Couldn\u2018t find an answer in the Help Centre or community?",
+ "I1C9EB": "Go to Content Builder",
+ "I1MLmP": "Active member",
+ "I1RVgD": "User isn\u2019t eligible to join this team.",
+ "I1bz2Z": "Share {storage} of encrypted storage",
+ "I20Bop": "{count, plural, one {{count,number} file added} other {{count,number} files added}}",
+ "I2Qd6g": "You\u2019re ready to go!",
+ "I2Va9e": "Smart Sync gives you access to all Dropbox files on your computer without\n filling up your hard drive.To save hard drive space, right click on a file or\n folder, go to Smart Sync and choose Online only.",
+ "I2bHz3": "No more scattered files and endless email threads with clients. Capture project information, share deliverables and collect targeted feedback in one shared doc.",
+ "I2t6Ty": "Please enter a valid VAT number (e.g. {examples})",
+ "I3/Dwd": "1. Download the template",
+ "I3/v6g": "Secure your files \u2013 add passwords, set expiry dates and get download notifications",
+ "I3aRtX": "My campaigns",
+ "I3gWqn": "Do you want to send a reminder to {email} to accept your trusted contact invitation?",
+ "I3lqrq": "{current_plan_name} is for teams of 3 or more. If it\u2019s just you, try {professional_plan_name}. Then you won't pay for features you don\u2019t need.",
+ "I3zHF3": "Edit product",
+ "I4Xvx8": "Calendar and Contacts",
+ "I5e5o2": "{photo_count_description} and {video_count_description}",
+ "I5l08t": "A new folder will be created",
+ "I5lVCX": "This file can\u2019t be previewed. Previews are only available for files created in Sketch v.43 and later.",
+ "I5nk31": "These files have already been purged.",
+ "I5xM/O": "If you still want to cancel, please acknowledge the following:",
+ "I61oHi": "Billing",
+ "I6hPTR": "Get the Passwords app and start your 14-day trial",
+ "I6sc1F": "Make meetings worthwhile",
+ "I75joF": "Get started by freeing up space on your hard drive with Smart Sync",
+ "I7KA8j": "{count, plural, one {byte} other {bytes}}",
+ "I7Mm5h": "You\u2019re not being charged at the moment. Free trial will end on {date}",
+ "I7RuWD": "Unable to copy the link code. Please copy it manually",
+ "I7g4FQ": "Please enter an email address",
+ "I8F8pG": "This makes it easy to get back into your account if you ever forget your password.",
+ "I8qrCL": "Add files with a tap. Back up photos with automatic camera uploads",
+ "I9+jET": "Welcome!",
+ "I9B1GR": "Upgrade to get password protection, up to {premium_file_size_limit} transfers and expired transfer history.",
+ "I9CJF0": "See other plans",
+ "I9CTpA": "Are you sure you want to change plans?",
+ "I9Oejj": "Someone drags a file into Vault, enters a PIN to unlock it and sends an invitation to a trusted contact.",
+ "I9PBpI": "Jira",
+ "I9a0X1": "Classification type",
+ "I9eb8i": "search dropdown",
+ "IA7/9q": "Dropbox Migration Assistant",
+ "IA9q8v": "Your start date is after your end date.",
+ "IAY62Q": "Enable",
+ "IArsgq": "Access to Records.",
+ "IAtXOQ": "Invited",
+ "IB+IaQ": "Get visibility of your team\u2019s content, permissions and activity, so you can stay compliant and keep your company data secure.",
+ "IBCGt3": "Credit card. We accept {payment_methods}",
+ "IBl3g2": "App permissions",
+ "IBxTrC": "Dropbox account recovery",
+ "ICOWX5": "Protect files in a vault, with help from Dropbox",
+ "ID6eR4": "Cancel plan",
+ "IDWwQ/": "Yes! Please contact our sales team for more information.",
+ "IDb8MA": "Fewest times shared",
+ "IE4EnV": "Request a refund of your Dropbox Business subscription",
+ "IEMSw4": "Hold activated. Copying everything might take a while depending on the number of files.",
+ "IF7btL": "additional beta terms",
+ "IFRfsY": "Deleted by",
+ "IFVQvb": "OK. We\u2019ll let {displayName} know.",
+ "IFcepc": "No team members found. Contact your admin to add them.",
+ "IFv9MX": "Choose Smart Sync settings and enable Team Selective Sync",
+ "IG+GRI": "Let members seamlessly perform actions, such as PDF edits, signature requests and image adjustments, directly from Dropbox. Turning them off will hide them from your team.",
+ "IGdWDd": "Drag files here or choose folders",
+ "IGlwYu": "{count, plural, one {{count} file} other {{count} files}}",
+ "IGvssg": "Dropbox has sent a verification email to {email}. Check your inbox and click on the link in the email to finish updating your personal email. If you can't find it, check your spam folder or click the button to resend the email.",
+ "IGxfH9": "Members can invite people to the team",
+ "IHG5qz": "If you want to continue using it, why not add your billing information now and get it out of the way? It won\u2019t interrupt your free trial period, and you\u2019ll transition seamlessly at the end of the {trial_days} days.",
+ "IHLlRL": "Dropbox folder icons on a smartphone screen and a desktop screen to indicate Dropbox multi-device.",
+ "IHMN7c": "{value, plural, one {for {value,number} month} other {for {value,number} months}}",
+ "IHNq3h": "Smart Sync gives you access to all of your Dropbox files on your computer without filling up your hard drive.",
+ "IHOk/2": "Work account",
+ "IHhZ2t": "Block by default",
+ "II8D5D": "Management at the team level",
+ "IIKqY1": "You can\u2019t create a {dropbox_trademark} account using your company email address because one already exists. {trial_text} Please use a different email address above, or you can create an account to join the existing team.",
+ "IIbiVO": "Calendar and Contacts",
+ "IJn92r": "Simplify team administration",
+ "IK0bTU": "From {date}, we\u2019ll charge you {scheduled_total} per year on your card ending {last4}.",
+ "IKXfnc": "Retry",
+ "IKmkgl": "This list is limited to the last 10 active devices, so select 'Other' if your device is not shown.",
+ "ILPjiY": "Your accounts will stay separate, but you can easily switch between them and access both from any device.",
+ "ILQdl7": "Schedule a date and time",
+ "ILSqGs": "Want to see the latest version and edit?",
+ "ILTzDF": "{count, plural, one {{count} second} other {{count} seconds}}",
+ "ILfrx5": "A screen capture that shows all of your files and folders stored on Dropbox",
+ "ILzLh9": "Use existing PayPal account",
+ "INhk+Y": "How the system extension works",
+ "IO/mPH": "Invite more at {per_user}/user/month",
+ "IO2pKS": "Updating folders\u2026",
+ "IO4lT1": "{count, plural, one {Uploading {count} file} other {Uploading {count} files}}",
+ "IOiBbS": "Remove export",
+ "IOoQqM": "Unmanaged users who joined your team.",
+ "IOqYO1": "I've created the {record_type} record",
+ "IP8VLq": "If you\u2019re sure you want to download this file:",
+ "IPf/4X": "Sent to {recipient}.",
+ "IR9oLA": "You don\u2019t have permission to modify admin accounts",
+ "IR9yj4": "Off",
+ "IREq7n": "Developer & API",
+ "IRFEz7": "Please enter a valid expiry date.",
+ "IRPFmS": "You have {open} and {closed}",
+ "IRxSl1": "Sync & upload",
+ "IRyrtr": "Unshare file",
+ "IS3gY2": "See EVH details",
+ "IS7g2s": "Date of charge",
+ "ITG2x1": "You deleted {single_item_name} in {folder_path}",
+ "ITkBiv": "Bring all of your team\u2019s ideas and visuals together. Collect inspiration from apps such as Pinterest and YouTube, exchange ideas in real time, and get feedback.",
+ "ITkgMJ": "{name} shared {single_item_name}",
+ "IUBT/B": "{item_name} + {item_count}",
+ "IUj/kj": "Add admin permissions for {display_name}",
+ "IUsgJf": "Show",
+ "IVDDd0": "Teams with access",
+ "IVE86g": "Remove",
+ "IVdsoO": "Adding to your personal Dropbox...",
+ "IW4j/O": "Add members",
+ "IXOQ0a": "Includes Dropbox Pro and unlimited eSignatures with HelloSign Essentials.",
+ "IXvy9x": "Team folder",
+ "IYEBFs": "Only you can view",
+ "IYLgtU": "You\u2019re upgrading your plan to Dropbox {plan}. We\u2019ll charge you {prorated_price} now, which is pro rata for the current billing period. Starting on {date} and until you cancel, we\u2019ll bill you once a {schedule_noun}, and your new {schedule} total will be {scheduled_total}. If you cancel, previous charges won\u2019t be refunded unless it\u2019s legally required.",
+ "IYiHJp": "Team",
+ "IYl/O7": "Your team will be missing out on {space} of space, and you and your team members have each returned to your initial space quotas.",
+ "IYq3mi": "Internet Explorer 11",
+ "IZG77T": "1. Enable Dropbox within Canvas",
+ "IZc5xp": "For teams that need more security. Members will be required to create very complex passwords that might be more difficult to remember.",
+ "IZk7A9": "Purple",
+ "IZuGOl": "Allow",
+ "IZzyYw": "Shared with",
+ "Ia9tjc": "This folder is automatically shared with all members of {team_name}",
+ "IaA3O0": "You\u2019re about to sign in to the Dropbox desktop app with your {provider} account. Would you like to continue?",
+ "Iabjpp": "The Dropbox system extension allows features like Smart Sync to work.",
+ "Iaf9Ew": "Lets people download files from a showcase. Members can override this on showcases they create.",
+ "IbkyyT": "Get started",
+ "Ibl1ha": "Sign-in URL: {url}",
+ "Ic3QpQ": "Only the owner can move some of these folders to the {team_name} team space.",
+ "Ic4cWj": "Find receipt",
+ "IcXDEr": "{count, plural, one {{count} team folder selected} other {{count} team folders selected}}",
+ "Iccom6": "Your team no longer has full use of {trademark_business} features. To keep using {trademark_business}, contact your admin.",
+ "IdEbpd": "Error loading",
+ "IdZVvZ": "You can find your tenant ID in the Azure AD portal.",
+ "IeSMG5": "Basic ({basic_storage_gb})",
+ "IeZRcz": "Start a new doc in a channel and invite your team to add ideas.",
+ "Ieka0c": "Label type",
+ "IeqqoW": "Verify your account",
+ "Ieup/u": "Delete\u2026",
+ "IfIQnx": "Check out your team\u2019s files, and add your own projects.",
+ "IfPLvO": "Permanently deleted files",
+ "IfhxcJ": "Full management of the enterprise console and all teams",
+ "IfqARb": "Sharing is a premium experience with Showcase. Share files beautifully with your own branding, and track engagement with analytics for each file.",
+ "IgTsLe": "Cancel any time",
+ "Igglgy": "Still can\u2019t find what you\u2019re looking for?",
+ "IhNGMT": "Can I upgrade my existing {trademark_basic} or {trademark_plus} account? How does migration work?",
+ "Ihl6eV": "{numRemainingLicenses, plural, one {After this invitation, you\u2019ll have {numRemainingLicenses} licence remaining.} other {After this invitation, you\u2019ll have {numRemainingLicenses} licences remaining.}}",
+ "IidDKh": "When someone leaves a comment, you\u2019ll be notified \u2013 even if they forget to tag you. Messy email threads full of follow-up questions are a thing of the past.",
+ "IiiYVJ": "Labels",
+ "IjD7ox": "{name} ({email}) {br} invited you to edit this folder",
+ "IjYLVs": "Dropbox uses 256-bit AES for files at rest and SSL/TLS for data in transit, so your files are protected.",
+ "IjevGW": "Add groups to this team folder.",
+ "IkRpej": "Make enabling two-step verification optional for some members \u2013 even when it\u2019s required for the team.",
+ "IkpObN": "device removal failed",
+ "Il5prr": "Invoice details updated.",
+ "IlC3VH": "It\u2019s easy to create the team from your Dropbox trial again.",
+ "IlY8Vt": "Sharing permission",
+ "Ilgu81": "Sign in as user",
+ "ImAPkp": "Your changes will be applied to this folder and any folders inside it.",
+ "ImH82y": "Invitation enforcement",
+ "ImXGVq": "Add a backup phone number for security codes.",
+ "Imh9y6": "Yes. You can link to videos, music and many other types of file. And Paper supports previewing of all file types that you can preview in Dropbox, as well as many others. Find out more about how Paper works with YouTube videos, GIFs, Pinterest boards, Google Maps, SoundCloud clips and more.",
+ "Imk9XS": "Do you also need this on your computer?",
+ "ImyZr+": "Sent by",
+ "InJtLb": "Our Help Centre has you covered. Check out our {trademark_business} guide, too.",
+ "InjGFP": "Don't worry, {sharedFolderName} won't be deleted for anyone else. You can add it back to your account later if you want.",
+ "IoJAyh": "Extract to my Dropbox",
+ "IoL4sF": "deleted file",
+ "IoOBAj": "For files in team folders, restore from the content page.",
+ "IoV9+u": "All members will be required to install the Dropbox EMM app to access company files",
+ "IoYdTy": "Done. Access to the customer console and the partner portal is removed.",
+ "Ip712y": "(iOS)",
+ "IpS5u7": "Text my backup phone",
+ "Iq7/TN": "Remove from Dropbox",
+ "IqMdhu": "Drafts",
+ "IqV88I": "Upgrade",
+ "IqXJ96": "{durationTimeInYears, plural, one {{durationTimeInYears} year from creation} other {{durationTimeInYears} years after creation}}",
+ "Iqgiqi": "Features",
+ "IqlNq5": "An error occurred. Please refresh the page to try again.",
+ "Ir37mw": "About trusted contacts",
+ "IrhSVL": "XLSX, XLS, CSV and more",
+ "Irqpnj": "You're inviting {email} to {team} Dropbox and adding them to your plan.",
+ "IsJ4O/": "Invite with a link",
+ "ItRAik": "Yes, it\u2019s easy to make your files available, even for when you\u2019re offline! Simply right click on the file and choose Local from the Smart Sync menu. The full contents of the file will be synced to your computer\u2019s hard drive so you can work offline.",
+ "ItUH8r": "Paper",
+ "ItiG5w": "Remove {domain_name}",
+ "Itjym0": "Folder activity",
+ "Itku5N": "Dropbox community",
+ "ItwtZa": "Zip download failed.",
+ "IuNfus": "Your exported docs are ready",
+ "IuT4QP": "Manage folder permissions by group",
+ "Iuhu1I": "Cancel this invitation?",
+ "IuuTKL": "Create new hold",
+ "IvXUFf": "Licences used",
+ "IvzfWf": "Cancelling your Dropbox {trademark_plus} trial in the {billing_store} will not affect your {trademark_business} account.",
+ "IwIg3D": "The system extension is disabled for your team. Install the extension to allow features such as Smart Sync to work.",
+ "IwqHAa": "{count, plural, one {
and {count} more...
} other {
and {count} more...
}}",
+ "Ix5WTb": "Completed",
+ "IxHAnI": "Loading account details...",
+ "IxY+nX": "Watch again",
+ "IyXKYR": "Invoice details",
+ "IyiEVq": "Confirm purchase",
+ "Iymyiq": "Remove file link from message",
+ "Iyox7e": "Accounts & billing",
+ "IypK6Y": "Connect to Zoom App",
+ "IypUu0": "Or share directly",
+ "Iyx6hS": "{count, plural, one {Members of the file with this link and password can edit. Expires in {count} day.} other {Members of the file with this link and password can edit. Expires in {count} days.}}",
+ "IzGklK": "Can\u2019t open {folder_name}. Ask your admin for access.",
+ "Izdq5R": "Nicole D\u2019Antuono, VP of Employee Applications",
+ "IzlaFV": "Next: Share",
+ "IzrCX2": "Windows PC",
+ "Izv6d0": "Email sent to {email}! Please check your inbox.",
+ "J+0ZxM": "Could not complete connection \u2013 please try again later",
+ "J+IPZ5": "This member will have to change their password next time they sign in to Dropbox or link a new device.",
+ "J+cK0b": "Extract to {cdm_tmf_name} folder",
+ "J+eg6A": "Enterprise Mobility Management (EMM)",
+ "J+rPtr": "You can\u2019t edit or create file requests whilst you\u2019re over quota",
+ "J/0Ckc": "Now that you have Dropbox, get to know what it has to offer.",
+ "J/2gSB": "Page list",
+ "J/4DT7": "{count, plural, one {Can only send {count} invitation. Ask a team admin to add licences.} other {Can only send {count} invitations. Ask a team admin to add licences.}}",
+ "J/afHO": "Security & privacy",
+ "J/miRj": "Attach Dropbox files and folders to your emails.",
+ "J/uM6N": "for example, \u2018yellow USB key\u2019",
+ "J/vDSM": "Custom admin",
+ "J0LNeg": "We were unable to unlink the host. Please try again.",
+ "J0O4ka": "Try uploading the file again at ",
+ "J0fQfy": "\u201c{old_name}\u201d will become \u201c{new_name}\u201d. Your shortcuts and favourites should continue to work.",
+ "J0oyWv": "{price}/year{line_break}({tax_string})",
+ "J1LB29": "Team Selective Sync",
+ "J1Pw0k": "Connect your Canvas to Dropbox",
+ "J1aoBw": "Invitation only. Members of parent folders can\u2019t access.",
+ "J1cTH1": "To [{confirm_text}], first type \u201cPROD\u201d:",
+ "J2McI1": "Create an email address",
+ "J2kFzi": "On {date}, your plan will change to {trademark_business} {plan}. Your new {schedule} total will be {scheduled_total}.",
+ "J2nHW4": "Your legal holds subscription has ended. Download any held files before {end_date}. After that, all of your holds will be released, and you won\u2019t be able to access legal holds pages.",
+ "J2oXAz": "Security check",
+ "J3G7RO": "Make company managed",
+ "J3TQGR": "You protected your shared links with {links_with_expiration_date} and {links_with_password}",
+ "J3Wsth": "Email me when",
+ "J3Za6o": "{trademark} is free. Here\u2019s what you\u2019ll get:",
+ "J3qpA5": "Discard",
+ "J48vHl": "Firefox",
+ "J4Iou5": "Preview feedback survey",
+ "J4SgeL": "Transfer expired on {date_string,date,::yyyyMMdd}",
+ "J4nSFt": "You\u2019re about to unlink {member_name}\u2019s {device_model}. It will immediately stop syncing all sessions with their {team_name} Dropbox on this device.",
+ "J50R5r": "If you use more licences than you\u2019ve purchased, you\u2019ll be charged for the extras in your next billing cycle",
+ "J54snd": "Create new group",
+ "J5BuTc": "Files deleted",
+ "J5IeA4": "You purchased Dropbox {dropbox_plan} via the iOS app.",
+ "J5Qx8E": "MM/DD/YYYY",
+ "J5cx5Z": "Email sent successfully",
+ "J5qhzs": "Highest activity",
+ "J5xMEt": "Can I change my payment method later?",
+ "J6Utpo": "You rolled back {single_item_name} in {folder_path}",
+ "J6WPR4": "{count, plural, one {{count} licence} other {{count} licences}}",
+ "J6pSA8": "Pending email re-verification",
+ "J74SUV": "Upgrade to Advanced",
+ "J7DwR2": "Private group",
+ "J7IViB": "Standard, billed yearly",
+ "J7Q2k7": "Auto-PDF",
+ "J7UPY9": "Flip left",
+ "J7yt8I": "Upload details",
+ "J8/Ieo": "For teams",
+ "J85EWX": "All amounts shown are in {currency}.",
+ "J8TGXi": "You\u2019ve earned {bonus_space}!",
+ "J8bjH6": "Permanently deleted 1 item.",
+ "J8vXtB": "Pick the dates to include",
+ "J8zY2i": "On",
+ "J917V9": "{name} and {other_member_count} more",
+ "J98s/Q": "This account is an admin of the {team_name} Dropbox account.",
+ "J9ZdWw": "New shared folder",
+ "JAGh41": "People we think you work with have joined this team",
+ "JAKb9k": "Select a billing question",
+ "JAnIkC": "{count, plural, one {{count,number} account was already deleted, but you can still restore it: {emails}} other {{count,number} accounts were already deleted, but you can still restore them: {emails}}}",
+ "JB5J60": "With as much space as you need and team folders, your team can keep work projects in one place so you\u2019re always on the same page.",
+ "JBINyn": "Close",
+ "JBa1RC": "Cancel",
+ "JBic/M": "You\u2019ll be working with your team in no time. Now is a great time to move on to the next step.",
+ "JBylJC": "People within the company",
+ "JC1QAn": "By continuing, you agree to the",
+ "JC1XBf": "{maxRewindDays, plural, one {File recovery and version history ({maxRewindDays,number} day)} other {File recovery and version history ({maxRewindDays,number} days)}}",
+ "JCm3w7": "Choose a file",
+ "JD67qu": "Delete team?",
+ "JD6thv": "Ctrl + a",
+ "JDP9ok": "{team_group_name} can view",
+ "JDRaFD": "Today",
+ "JDZHJs": "Organise your workspace",
+ "JDlenX": "It\u2019s inappropriate.",
+ "JEBE2H": "1000-2499",
+ "JECTrw": "{count, plural, one {Send to {count} person?} other {Send to {count} people?}}",
+ "JEE1p9": "{width} x {height}",
+ "JERs0V": "Not currently owned",
+ "JEcbSN": "Video details",
+ "JEhA0m": "Ticket",
+ "JEkrtt": "{city}, {region}",
+ "JFibpn": "Unsubscribe",
+ "JFlgO7": "Content:",
+ "JHfvFk": "Notification.",
+ "JHqw26": "Bottom right",
+ "JI9VaJ": "Try these templates",
+ "JI9e/h": "Let them keep access to shared folders",
+ "JIHRo/": "Try checking your Internet connection",
+ "JILc60": "Your user code does not appear to be valid. Please confirm you have entered it correctly",
+ "JItU3G": "Request sent!",
+ "JJEiEL": "Next",
+ "JJdAvv": "Need different features",
+ "JK63j9": "Anyone with edit access can change these settings.",
+ "JKAvx2": "Choose a course",
+ "JKEEZK": "This message cannot be edited. {dropboxBrandDisplayName} costs {advertisedMonthlyPriceText}",
+ "JKI7es": "{count, plural, one {Invite {count} friend} other {Invite {count} friends}}",
+ "JKi2K/": "Find by name",
+ "JKxwQ7": "Cancel your trial",
+ "JL4EVD": "We couldn\u2019t reach your phone number. If this has happened before, click here.",
+ "JLLSeH": "Jot down ideas and coordinate projects in a new type of doc",
+ "JLWIvQ": "{count, plural, one {The {count} member other than you will be signed out of dropbox.com immediately and prompted to reset their password.} other {All {count} members except you will be signed out of dropbox.com immediately and prompted to reset their passwords.}}",
+ "JLWJ78": "Work remotely",
+ "JLWT/P": "Discover what\u2019s possible with apps on Dropbox",
+ "JM0/fV": "Paid business team required",
+ "JMLUbg": "Which domain would you like to add?",
+ "JMYbVk": "{index}. About you",
+ "JNMhbv": "For your security, Dropbox requires you to set a password to change your email address.",
+ "JNPl6M": "Account converted and 1 licence freed up",
+ "JO6LVK": "Shared by",
+ "JO8jkB": "Download Dropbox",
+ "JOloNw": "Dropbox needs to verify your email address {email} before you can register an API app. It\u2019s as simple as clicking the link in the verification email we send you.",
+ "JOp+zI": "Cannot select files from other account",
+ "JP4mOr": "Cartoon character embarrassed",
+ "JPFKUw": "Export {num_of_docs} docs",
+ "JPO0/I": "Try again",
+ "JPP1Le": "Report a problem",
+ "JPS3CZ": "I am cancelling because...",
+ "JPk+XA": "{count, plural, one {{count} member ({outside_team_string})} other {{count} members ({outside_team_string})}}",
+ "JPqK3V": "I agree to the Dropbox Terms",
+ "JPwjIB": "{value, plural, one {{value,number} byte} other {{value,number} bytes}}",
+ "JQTSO1": "You won\u2019t see future changes or have access to the content that you or others added.",
+ "JR4Wmb": "Remove",
+ "JRBRTW": "Step 2 of 2",
+ "JRFAZv": "help centre article about verifying your email address",
+ "JRcNRO": "Submitting",
+ "JRu22W": "{successful_count,number} of {total_count,number} moved to {target_team_name}",
+ "JS1K3G": "All of your alerts may already be acknowledged.",
+ "JS4aqp": "Uploaded {filename}",
+ "JSEHIF": "Store all of your work without worry",
+ "JSRS/f": "By industry",
+ "JSd+J1": "This folder is over its limit of {member_limit} members.",
+ "JTdDYP": "Request sent. Watch out for your invitation sent to {user_email}",
+ "JUKJQ/": "Learn about Dropbox folder types and discover best practices to keep your work organised with {trademark_business}.",
+ "JUNMrM": "Start your transfer",
+ "JUyfiA": "Two-step verification updated. Any existing sessions, devices and apps can still access your Dropbox.",
+ "JV1nME": "Hidden forever for you, but not deleted for anyone else.",
+ "JV9VMc": "Centralised billing",
+ "JVBVGT": "Do more with {trademark_businesss}",
+ "JVNKR4": "Do this week",
+ "JVgEKY": "upload to your Dropbox",
+ "JWEgC6": "{name} ({email}) {br} invited you to view this folder",
+ "JWIyED": "Most active days this week",
+ "JWQ334": "Members of {team_name}",
+ "JWcJZ7": "Anyone with the link",
+ "JX6DwB": "Restore this file to manage access",
+ "JXmFrv": "You need at least {min_num_users} {trademark_business} licences to support your entire team.",
+ "JXoSfW": "Link copied. Remember you\u2019ll need 1 licence for each member.",
+ "JY5LSc": "Show parent folders (descending)",
+ "JYBk8P": "Name",
+ "JYHRrI": "Releasing legal hold\u2026",
+ "JYfki4": "Issuer",
+ "JYmsWD": "Please enter at least one valid name or email address",
+ "JZEdSO": "Show more",
+ "JZlohh": "Add square",
+ "JZluRI": "Status",
+ "Ja6XYU": "Change or remove their access in link settings",
+ "Jap7oN": "This file is too big to preview",
+ "Jatj1V": "Your paid plan will end on {date}. You won\u2019t be charged again.",
+ "JbVexv": "Sent to {recipient}.",
+ "JbWl/w": "Enterprise admins can send invitations to newcomers or remove members who leave your organisation.",
+ "Jbjd+1": "Tell me more",
+ "JbmwKV": "Link calendar",
+ "Jc21ig": "Brand name and logo",
+ "JcQRa2": "Presentations",
+ "JcXWlj": "SAML NameID Format",
+ "JcarhR": "Bring products to market faster",
+ "Jccx0J": "Photo updated.",
+ "Jd/7Y/": "Find member by name",
+ "Jd2LFg": "Pin to {folder}",
+ "JdG0u/": "Pending approval",
+ "JdkQ4x": "Connected",
+ "Jdt7a7": "Cancel the call",
+ "JdzDdr": "Dropbox Transfer feature that lists notification and security customisation for files.",
+ "JeN9S+": "Need to send more than {file_size_limit}? Upgrade to the {premium_product_name} plan to send up to {premium_file_size_limit} per transfer for {plan_price}.",
+ "JeZy23": "Team admins",
+ "JefWBD": "You\u2019re switching your free {old_billing_schedule} {start_plan} to a {new_billing_schedule} {end_plan} trial. By switching your plan, your new {new_billing_schedule} total will be {recurring_total} after your free trial ends on {date}.",
+ "JefjfS": "Password protection",
+ "JejsPF": "Visit your personal account page.",
+ "Jf36zT": "By email",
+ "JfCj3L": "An email address must contain a single @",
+ "JfJSje": "Set to active",
+ "JfONLE": "\u2013 Your current plan \u2013",
+ "JfgcFN": "Close",
+ "JflzJz": "We\u2019ll charge your card ending in {last4}.",
+ "Jfm8Pe": "New Paper document",
+ "Jfn0Wa": "Post this note as a comment",
+ "JfoJFZ": "In the meantime, you can look for additional help via the links below.",
+ "Jfvav/": "Email",
+ "JgDsCG": "Popular",
+ "JgEBcc": "If you think this might not have been you, or even if you\u2019re still not sure, the best way to keep your account secure is to update your security settings straight away.",
+ "JgIvka": "Supported file types",
+ "Jh2qNK": "Work email address",
+ "JhDJcU": "Upgrade to add folder",
+ "JhgSLx": "Email",
+ "JhipKF": "Reopen file request",
+ "JhqchU": "Add colleagues quickly",
+ "Ji2DNY": "Stay on top of important tasks and deadlines. Coordinate cross-functional teams by setting milestones, assigning to-dos and managing approvals where everyone can find them.",
+ "JiHG/V": "Archive",
+ "JidWf/": "Add this file to a Paper doc to collect ideas and organise your thoughts.",
+ "Jj7ycG": "Download",
+ "JjMkmX": "Connect with a Dropbox partner",
+ "JjX/bt": "Skip for now",
+ "JjY1qD": "Save time by moving multiple files in one go.",
+ "JjiMmw": "
On your iPhone or iPad, tap Settings.
Tap your name.
Tap iTunes & App Store.
Tap your Apple ID at the top of the screen, then tap View Apple ID.
Tap Subscriptions (about halfway through the screen).
Tap Dropbox.
Tap Cancel subscription or Cancel trial.
Tap Confirm.
Your account will be downgraded to Dropbox Basic (free) at the end of your billing cycle.
You can find more information here about requesting a refund from Apple.
",
+ "JjwP/n": "{numRemainingLicenses, plural, one {After these invitations, you\u2019ll have {numRemainingLicenses} licence remaining.} other {After these invitations, you\u2019ll have {numRemainingLicenses} licences remaining.}}",
+ "JkEOPA": "I understand that I\u2019ll need to be invited by the team admin if I want to join the team again.",
+ "JkM87S": "Your {trademark_business} trial is almost over",
+ "JkRUmq": "Add billing info",
+ "JkU5zc": "View more earned space",
+ "JkfbDa": "User management",
+ "JlDI5I": "{plan_title} ({schedule})",
+ "JlF6JV": "Extract all",
+ "JlFag9": "Reload",
+ "JlQQTc": "Yes. You can change your payment method at any time.",
+ "Jlk66P": "Create a new group",
+ "Jm2Zmr": "Get more space",
+ "Jm8h9p": "Request approved",
+ "JmTRs1": "Moved by",
+ "Jmi3jE": "Connect applications to Dropbox",
+ "JnJK1Y": "Admins in {team_name} will no longer be able to sign in to your admin console. To grant access again, you will need to send them a new trusted team request.",
+ "JnNd2k": "Please re-enter your password to make {emailToBePrimary} your primary email. Doing so means you will use it to log in to your Dropbox account, and {currentPrimaryEmail} will become a secondary email.",
+ "JnNgZ9": "Sign in to join your team",
+ "JnWJpy": "{count, plural, one {Your account must have at least {count} licence, because your {trademark_business} plan comes with {count} licence by default.} other {Your account must have at least {count} licences, because your {trademark_business} plan comes with {count} licences by default.}}",
+ "Jnf299": "Fonts",
+ "JoJWle": "Your team settings don\u2019t allow sharing outside your team.",
+ "JoY3CJ": "Help trigger",
+ "Joo/Om": "Expired",
+ "JopplL": "Unsharing {file_name}\u2026",
+ "JowGoo": "Adding...",
+ "JpLg+t": "You\u2019re all set",
+ "JpVzlJ": "Delete\u2026",
+ "Jpogfm": "Most recent attempt",
+ "JpxJjX": "Note: Apple only accepts refund requests for purchases made within the last 90 days.",
+ "JpyR3P": "Connect the apps you use and tackle your everyday tasks with ease.",
+ "JpydDW": "Something went wrong",
+ "Jq+BGU": "Unsynced folders will sync to new computers. This could be an issue for users without much hard drive space or who haven\u2019t set their Smart Sync default to online only.",
+ "JqXtTP": "Running business operations",
+ "JrDCI8": "The email addresses don\u2019t match. Please try again.",
+ "JrFrfM": "Close",
+ "JrID4H": "{count, plural, one {You renamed {count} item} other {You renamed {count} items}}",
+ "JrOY5n": "Team",
+ "Js+HBd": "Changes are scheduled for {date}. Your new {schedule} total will be {total}.",
+ "Js1Gcw": "Couldn\u2019t share. If this folder has a lot of files, try sharing fewer files.",
+ "JsH2Ax": "Right-click on any file in your Dropbox folder and select 'Share'",
+ "JsiRXI": "Your subscription has expired",
+ "JtONmB": "Edit link created.",
+ "JtSfqF": "Manage and pay for all employees\u2019 accounts with a single bill.",
+ "Jtaa7H": "Acknowledge",
+ "JtjtB5": "Space used: {spaceUsage,number,::percent} of {space_quota}",
+ "JuA3If": "Save changes",
+ "JuFJib": "Get {trademark_business}",
+ "JuQNbM": "Everything you need for work, all in one place",
+ "JuduWh": "Close",
+ "JuuMAX": "Email me the link",
+ "Jv3Yc3": "{actor_name} added this file to Trello",
+ "JvfueH": "Cut selected file(s)",
+ "JwMP6F": "upload to the folder \u2018{folder}\u2019 in your personal Dropbox",
+ "Jwbrhq": "From",
+ "JwmPfI": "{count, plural, one {Moved {count} item to {dest}.} other {Moved {count} items to {dest}.}}",
+ "JxBPfw": "Successfully connected {service_name}",
+ "JxeFAh": "{displayName} can remove you as a trusted contact at any time",
+ "JxriCD": "{count, plural, one {You moved {count} item into this folder} other {You moved {count} items into this folder}}",
+ "JyvALs": "Processing...",
+ "JzEl6g": "Enter your email address",
+ "Jzp/g0": "Send and request electronic signatures on files",
+ "Jzzn4t": "View actual size",
+ "K+VjRY": "could not apply permissions",
+ "K/i5x+": "Password required",
+ "K0iMCC": "Contact Dropbox support",
+ "K0wo21": "Create report",
+ "K197gQ": "To get an app enabled for your team, please contact your admin.",
+ "K1E90F": "Call sales on {phone_number}",
+ "K1cSDo": "Choose background image",
+ "K1fpcu": "Your logo should be a single file.",
+ "K2L7zo": "Open Dropbox for mobile",
+ "K2PjtT": "Learn more about Dropbox space",
+ "K2RBLS": "Business",
+ "K2WP/Z": "Contact support",
+ "K2YdqW": "Unable to connect to our servers - refresh page",
+ "K2gcCi": "Google",
+ "K3HTLU": "If the BAA is Terminated Before the Agreement.",
+ "K3hd3n": "{total_users}x users",
+ "K3sKJc": "Copy",
+ "K42cqr": "{actor_name} shared this file in Zoom",
+ "K4DUr7": "Unlink {host}?",
+ "K4q33s": "{count, plural, one {You have {count} invitation remaining. Upgrade now to add as many members as you like to your team.} other {You have {count} invitations remaining. Upgrade now to add as many members as you like to your team.}}",
+ "K5+c+p": "All campaigns",
+ "K57Ot6": "Enter",
+ "K5gurn": "If you cancel your plan, your storage will drop from unlimited to 50 passwords, and you won\u2019t be able to use your account on more than 3 devices.",
+ "K5izMM": "Remind me later",
+ "K5v93L": "Change role",
+ "K6+Nod": "Once your transfers expire, you can find them here.",
+ "K67EWd": "BETA",
+ "K69xo9": "Try Dropbox Transfer",
+ "K6dbzR": "Linked workspaces",
+ "K79TJX": "There isn\u2019t a link for editing.",
+ "K7gpe8": "There was an error updating your plan.",
+ "K81Lqx": "You can\u2019t change to a country with a different currency. For help, please contact support.",
+ "K87LId": "Invitation sent.",
+ "K8B1pA": "\u201cA lot of the time when we deploy software, we first hear about the challenges. But during our phased deployment of {trademark_businesss}, we mostly just heard employees saying, \u2018Can I get that now?\u2019\u201d",
+ "K8qV0X": "Remove link created by {name}",
+ "K8siFg": "Type a file name and press enter (optional)",
+ "K8yeB2": "Fax from Dropbox",
+ "K9CwPn": "A member\u2019s credentials may have been stolen.",
+ "K9PgX4": "View all your file activity in one place",
+ "K9QB/G": "Couldn\u2019t save changes. Try again, or contact us for help.",
+ "K9VK1G": "Access Dropbox on your computer, phone or tablet",
+ "KANDIa": "This email is already taken Sign in or reset your password.",
+ "KAXwRH": "Password added",
+ "KAmRDp": "Warning",
+ "KB3mX1": "{actor_name} shared this file in Zoom",
+ "KBT48G": "Manage this policy",
+ "KBkWul": "Look up a credit card transaction",
+ "KBoyON": "Team members who can edit",
+ "KCFQgs": "Online only Smart Sync icon",
+ "KCLZbA": "Provide the 12-digit alphanumeric code located on the Dropbox line item on your bank or credit card statement",
+ "KCd6Mi": "You can only share with your team and people your admin has approved.",
+ "KDng7D": "Select a device",
+ "KEQdXJ": "Cancel",
+ "KEegJt": "Open with",
+ "KEh722": "Transfer to anyone, even if they don\u2019t have a Dropbox account",
+ "KEquRu": "To see files shared with you, you need to verify your email address.",
+ "KEvbU4": "Your team will be missing out on the additional space it\u2019s been using, and you and your team members have returned to your initial space quotas.",
+ "KFFcgE": "This transaction is associated with the card ending in {credit_card_last_four}",
+ "KFgJUh": "Your login is managed by your team admin or by a third party.",
+ "KGD0Zs": "Connect to Slack",
+ "KGDTWn": "Couldn\u2019t remove. Try again in case it was a one-off, or reload the page.",
+ "KGS5Y8": "Two-factor authentication (2FA)",
+ "KGW2Ni": "Windows Phone",
+ "KGWCGo": "Shared link",
+ "KGxm/W": "We send you an email the instant a new device or browser signs in to your Dropbox account. So check the date in the email and the time we sent it. If you weren\u2019t connecting to Dropbox at that time, that\u2019s another clue that this might have been someone else.",
+ "KHC+f0": "Current plan",
+ "KHF+Jy": "{trademark} is your best choice",
+ "KHnObD": "Invite team members to access and add to your shared 5 TB library",
+ "KI50Ut": "Step {stepNumber} of 3",
+ "KIC1WT": "Hello again! Let\u2019s connect this computer to the Dropbox desktop app so you can transfer files to your new PC easily.",
+ "KIFvZh": "Members of {parent_name} can view the folder name",
+ "KIGbLw": "Couldn\u2019t apply policy. Try again, or contact us for help.",
+ "KIU6pg": "Repeat",
+ "KIXusY": "Required by admin",
+ "KIYR8P": "Apps for project management",
+ "KJ6f6C": "Start by downloading Dropbox",
+ "KJEPKf": "In Optional mode, you can use an email template to tell users about SSO manually. View template",
+ "KJIj4x": "Due {date,date,::MMMMd}",
+ "KKSeLq": "Folders",
+ "KKoiKc": "Leading communications tools, such as Slack and Zoom, work directly from Dropbox. Set up a quick get-together \u2013 or even a virtual conference room \u2013 with just a few clicks.",
+ "KKpedX": "Select specific files",
+ "KL9RcB": "We\u2019ll send a reminder email to anyone who hasn\u2019t yet set up two-step verification. You can see who isn\u2019t using two-step verification on the members page.",
+ "KLKzmc": "{count, plural, one {Editing is locked for this file, and only the person who locked editing can make changes to it. Once you unlock editing, anyone else with access can also make changes.} other {Editing is locked for these files, and only the person who locked editing can make changes to them. Once you unlock editing, anyone else with access can also make changes.}}",
+ "KLMmft": "(show)",
+ "KLVfpZ": "Create doc",
+ "KLejvJ": "{count, plural, one {You shared this file with {entity} and {count} other} other {You shared this file with {entity} and {count} others}}",
+ "KLrM8q": "Refresh auth token?",
+ "KM5lP0": "Or invite with an email",
+ "KMVjkJ": "Purchase now",
+ "KMbzWs": "Date uploaded",
+ "KMcV0/": "Family shared folders cannot be added to the clipboard",
+ "KMdmiJ": "Up to 2 GB/file",
+ "KMtIDp": "Do you want to transfer this member\u2019s file content to another team member?",
+ "KN5iYH": "You edited just now",
+ "KNKh1o": "Wrong password \u2013 please try again",
+ "KNRQzR": "Enter a valid number of licences.",
+ "KNYHMT": "{count, plural, one {Using {used} of {allocated} storage} other {Using {used} of {allocated} storage}}",
+ "KNZDDC": "Dropbox feedback surveys",
+ "KNlxLe": "Add board members",
+ "KOp2Z9": "Creating...",
+ "KP0Yzf": "This email is already taken. ",
+ "KPPQZO": "Search by name or category",
+ "KPapIP": "Send for signature",
+ "KPjgco": "{actor_name} shared this file in Slack",
+ "KPsmbD": "
Automatically back up one computer \u2013 regardless of size \u2013 for half the price of Plus.
{backupPlanName} is $5.99/mo and lets you easily recover your files if things go wrong.
",
+ "KQ+sso": "Access the Content page",
+ "KQFSe4": "(up to {num})",
+ "KQHbPx": "Smart Sync update for Mac",
+ "KQOE+H": "Remove feature?",
+ "KQT2xh": "Image editing",
+ "KQwzZb": "Anyone in your {trademark_business} team with this link can view the file.",
+ "KRGNcn": "Moving members...",
+ "KRLDQF": "Loading the exports table",
+ "KRX5MA": "Due today",
+ "KRoKWN": "Call",
+ "KRoo+n": "Make your own template",
+ "KShn3Q": "Sign up for free with Google",
+ "KTM9I1": "Please enter your password",
+ "KTPma5": "Delete data automatically after a certain amount of time",
+ "KTUKSV": "{price} per year. Save {savings}",
+ "KUPk1O": "Order summary",
+ "KUi2WD": "Smart Sync icon",
+ "KUkJyi": "If you change from Dropbox {currentPlan} to Dropbox {plan}, we\u2019ll charge you {proratedPrice} now. From {date}, we\u2019ll bill you {scheduledTotal} per year. Charges will continue until you cancel, and previous charges won\u2019t be refunded unless it\u2019s legally required. {paymentInfo}",
+ "KUkt1D": "Report started. We'll email you when it's ready.",
+ "KUrLkH": "This setting doesn\u2019t affect links to shared content. You can adjust access for links with the Sharing links externally setting.",
+ "KUyXWm": "Certain files in this folder are unavailable. For more information, contact Dropbox support.",
+ "KV+oAR": "Your current plan details (trial ends on {trial_end_date})",
+ "KV4pWC": "Send, request or sign encrypted files",
+ "KVD2SP": "Open or edit with these apps",
+ "KVRyHc": "Try {trademark_business}",
+ "KVZaBF": "Failed to create task.",
+ "KW+Zge": "{plan_name} {downgraded_text}",
+ "KWRGOa": "Search App Centre",
+ "KXGWx6": "Export started. We\u2019ll email you when it\u2019s ready.",
+ "KXQpCo": "Each member of your team gets enough space to back up important information, regardless of file size.",
+ "KXgMVH": "To post your comment, sign in to Dropbox.",
+ "KYByIC": "Restore all files",
+ "KYHY0Z": "Name was invalid.",
+ "KYv8Ke": "Deadline on {date} at {time}",
+ "KZETkM": "Empty files cannot be uploaded.",
+ "KZNdp7": "The domain {input} is invalid",
+ "KZTpUR": "Clear all",
+ "KZq2LH": "{name} restored a previous version of {single_item_name} in {folder_path}",
+ "KZtaJC": "You can\u2019t move or copy files here from another Dropbox.",
+ "KaeLBh": "Dismiss suggestion",
+ "Kb1en/": "This file will be saved instantly to your {team_name} Dropbox and downloaded to all of the computers linked to your {team_name} account.",
+ "KbGi73": "Dropbox needs to verify your email address {email} before you can send gifts to your friends. It\u2019s as simple as clicking the link in the verification email we send you.",
+ "KbJSNk": "Unable to upload {filename}",
+ "KbOUHL": "or purchase now",
+ "KbdxtY": "If you want to wait a few days for your users to read the email, you can come back to this step later.",
+ "KbueII": "Set up Dropbox",
+ "KcIE68": "Keeping your requests open?",
+ "Kd1MNN": "General information",
+ "Kd7Pzk": "The icon used in this Prompt version",
+ "Kd8+qd": "It looks as though someone deleted this file",
+ "KdIB93": "Premium",
+ "Kdb5og": "Your account will be downgraded and your team will lose out on {space} of space, file recovery and advanced features such as Smart Sync.",
+ "KdoH+3": "Make sure you\u2019ve created the {record_type} record with the proper values. If it still doesn\u2019t work, please try a different verification method or contact support.",
+ "KecPBA": "Next",
+ "Kf+n3T": "Installs & integrations",
+ "Kf13Vw": "You can still choose which files your team can and can't access",
+ "KfK1+s": "Any team admins in the trusted team can access my admin console",
+ "KfLLjt": "Insights",
+ "Kfrd2f": "Currently viewing",
+ "KgByP8": "What can we do to make you consider using the product again?",
+ "Kgtej6": "Two-step verification",
+ "Kh0llv": "These browsers are currently signed in to your work Dropbox account.",
+ "KhLThn": "User-managed group",
+ "Ki2Z1X": "Pick as many as you like. We'll recommend a Dropbox plan that suits you.",
+ "Kj/rA+": "Resend verification",
+ "KjJiVt": "Download disabled",
+ "KjTrxx": "Start your Dropbox Business free trial",
+ "Kja738": "I wasn\u2019t satisfied with or had issues with the features",
+ "Kjxyo5": "No activity",
+ "KkVKxj": "Merge {team_name} Dropbox into yours",
+ "KkjU0R": "Delete permanently",
+ "KkuKkS": "Once you\u2019ve saved the {record_type} record, your domain is ready to be verified.",
+ "KlBJFl": "Support",
+ "KloWey": "Only your admin can customise these settings",
+ "KlxqP+": "Find out more.",
+ "Km/LLh": "Team folders let you share with your entire department or team.",
+ "KmMbqM": "Learn how to manage your Apple App Store subscription",
+ "KmONom": "When a lot went wrong, undo everything by going back to any point in the past.",
+ "KmXSRG": "Members of the file with the link can view",
+ "Kmr7w0": "View all transfers",
+ "Kn5Jdx": "User research report \u2192",
+ "KnGVHn": "Front of the team folder.",
+ "KnT2hh": "See when your transfer has been downloaded and how many times it\u2019s been viewed.",
+ "Knn7Tu": "Make your mark",
+ "KnpDbF": "Download content",
+ "KoLUW4": "Remove",
+ "KoZ/sb": "Got it",
+ "Kod2lh": "Explain what the request is for",
+ "KpImd7": "It's been quiet{br}New alerts will show up here",
+ "KpXQTV": "Create or delete accounts",
+ "KqmXy0": "Delete my Dropbox",
+ "KrfcyG": "Remove my Dropbox files from this device.",
+ "KrkSnt": "Customers can sign up for a waiting list on your items in the meantime",
+ "Krm+HX": "If you need help later on, click the question mark in the corner.",
+ "KsK3GS": "1.855.237.6726",
+ "KsqN07": "{numUsersMax, plural, one {Up to {numUsersMax,number} user} other {Up to {numUsersMax,number} users}}",
+ "Kswo/g": "Update access",
+ "Kt3C+o": "Edit",
+ "Kt9Ues": "Can\u2019t open this alert",
+ "KtD8FA": "Open in {app_name}",
+ "KtNGzK": "Get the most out of Dropbox",
+ "KtNVNl": "Showcase.",
+ "KtZq4r": "{name} added {item_name}",
+ "KuSs1z": "You\u2019ll be leaving {current_team_name} and joining the {team_name} account. Learn more",
+ "KuT2HD": "Send large files securely",
+ "Kud10T": "Everyone in this folder can see notes, tasks and pinned items",
+ "Kuf19u": "Nothing in your team\u2019s Dropbox meets the alert threshold.",
+ "KuiQtR": "Get immediate answers via chat or phone. You can even schedule a time for us to call you.",
+ "KuiYb1": "\u2013",
+ "Kv+v7O": "{filename} is shared with you, but you\u2019re not the owner. It\u2019ll be removed from your account, but not deleted for anyone else. Removing your access won\u2019t free up space.",
+ "Kv1q+Y": "Search the content of all of your files easily, including docs scanned with the Dropbox mobile app.",
+ "KvFh7N": "Learn more about account conversion",
+ "KvX2nA": "Thank you for your purchase!",
+ "KvygQC": "Renaming\u2026",
+ "Kw46PG": "Referrals",
+ "KwCXBA": "This person viewed via a link",
+ "KwIXAO": "On older version",
+ "KwJuTa": "Tell me more.",
+ "KwO1kp": "Reject",
+ "KwecgT": "Remove access to folder?",
+ "KwhW+R": "Dropbox needs to verify your email address {email} to finish updating your {team} email. It\u2019s as simple as clicking the link in the verification email we send you.",
+ "Kwsqq2": "Remove shared folder?",
+ "KwxWmK": "Allow late uploads",
+ "KxLzaS": "Deadline",
+ "KxU5xB": "Access all of your files and folders as you normally would on your desktop \u2013 whether they\u2019re online or synced locally to your device. No need to track down files on different drives \u2013 everything\u2019s right there.",
+ "KxyGh1": "This account\u2019s {plan} will be downgraded to Dropbox Basic on {date}.",
+ "KyJseU": "Ascending",
+ "KyRk6M": "We\u2019re having some trouble at the moment. Please try again later.",
+ "KysfOz": "Unreadable text",
+ "KzE60e": "BETA",
+ "KzbJRo": "Your account comes with a free Professional trial",
+ "KzqBY1": "{modifier} edited {time}",
+ "L+6Oix": "You\u2019re currently logged in as {email}.",
+ "L+GFdm": "We were unable to retrieve all of your shared folders",
+ "L+KFPk": "Failed to join the team.",
+ "L+nrMM": "Dropbox {plus} + {evh}",
+ "L+odzG": "Dropbox highlights feature that lists intelligent content suggestions for your files.",
+ "L+wWOg": "\u201c{filename}\u201d selected",
+ "L+ww/y": "Preview",
+ "L/3I1a": "\u2318 + c",
+ "L/leth": "On (stop sync)",
+ "L/rhbs": "Export name",
+ "L0PeUM": "The Dropbox team will review your document. It will only be used to help improve previews.",
+ "L0wJDD": "Enable or disable app integrations for your team",
+ "L18jYS": "Multiple accounts",
+ "L1B9Fg": "Add members to hold a copy of any file that they create or edit. We won\u2019t let them know that they\u2019ve been added to a hold.",
+ "L1Xwh2": "When you disband the team, you\u2019ll also end your {trademark_business} account. All members\u2019 accounts will be converted to individual Dropbox accounts.",
+ "L25jOg": "Become {displayName}'s trusted contact",
+ "L2DtUl": "A screen capture demonstrating the file preview and commenting capabilities within Dropbox. The user begins on the showcase tracking page and clicks on the number of comments for a particular file. The user sees a preview of the file and a thread of comments from their client, complimenting their work.",
+ "L2bZjZ": "Change email address",
+ "L2mXD3": "Total cost",
+ "L2sa5J": "from {src} to {dst}",
+ "L3AHro": "{actor_name} moved the {card_name} card with this file attached to another board",
+ "L3BzP5": "Invite to team",
+ "L3knW1": "Delete",
+ "L4Cl9R": "JCB",
+ "L4GiLe": "Access",
+ "L4Tupd": "Copy link",
+ "L4kFkD": "Couldn\u2019t find that domain. Please try again.",
+ "L5PBUc": "Sharing settings",
+ "L5RL4W": "This file can\u2019t be previewed.",
+ "L5UkRT": "No members found",
+ "L5VjXw": "Learn how to manage cookies in Firefox.",
+ "L5jE1S": "Severity",
+ "L5jgBG": "Paper icon",
+ "L5lWSy": "Sign in to your {team_name} Dropbox",
+ "L64bdq": "There was an error downloading your file.",
+ "L6U51Y": "You're not signed in to the Dropbox account that {vaultOwnerFname} invited.",
+ "L7+Fiv": "Get {trademark_plus}",
+ "L7+s23": "{count, plural, one {Invite member} other {Invite members}}",
+ "L7O+u9": "Allow Dropbox in Preferences",
+ "L7XWyH": "Already in your team",
+ "L8i8eH": "You\u2019re managing access for {member_name}",
+ "L9u5v1": "File name",
+ "LABgeq": "Connect",
+ "LAPTlQ": "Business Standard",
+ "LATJTO": "Sharing. Who shared content, when and with whom",
+ "LAVXPn": "Starred",
+ "LAZfR0": "Folder names can\u2019t contain \" \\ / :",
+ "LAdUq4": "I found {current_plan} too expensive for the value I received",
+ "LB7f0m": "Tap the \u22ef then tap 'Share' to send files from anywhere",
+ "LBOymk": "You edited {item_name}",
+ "LCXsWn": "Remind me later",
+ "LCkd3m": "Cancel all changes",
+ "LDLk8Q": "You\u2019re about to unlink your computer: {name}. It will stop syncing with your Dropbox immediately.",
+ "LDcGLP": "The domain portion of the email address (the portion after the @) is invalid.",
+ "LDj5Eu": "Could not ask to unlock. Please try again later.",
+ "LDjIzi": "Add logo",
+ "LDyvpN": "File",
+ "LF5bK0": "Strike up a conversation",
+ "LFVOg2": "Share file request",
+ "LFX+Vf": "Remove request",
+ "LGWy5v": "Invalid code.",
+ "LGaAn2": "Before you go, {user_fname}...",
+ "LGeX5c": "Allow",
+ "LGoRkl": "(trial ended)",
+ "LGwQ4n": "I\u2019m leaving because\u2026",
+ "LHGl+f": "Connect Dropbox to even more sales apps",
+ "LI+sTR": "Do the people I share a showcase with need a Dropbox account?",
+ "LIOBaH": "Something went wrong. Please refresh the page.",
+ "LIZiNv": "Security keys are a secure method to complete Dropbox two-step verification.",
+ "LIz/iR": "Don\u2019t worry about space with {dropboxPlus}",
+ "LJ+WGg": "\u2192",
+ "LJ26w7": "Return to tickets",
+ "LK+zfD": "More about file requests and our Privacy Policy.",
+ "LK6Iao": "Updated. You can double-check in the preview.",
+ "LKpkMA": "The content won\u2019t be protected from deletion. This action can\u2019t be undone.",
+ "LL9D7n": "Enough space to do their work",
+ "LLktNG": "Link settings:",
+ "LLm+kz": "Share",
+ "LLopws": "Rewind",
+ "LMTwdu": "On your phone or tablet",
+ "LNFEFg": "Files",
+ "LNhAmH": "There was a problem completing this request.",
+ "LNk7a9": "Edit title",
+ "LO1X8S": "Chat",
+ "LOP6Iv": "Space limit for all members",
+ "LOjZWa": "Cancel",
+ "LOke1K": "Try a different account",
+ "LP0+O5": "Simplify eSignatures",
+ "LPF3tp": "Getting the link...",
+ "LPpAbn": "We'll import your organisation contacts for you and other admins to use",
+ "LQXQ8X": "Plus",
+ "LQZIyx": "{teamAdminCount, plural, one {Admin: {adminList}} other {Admins: {adminList}}}",
+ "LQgYei": "Add a message (optional)",
+ "LQt5WS": "Lock vault",
+ "LQwViN": "{trademark_business} comes with as much space as you need, more ways to collaborate, increased security and file recovery",
+ "LQxqw1": "You have a folder that you can organise however you like. You can share files from here, or keep stuff here that you don\u2019t want to share with everyone.",
+ "LQzEeJ": "Cancel plan",
+ "LRX4vK": "I have opened the HTML file",
+ "LRdMKz": "Unable to copy the link. Please copy manually.",
+ "LRr3bv": "Email envelope",
+ "LSAd37": "Cancel {dropbox_trial_plan_name} trial?",
+ "LSKEjD": "You have no photos or videos",
+ "LSZhtx": "Export member data",
+ "LTAkB/": "",
+ "LTBK90": "Cancel",
+ "LTJsAc": "Prepare your document easily by placing fields to specify the sections that need to be signed, dated and more.",
+ "LTNHt/": "Bri Lobato, Content Strategist{br}MVMT",
+ "LThlyI": "{name} restored {single_item_name} in {folder_path}",
+ "LTl3E4": "Education",
+ "LU+v2Z": "Shared folders will move with their owner, so update the owner to someone else who\u2019s not moving.",
+ "LU34uD": "2. Import CSV",
+ "LUAF4K": "Sign-in blocked.",
+ "LUEaoA": "There\u2019s nothing in our records",
+ "LUaFwK": "Turn on classification to send feedback",
+ "LUjQMW": "To",
+ "LVfGVb": "No credit card needed",
+ "LViFNI": "Split into folders for each island",
+ "LW2miv": "Please enter a valid VAT number, e.g. {examples}.",
+ "LWc9mg": "Message on Zoom",
+ "LX7uHU": "Sync automatically to members\u2019 computers",
+ "LXUN2n": "Specific people",
+ "LXpX80": "Stress-free sharing",
+ "LXv2fU": "No members",
+ "LYHTOV": "Invitations couldn't be sent. Fix any issues, then try sending them again.",
+ "LYVKP8": "{count, plural, one {Failed to pin {count} item to {folder}.} other {Failed to pin {count} items to {folder}.}}",
+ "LZCYrq": "Invited (invalid)",
+ "LZGNnQ": "This can strain the network with a large-scale resync.",
+ "LZIDWA": "Get {free_months} months free!",
+ "La6UGX": "Cannot change role. Ask an enterprise admin to make this change.",
+ "La991r": "{TRADEMARK_VAULT} cannot be added to the clipboard",
+ "LakyAx": "To post your comment, create a free Dropbox account.",
+ "Laz2WV": "Submit",
+ "Lb5frQ": "Write these down and keep them safe.",
+ "Lb9moY": "Submit",
+ "LbLi52": "View all apps",
+ "Lbnt4R": "Chat now",
+ "LcZnrF": "Update billing info",
+ "LciHZa": "{price} per {duration}. {tax_string}",
+ "LcjDNb": "Close",
+ "LdD5qI": "You\u2019ll get an alert if a member makes too many unsuccessful sign-in attempts.",
+ "LdK+1y": "Today",
+ "LdiA8+": "There's been an error.",
+ "Le5Iez": "Name or email",
+ "LeBeJX": "{msg}",
+ "LfFmTA": "You shared this file in {meeting_name}",
+ "LfpmB5": "Standard",
+ "Lg46Rv": "Send copies to prevent unwanted edits",
+ "LgDDjs": "Both",
+ "LgDSr+": "Now it\u2019s easy to securely back up your files and photos, access them from any device and share them with others.",
+ "LgJ6ZM": "{count, plural, one {Restored {count} item, but can\u2019t sync. Your team no longer has full use of {trademark_business} features.} other {Restored {count} items, but can\u2019t sync. Your team no longer has full use of {trademark_business} features.}}",
+ "LgJiOW": "Continue",
+ "Lgnt6l": "Enter a valid email address.",
+ "Lgy3Fa": "Revoke access to {team_name}",
+ "Lh/4PQ": "Previous emails",
+ "Lh2Os0": "Prevent team admins from updating",
+ "Lh4By8": "Disabled open button",
+ "LhL/zj": "Delete folder?",
+ "LhLDTC": "{count, plural, one {Anyone with this link can view the file. Expires in {count} day. Downloads disabled.} other {Anyone with this link can view the file. Expires in {count} days. Downloads disabled.}}",
+ "LhSc7B": "Row actions",
+ "LhlWCW": "Please enter a password",
+ "LhuHW+": "In the desktop app, right-click a file in any shared folder to keep others from editing it at the same time.",
+ "LhuKam": "Card details",
+ "LjBZfZ": "{quota_used} of {quota} used",
+ "LjUC5w": "Assign by name or email",
+ "LjvT1Z": "Plan highlights",
+ "LkElGW": "Renew {trademark_business}",
+ "LkLzhI": "Log in to your other account",
+ "LlAXM+": "Downloads",
+ "LlbwQi": "You won\u2019t get an alert if a member deletes an unusually large amount of content.",
+ "LltYZa": "Are you sure you want to delete the secondary email {email}?",
+ "Lly4lc": "Please select your bank.",
+ "LmN8eC": "Search Google contacts",
+ "LmQdrE": "{num_left, plural, one {You can invite {num_left,number} more member, aged 13 and up.} other {You can invite {num_left,number} more members, aged 13 and up.}}",
+ "Lml2K0": "All of your transfers in one place",
+ "Ln0lsE": "Choose how members can use file editing apps in Dropbox.",
+ "LnlG+E": "Enter [*.]dropbox.com",
+ "LnyaPB": "{plus_space} of space",
+ "Lou/OW": "Advanced settings",
+ "Lp2zi8": "Now, enter the email address you would like to switch to (from {email}).",
+ "Lp9J2f": "Something went wrong while uploading this file. Check your connection to the Internet and try again.",
+ "LpGJcx": "You shared this file with {entity}",
+ "Lpz5Sz": "{count, plural, one {{count} week} other {{count} weeks}}",
+ "LqMhh0": "You can only see traffic and insights for your own files",
+ "Lr7iR2": "Do you have any discounts for {trademark_business} and {dropbox_enterprise}?",
+ "LrSVy3": "{count, plural, one {{count} outside your Dropbox team} other {{count} outside your Dropbox team}}",
+ "LrXo55": "If you\u2019re logged in to Dropbox as {email} on a desktop client or mobile app, click \u201cYes\u201d below.",
+ "LrbExT": "Country code",
+ "Lrg2vT": "Forget you ever worried about storage space. With Dropbox Smart Sync, you can see and access every file in your account and every folder that\u2019s been shared with you, directly from your desktop, without taking up your hard drive space.",
+ "Lrgdx4": "Are you sure you want to remove the shared folder {filename} from your team member folder? This folder will stay shared with any existing members. You can add it again later.",
+ "LrpqA7": "Unpin",
+ "LsgOOC": "Customer stories",
+ "LtLA7W": "All members",
+ "LtVgfK": "Transfer now",
+ "LtyAk2": "From",
+ "LuEFa+": "Only approved emails are automatically approved",
+ "LuJ3Bq": "{planStorage} of encrypted storage",
+ "Ludu27": "{count, plural, one {{name} shared this file with {entity} and {count} other} other {{name} shared this file with {entity} and {count} others}}",
+ "LuofqH": "Delete permanently",
+ "LuuYMu": "Tell us what you liked and didn\u2019t like about Dropbox Transfer.",
+ "LvAGFd": "They\u2019ll no longer have access to the enterprise console. As a team admin, they can still manage everything for their team only, such as changing security settings and removing other admins.",
+ "LvWNBV": "Disposition period",
+ "Lw0wKV": "Streamline workflows with reusable templates",
+ "Lw5S1r": "Sign in to a trusted team\u2019s admin console to manage settings.",
+ "LwKcf3": "Dismiss",
+ "LxW7Y4": "deleted shared folder",
+ "Lxm7P3": "Location",
+ "LyB3q5": "Back to {folder}",
+ "LyM3mw": "{name} gave view-only access to {entity}",
+ "LyPlzZ": "Enable Paper",
+ "LymIft": "Permitted Use.",
+ "LzBbwe": "Couldn\u2019t create report. Try again or contact us so we can help.",
+ "LzEh8h": "Enter the secret key below, or .",
+ "M+9FcI": "Invitees",
+ "M+cFlV": "Hello {user_first_name},",
+ "M/CNVZ": "Add filters +",
+ "M0CnHU": "Alert acknowledged.",
+ "M0ZojO": "{count, plural, one {{name} + {count} other} other {{name} + {count} others}}",
+ "M0egsH": "You can\u2019t edit or create file requests because your account has been disabled.",
+ "M0ts2g": "Locked files",
+ "M1AQ/e": "Allow {browserName} camera access in device settings",
+ "M1Mbfy": "{phrase_1} {phrase_2}",
+ "M1ui/4": "Done!{br}Account added to this computer",
+ "M25rlh": "Licence keys",
+ "M26rn4": "Grant emergency access to a family member or trusted contact",
+ "M270XN": "Mentioner",
+ "M2M2fz": "{count, plural, one {Anyone in your Dropbox team with the link can view this folder. Expires in {count} day.} other {Anyone in your Dropbox team with the link can view this folder. Expires in {count} days.}}",
+ "M2OB3I": "Present in Zoom from Dropbox",
+ "M2VGoP": "Calculating folder sizes...",
+ "M2xkJm": "Set expiry dates for file requests",
+ "M2zlxz": "This opens either Windows Explorer or macOS Finder by default (instead of the Dropbox desktop app) for all members. Members can override this setting individually.",
+ "M3McIW": "2 of 2",
+ "M3RENu": "Here\u2019s your member folder",
+ "M3lN6W": "Policy",
+ "M4FA7E": "Your free trial of {trademark_business} {plan} will end on {date}. For this plan, your {schedule} total will be {recurring_total}.",
+ "M4He3z": "{trademark_business} provides three plans to fit your team\u2019s needs. The {standard_display_name} plan gives your team {standard_plan_size} of shared storage. For teams needing more space, the {advanced_display_name} and {enterprise_display_name} plans provide as much space as you need.",
+ "M4SS1n": "Sign up with Google",
+ "M4bQJN": "Open in Slack",
+ "M4i5LM": "You\u2019ll keep your {user_name} folder",
+ "M4sXbA": "Names or email addresses",
+ "M5+eCf": "Multi-spot",
+ "M504OL": "\u201cOur users were accomplishing a lot of great work on Dropbox without any support. Deploying a central account allowed that great work to continue \u2013 uninterrupted \u2013 in the most secure way possible.\u201d",
+ "M54rVK": "Remove",
+ "M5Btl1": "This member\u2019s limit",
+ "M5GM60": "Send email to {email}",
+ "M5QAc6": "{count, plural, one {{count}submitter} other {{count}submitters}}",
+ "M5q+6R": "",
+ "M6BJCe": "Sign in to connect",
+ "M6G5UH": "I agree to the {trademark} agreement",
+ "M6Yj02": "Continue tour",
+ "M6hYmn": "{requester} sent you this request",
+ "M6sjmN": "Add your logo to shared files",
+ "M7I8En": "Create then copy link",
+ "M7c3jS": "VPN",
+ "M85BdF": "Loading\u2026",
+ "M8QAlp": "{team_name} will still keep team-owned folders",
+ "M8fQpg": "All groups",
+ "M94J6D": "Cancelling...",
+ "M9J/eL": "\u201cIncluded Functionality\u201d",
+ "M9T7Ct": "Disable two-step authentication icon",
+ "M9rQb1": "Buy more licences?",
+ "M9vy6c": "Too long",
+ "MADFmJ": "Once your team joins this organisation, enterprise admins can:",
+ "MADc7q": "File attached to Trello card.",
+ "MAKAZY": "{current_usage} (your space used)",
+ "MAKL0W": "After these invitations, you\u2019ll have no remaining licences.",
+ "MAsFOT": "Delete",
+ "MAy8Kw": "Please unlock your vault before attempting to add to this folder.",
+ "MB8Q3H": "Loading deleted files...",
+ "MBCQNX": "Remove your secondary email",
+ "MCBk12": "Paper is included free of charge with your Business plan but, if you haven\u2019t turned it on in the admin console yet, your team members won't have been able to try it. On {default_on_date}, we\u2019ll remove that restriction so your team can explore Paper on their own. A couple days after that, they\u2019ll get an email with some more info about Paper.",
+ "MCDKW4": "You\u2019re about to download a file from Dropbox.",
+ "MDLOPX": "{remainingLicenses}/{totalLicenses}",
+ "MDj68z": "Share quickly with your entire team",
+ "MESkKT": "Sign-in issues",
+ "MEciBR": "Connected on",
+ "MF+40x": "Download",
+ "MF/EZ0": "First name",
+ "MFNNdH": "Join the team successfully",
+ "MFUXPs": "Give Dropbox full access to your HelloSign account.",
+ "MFexR2": "Attachments",
+ "MFoUQg": "refresh the page",
+ "MFt6f7": "Late uploads will be marked as overdue",
+ "MFvTKh": "See expired transfers with {premium_product_name}",
+ "MGPz8l": "Restore {file_count} items\u2026",
+ "MGV4gx": "Close",
+ "MGzrj3": "While a member\u2019s account is being moved, they should take a break from working in Dropbox.",
+ "MH5OkG": "Unshare \u201c{content_name}\u201d?",
+ "MH6qlB": "Review summary before converting",
+ "MHHiSt": "Ignore {count} tasks",
+ "MHUAmd": "Unable to delete those files.",
+ "MHj1we": "Couldn\u2019t remove. Try again in case it was a one-off, or reload the page.",
+ "MHxxzk": "Can\u2019t move out of the team space",
+ "MI5amF": "Powerful sharing, collaboration tools and {quota} of space.",
+ "MI9Ua+": "Verify the {record_type} record",
+ "MIxRkf": "",
+ "MJ0g8h": "Bring files and cloud content together with the tools your team wants to use.",
+ "MJFtee": "File requests let partners, clients and vendors send files as large as 20 GB \u2013 even if they don\u2019t have an account",
+ "MJHLe9": "Once you\u2019ve given Dropbox camera access, {br}point it at the image below and wait.",
+ "MJV9YB": "Edit admin permissions",
+ "MJgs6m": "How often should we email you?",
+ "MK2EtW": "Streamline recruitment and onboarding",
+ "MK7bBv": "The folder \u201c{folder_name}\u201d has been deleted",
+ "MKEpc0": "You do not have permissions to rewind this folder.",
+ "MLCJEY": "Or",
+ "MLLXJ9": "{browser_name} on {os_name}",
+ "MLWfyM": "If you lose access to your primary security code source, we can send them\n to your backup mobile number instead.",
+ "MLktc7": "Folder overview added.",
+ "MLqiSW": "Folder",
+ "MNcs5F": "Got it",
+ "MO3yiv": "{numInvitees, plural, one {You need more licences for this invitation.} other {You need more licences for these invitations.}}",
+ "MOOgAN": "Do any of these help with billing and payments?",
+ "MP26Kz": "Install Dropbox on your mobile device",
+ "MP7zas": "Updated {time_ago} by {name}",
+ "MPFoRr": "Set a Dropbox password to continue",
+ "MPX3Ow": "{value, plural, one {{value,number} month} other {{value,number} months}}",
+ "MQDRWx": "Please enter a valid CPF number.",
+ "MQv1l8": "deleted disk image",
+ "MRsJ2V": "{professional_price} per month",
+ "MSF549": "Loading...",
+ "MSmoKs": "Upgrade soon to get more space",
+ "MSnjbs": "{value, plural, one {for {value,number} min} other {for {value,number} mins}}",
+ "MSsIup": "From mobile",
+ "MTUD+p": "Send code",
+ "MTeYED": "Let\u2019s continue the file-transfer process using the Dropbox app.",
+ "MUXVDO": "Thanks, we will be in touch",
+ "MUsgY7": "Dropbox needs to verify your email address {email} before you can add comments. It\u2019s as simple as clicking the link in the verification email we send you.",
+ "MV2ZvR": "Mike Day, CIO{br}University of Sydney",
+ "MVNTYK": "{count, plural, one {{count} hour} other {{count} hours}}",
+ "MVs5oP": "KB",
+ "MWDQlb": "Connect your team",
+ "MWP1yS": "You don\u2019t have any licences available.",
+ "MWcgKC": "Date",
+ "MWdLCv": "Please select one reason for cancelling",
+ "MWfAO9": "Delete link",
+ "MWhD7a": "Add a team",
+ "MX2YRH": "Participants:",
+ "MXGk5a": "{count, plural, one {This is a large transfer ({count} file)} other {This is a large transfer ({count} files)}}",
+ "MXShkW": "Request space",
+ "MXWf1w": "You can rename team folders in the admin console.",
+ "MXYa10": "Inclusion list",
+ "MXqCwG": "Learn more",
+ "MY92Te": "Make {name} an admin",
+ "MYByNv": "Other",
+ "MYnZ+3": "Select a card type",
+ "MZCMJM": "{count, plural, one {{count} file left} other {{count} files left}}",
+ "MZf7i5": "You\u2019re now downloading Dropbox desktop.",
+ "MZu4EM": "Sent to",
+ "MaBCmg": "Sync folders",
+ "MaCet6": "Team personalities",
+ "MaE11m": "Manage this request",
+ "MaUI+x": "At the moment, people are working on this file in {editor_with_lock_string}. You can see updates and edit there.",
+ "MbL/b4": "Cancel",
+ "MbMlLu": "Access invoices and receipts",
+ "MbSim3": "Team files",
+ "Mbuk28": "Couldn\u2019t create task.",
+ "Mc+U9E": "Upgrade",
+ "Mc2g5W": "Two-step verification reset for {user_display_name}",
+ "McRfR4": "Didn\u2019t work? ",
+ "McVRyL": "Dropbox {scheduled_plan}",
+ "McYFO5": "{count, plural, one {{count} person has access} other {{count} people have access}}",
+ "McdUt3": "With Smart Sync, large files won\u2019t take up all of your hard drive space. You\u2019ll be able to download and edit them on demand.",
+ "Mcwc+5": "Send fax",
+ "Md6TJX": "If you still want to change plans, please acknowledge the following:",
+ "MdAYrF": "Sorry, we weren\u2019t able to sign you in. Please enter your email and password to sign in.",
+ "MdEJfm": "Slide {slide_number}",
+ "MdJXo5": "Terms & Privacy",
+ "MdNuLw": "OK",
+ "Me0uB0": "User\u2019s access revoked. Can be unsuspended or permanently deleted.",
+ "Me0uFH": "{vacuuming_policy} days of version history and deletion recovery",
+ "Me8qX4": "Sharing externally",
+ "MeFKtq": "Importing {service_name} contacts",
+ "MeG6h+": "That's it for now. We'll suggest teams if we think they might be a good match.",
+ "MeeqZ2": "Link copied. We'll let you know when someone joins.",
+ "MehNLa": "Learn more",
+ "MepQOa": "Set up branding",
+ "MeqvVX": "Dimensions",
+ "Mf/Zpf": "Actions by Dropbox",
+ "MfWSLh": "upload to the folder \u2018{folder}\u2019 in your {team_name} Dropbox",
+ "MfdjkI": "Sending",
+ "Mflc9Z": "{count, plural, one {Pinned {count} item to {folder}.} other {Pinned {count} items to {folder}.}}",
+ "Mg+i5T": "Your admin manages these emails",
+ "Mg5hv3": "This email is pending \u2013 please try another one",
+ "MgR2x6": "Begin typing to search",
+ "MgS8Ue": "{team_name} owns and administers this Dropbox",
+ "Mh1yCB": "Files from computer",
+ "MhNU0E": "Copy to Paper",
+ "Mhdr6D": "Having problems? Please try again or visit our Help Centre.",
+ "Mhmrl5": "Choose at least 1 member",
+ "MhniSh": "You are editing details for all future invoices. To edit past invoices, click 'Edit' on the invoice item instead.",
+ "MiLg40": "The domain portion of the email address is invalid (the portion after the @)",
+ "MiRE07": "Any",
+ "MiYLIx": "Have you lost access to your email?",
+ "MkD8+F": "Select item",
+ "MkHN8W": "Request files",
+ "MkSFfQ": "You won\u2019t be charged now.",
+ "MktnwF": "Privacy & Terms",
+ "Ml403u": "Image showing files being transferred to a different Dropbox.",
+ "MlITPK": "Open alert details",
+ "MlThiV": "Unlimited legally binding signatures",
+ "MlTrBL": "URL copied",
+ "MmMgu9": "Paper app setting updated.",
+ "MmmPv/": "They can sign in to your admin console, view activity and adjust any settings such as security and sharing.",
+ "MmtCb5": "Actions",
+ "Mmu8mM": "Information",
+ "MmvP/Q": "How to prioritise your ad in relation to all other {campaignTypeName} ads.",
+ "MmwXT2": "Failed to lock editing.",
+ "Mng7Wf": "Notes",
+ "MnjJiE": "Creating link",
+ "Mo9Exx": "Prepare",
+ "Mofm1J": "You don\u2019t have access to this account.",
+ "MomaNB": "{name} is the owner",
+ "MpDbPK": "Choose your Dropbox folder for your signed document to be saved automatically and stored safely",
+ "Mq1nGs": "{Calendar} or after",
+ "Mq770g": "Submit code",
+ "MqCbgz": "Individual",
+ "MqOG6r": "No boards available",
+ "MqaiAM": "Cancel",
+ "MrEDaY": "Only you can view via this link.",
+ "Mran8D": "Download",
+ "MsPKYk": "See meetings you share with others",
+ "MsQTag": "Team ID",
+ "MsSJfa": "Hooray! Your team has now been upgraded",
+ "MskMEF": "Passwords must contain at least 6 characters",
+ "Mt43Vq": "Leaving group...",
+ "MtMb05": "Sign in as user icon",
+ "MtQlO7": "Start taking steps to get organised. Access your stuff and share easily, so you\u2019ll have more time to focus on the things that matter.",
+ "Mtd0dn": "\u201cWith Dropbox Paper, I could share the creative concept, test shots and Dion\u2019s designs with the global team at any hour of the day and get immediate sign-off. Everything we needed, from photos to budgets, was in one spot.\u201d",
+ "Mtpt6L": "Missing files and folders",
+ "MttbRU": "Store everything in a secure, private space",
+ "MuVG/K": "Secure and organise your most sensitive documents in the cloud so only you and your loved ones have access.",
+ "MuWhIJ": "Folder info",
+ "Muci4i": "Everything in Plus, shared link controls and {plan_space} storage.",
+ "MvJp1j": "Interested in Dropbox for your team?",
+ "MvbVSb": "Organise projects and attach files",
+ "MvobKd": "Fill in forms and eSign PDFs. Delete and rearrange pages. Convert to Microsoft Word, Excel and PowerPoint.",
+ "Mw4b3e": "Cancel",
+ "MwZy3n": "Email everyone who\u2019s unmanaged, asking them to join your team. You can send this email now, and again later as a reminder.",
+ "Mwm/ks": "Are you sure you want to remove your access to {filename}? It will no longer be viewable in your list of shared folders and you won\u2019t be able to re-add it to your Dropbox unless you\u2019re re-invited.",
+ "MxMIO5": "Keep all your files securely stored, up to date, and accessible from any device.",
+ "MxPNMY": "Getting insights...",
+ "MxYg96": "Changes aren\u2019t retroactive. People in your team who have already joined shared folders outside the team will stay in those shared folders. Review the sharing activity report for information on the shared folders that people in your team have joined.",
+ "MxejbW": "Can\u2019t upload file requests to a team folder. Try a different folder.",
+ "Mxewsd": "Couldn't copy, but it might be a one-off. Try reloading the page or ask us for help.",
+ "Mxyk0C": "Error loading your ticket",
+ "My4TKm": "Working in teams",
+ "MyGUjq": "To apply a custom space limit, you\u2019ll need to set a member space limit for your team first. View settings",
+ "MyWjDg": "Team connected",
+ "MybCcA": "Tiered admin roles",
+ "Mypxfp": "Identity provider sign-out URL",
+ "Myz/8P": "{new_amount} {tax_rate_text}",
+ "Mz7S25": "Add or upload files here",
+ "Mz9rP+": "The following modifications include:",
+ "MzFQGT": "Protect and monitor your team\u2019s content",
+ "MzSzG7": "Continue",
+ "Mziuid": "Remember that only admins will be able to sign in with a password and we\u2019ll send members an email explaining how to sign in. Preview email",
+ "N+9tRd": "Please try sending your files again.",
+ "N+LihQ": "Your account will be merged into the {team_name} Dropbox account, where you\u2019ll have\na private area for your stuff. {team_name} admins will be able to manage your files and Paper docs. {team_name}\nhasn\u2019t enabled Smart Sync, so new files will be downloaded to your hard drive.",
+ "N/UwFI": "Details",
+ "N/XfAJ": "Note: If you just want to stop using Smart Sync, you can set files to local instead.",
+ "N/wIcm": "What is Dropbox Plus?",
+ "N0ElEH": "Suggested location: {folder}",
+ "N0UlEH": "Request cancelled",
+ "N0ZK+y": "You don\u2019t have access to this content.",
+ "N0m/ev": "Thanks for letting us know!",
+ "N0sqGP": "Let us help you keep your family\u2019s digital life organised. Keep Google Docs, passwords, videos, PDFs and more \u2013 no matter what you need to store.",
+ "N17iij": "Set clear product direction",
+ "N1Rr3E": "Disconnect account",
+ "N1WvGk": "Show me:",
+ "N24IeC": "A personal customer story and their experience with Dropbox",
+ "N2Sbn0": "Last edited by {createdUserName} ({creatingUserEmail}) on {creationTime}",
+ "N2hH/9": "Could not find the selected team. Please refresh the page and try again.",
+ "N2rRRj": "Members",
+ "N2zSVO": "Edit permissions",
+ "N3BbNY": "or log in with Dropbox credentials",
+ "N3E0i0": "Thanks for verifying your email address: {email}. Now you can invite members to your team.",
+ "N3Jnns": "To",
+ "N3NvXm": "Updating\u2026",
+ "N3ZFxq": "We\u2019re sorry you\u2019re thinking of leaving. Would you mind telling us why? We might be able to help.",
+ "N3qfwO": "Security keys",
+ "N3yfmI": "Connect apps to Dropbox",
+ "N42N8g": "They\u2019ve asked to join your team to collaborate with their colleagues.",
+ "N42rGO": "Removing you from {sharedFolderName}\u2026",
+ "N4ec+j": "To add this folder, remove some files or ask your admin for more space.",
+ "N4rDe0": "{count, plural, one {Copy {count} item to\u2026} other {Copy {count} items to\u2026}}",
+ "N4y79U": "Learn more",
+ "N5+K9w": "Cannot upload empty folder.",
+ "N5Byoz": "Dropbox Preview",
+ "N5ZbKv": "You changed the file settings",
+ "N5jcZx": "{name} added this file",
+ "N66FnB": "Shows alert again",
+ "N6BsJQ": "Invitation message",
+ "N6QhAL": "Licences that have not been used out of those you\u2019ve purchased",
+ "N6T0iv": "Start a product spec",
+ "N6VYNm": "Discard this policy?",
+ "N6nSN1": "Click 'Open with' and select Vimeo to play video files.",
+ "N6rIy+": "Automatically add people with an {listOfDomains} email who ask to join",
+ "N7+DBL": "If you continue, you won\u2019t be able to access this file any more.",
+ "N86Xdn": "This helps us suggest better ways to use Dropbox.",
+ "N8UTfi": "Your team is part of an organisation",
+ "N8asgh": "Show older history",
+ "N8dODn": "Dropbox Spaces",
+ "N8ovVA": "Add to Dropbox",
+ "N8zxbH": "Turn off Paper",
+ "N95PRm": "Cancel",
+ "N9K17w": "and {extra} more",
+ "N9Moi6": "in {location}",
+ "N9Z2ZF": "Help with sharing",
+ "N9mrM1": "Make owner",
+ "NAES7J": "View next slide",
+ "NBGO8l": "Who can view, download or edit a showcase?",
+ "NBq5Ly": "Are you sure you want to permanently delete the {folder_name} team folder? This can\u2019t be undone.",
+ "NBtBZk": "{days, plural, one {Retention: {days} day since last activity} other {Retention: {days} days since last activity}}",
+ "NCBimA": "Cancel request",
+ "NCPpB8": "{price} per month",
+ "NCQATi": "Couldn\u2019t remove members. Try removing them again.",
+ "NCTASm": "Cannot unapprove an active campaign",
+ "NCTtwj": "Confirmation",
+ "NCUEyp": "Doc scanner overview",
+ "NCYx6w": "Compare all features",
+ "NCdpWv": "Verification email sent successfully.",
+ "NCmJZQ": "Changes are being made to your account.",
+ "NCnmwu": "deleted image",
+ "ND8Am/": "Add from Dropbox",
+ "NDGMY8": "They'll no longer be able to do things like manage, delete or access team folders automatically.",
+ "NDHu7t": "Only you will have access to this folder unless you share it.",
+ "NE2IZo": "Discover",
+ "NEH57K": "Deleting link to {name}...",
+ "NFDAf6": "Explore plan options",
+ "NFN/LH": "Connect apps",
+ "NFUNt+": "Why did you select this rating?",
+ "NFa8tv": "Do later",
+ "NFcU7V": "To close a request, click \u2018Edit\u2019 on your request and choose \u2018Close request\u2019.",
+ "NFdReE": "\u201cSecretary\u201d",
+ "NG4N9K": "Delete invitation",
+ "NG5gR6": "Dropbox Paper is more than a doc \u2013 it\u2019s a co-editing tool that brings creation and coordination together in one place.",
+ "NGE4jh": "Couldn\u2019t cancel request. Try refreshing the page.",
+ "NGvrFm": "What type of question do you have?",
+ "NHPru6": "Settings for \u201c{file_or_folder_name}\u201d",
+ "NHrOTw": "Which members should be able to override the default space limits?",
+ "NI05xo": "Did you mean {suggested_email}?",
+ "NI7W3i": "{count, plural, one {{familyPlan} includes the same features as Dropbox {currentPlan} (your current plan) for {count} member.} other {{familyPlan} includes the same features as Dropbox {currentPlan} (your current plan) for up to {count} members.}}",
+ "NIcDB+": "Or text me the link",
+ "NIm51y": "Show sidebar",
+ "NItAlv": "Get the secure file sharing and storage solution that employees love and IT admins trust.",
+ "NJ58AN": "Learn more about our customers",
+ "NJfRuf": "Add admin role",
+ "NKCi3N": "Fired",
+ "NKLNkw": "Heads up \u2013 {DROPBOX_VAULT} isn\u2019t available for {BUSINESS} customers. If you combine accounts, your vault will become a regular folder that\u2019s managed by your admin.",
+ "NKOHGK": "Choose this if you can edit your website\u2019s homepage",
+ "NKrFJv": "Check retention policies",
+ "NL8ygk": "Subject",
+ "NLObc3": "Do you want to delete content from this member\u2019s devices next time they come online?",
+ "NM+/2b": "deleted link",
+ "NM+qbp": "You added this file to Trello",
+ "NM3Ph0": "A secure, distributed infrastructure \u2013 plus admin tools for control and visibility \u2013 keeps your company\u2019s data safe on Dropbox.",
+ "NMGaUE": "Choose how to get your security codes.",
+ "NMgI0K": "News",
+ "NMwC0C": "Use this to configure network control. Contact your Dropbox account team for help.",
+ "NNIdHn": "Information technology",
+ "NNMtrd": "You\u2019re logged in to your personal account,",
+ "NNi2D+": "Hide",
+ "NO+O12": "It looks as though you have already added that file...",
+ "NONzBb": "All devices will be removed and disconnected",
+ "NP+tHg": "Unapprove campaign",
+ "NP3TWl": "That person isn\u2019t a member of this hold",
+ "NP7zf1": "{count, plural, one {Members invited. You can invite {count} more member before you need to upgrade to Dropbox Business. Upgrade now.} other {Members invited. You can invite {count} more members before you need to upgrade to Dropbox Business. Upgrade now.}}",
+ "NPbRsP": "Value / Answer / Destination",
+ "NPxYv8": "Create a to-do and assign it @someone",
+ "NQ2nV+": "on desktop",
+ "NQBN29": "I found {current_plan} too expensive",
+ "NQS3dU": "Delete all\u2026",
+ "NQmRjS": "Cancel",
+ "NQu9yB": "Enter a new email address for your personal Dropbox.",
+ "NQz5Zf": "You edited {time}",
+ "NREZaY": "Save",
+ "NSIXOx": "We couldn\u2019t complete this operation. Please refresh the page and try again.",
+ "NSgn8u": "Their team\u2019s content will be moved into your team\u2019s account",
+ "NSh6z9": "Can\u2019t merge into another team",
+ "NSzzON": "Cannot change role. That team no longer has full use of {trademark_business} features.",
+ "NT9CTo": "We\u2019ll replace this folder\u2019s current policy.",
+ "NTVGSt": "Keep your devices safe and under control.",
+ "NToeR9": "Lecturers",
+ "NUBTGs": "Restoring files...",
+ "NUJ457": "We\u2019ve transferred your files to the {team_name} Dropbox account. All of your private files are still private.",
+ "NUbwLd": "To free up hard drive space, right-click on a file or folder, go to Smart Sync and choose Online only.",
+ "NUcf5C": "Works with {collaborator} a lot",
+ "NVFZOB": "Next page",
+ "NVQ5BV": "Keep tabs on them from this page",
+ "NVoAWy": "Over invitation limit",
+ "NVqTLL": "{num_invites}/{max_invites} invitation left",
+ "NW1XKf": "Contact sales",
+ "NWHfg0": "Start date",
+ "NWSH7+": "Your trial will end on {trial_end}. If you downgrade, your team will lose the additional space it\u2019s been using, and your active team members will return to their initial space quota.{br}{br}If you want to keep using {trademark_business}, it only takes a few minutes to add your billing information.",
+ "NWUTmz": "Please verify your account email address so we can share files.",
+ "NWoZK3": "1",
+ "NWv/3R": "\u2318",
+ "NXVe8W": "Close modal",
+ "NXXPcB": "Learn more",
+ "NXudQj": "Add people outside of your team who members can share files and folders with.",
+ "NY7/41": "Invited {email}",
+ "NYpPqO": "Settings",
+ "NYuVLU": "Contact support to change plan",
+ "NYv8Vp": "Rename",
+ "NZHWyW": "Back up computers{br}automatically",
+ "NZVpaY": "for 1 year",
+ "NZo2jD": "Your team has been deactivated. If you would like to manage your subscription, please renew your account.",
+ "NZzEL+": "A browser security setting may be the problem. In your browser, go to Preferences > Privacy and untick the 'Prevent cross-site tracking' option. Then refresh the page.",
+ "Naoobk": "You restored a previous version of {single_item_name}",
+ "NbJYeD": "You won\u2019t be charged now for adding new licences. If you don\u2019t cancel before your {trademark_business} trial ends, your new total cost of {recurring_amount_including_tax} {per_period_text} will be applied on {next_billing_date_string}.",
+ "NcWgmD": "Media / Entertainment",
+ "NcthYc": "left arrow",
+ "Ncw9cm": "Redeemed",
+ "Nd85dl": "Starred",
+ "Ne60JG": "Try it now",
+ "NeW8sZ": "You moved {item_name}",
+ "NeccKf": "Unarchive",
+ "Nexiwd": "{firstName} will be notified that you downloaded these files",
+ "NeyT92": "Can\u2019t show content because it is password protected.",
+ "NfgkYn": "You don\u2019t have any notifications yet.",
+ "NfzmC+": "personal",
+ "Ng8c6M": "{count, plural, one {{count} closed ticket} other {{count} closed tickets}}",
+ "NgTcxb": "Actions such as move, edit, rename or restore.",
+ "Nghsi/": "{value, plural, one {for {value,number} hr} other {for {value,number} hrs}}",
+ "NgjtUN": "Copy link",
+ "NhIjmX": "Sign out link",
+ "NhIxxD": "Make a copy",
+ "NhUbjO": "when billed yearly",
+ "Nhp2g3": "The tour teaches you the Dropbox basics.",
+ "NhtmWc": "Continue",
+ "NiMCaD": "You do not have access to update files in this folder.",
+ "Nihsyw": "since {monthAbbreviation} {year}",
+ "NiwHhT": "Link code copied to clipboard",
+ "NjAmgH": "Move tabs view to the left",
+ "Njd630": "Descending",
+ "NjmLLk": "Upgrade to {trademark_plus}",
+ "NkSgcX": "Basic",
+ "NkhP8O": "{count} comments",
+ "NkyguJ": "Make {name} a manager?",
+ "NljqhE": "With {space} of space and team folders, your team can keep work projects in one place, so you\u2019re always on the same page.",
+ "Nlpjot": "Start brainstorming",
+ "NmIVk8": "Dropbox keyboard shortcuts",
+ "NmN5oD": "Link URL",
+ "NmWNM0": "Your Dropbox account has over {max_files,number} files.",
+ "NmXa3c": "{folderCount, plural, one {{folderCount,number} folder} other {{folderCount,number} folders}}",
+ "NnFH3B": "You\u2019ve selected the {choice} plan, effective {date} for {total}{tax_string}{billing_schedule}.",
+ "NnancA": "To the extent required by law, Dropbox will make its internal practices, books and records concerning the use and disclosure of PHI received from the Customer, or created or received by Dropbox on behalf of the Customer, available to the Secretary for the purpose of the Secretary determining compliance with this HIPAA BAA.",
+ "Nnbt/j": "1 session",
+ "NncM6z": "Cancel",
+ "NoCg9B": "{count, plural, one {Try Professional free for {count,number} day} other {Try Professional free for {count,number} days}}",
+ "NoSBXU": "Sixth highest activity",
+ "NoV3Co": "Share",
+ "NoXMQk": "{count, plural, one {Base package ({count} user)} other {Base package ({count} users)}}",
+ "Nob0wT": "See and adjust their settings in one place",
+ "Np4B00": "This download is empty",
+ "NpB8sp": "{intended_recipient} was given access, but you\u2019re signed in as {user_email} and {user2_email}.",
+ "NpPBjp": "Leaving \u201c{group_name}\u201d will cause you to lose access to folders that have been shared with the group.It might take a little while to remove you from all of the group\u2019s shared folders.Are you sure you want to leave the group?",
+ "NpqbWT": "Uninvite",
+ "NpsjeY": "upload processing error",
+ "NqCAew": "You won\u2019t get an alert if a member makes too many unsuccessful sign-in attempts.",
+ "NqCfwG": "Renamed 1 item.",
+ "NqYdzS": "Moving folders",
+ "NrJSjr": "Congratulations!",
+ "Ns68t5": "or purchase {trademark_business} now.",
+ "NsQt0k": "+ extended version history",
+ "Nsg834": "{count, plural, one {Wrong PIN. Please try again. {count} attempt left.} other {Wrong PIN. Please try again. {count} attempts left.}}",
+ "NtKu8x": "Now add your personal Dropbox",
+ "Ntdwnu": "Invite members",
+ "NtvEm+": "Loading prices...",
+ "Nu/rnN": "The Dropbox mobile app makes it easy to upload photos and browse files on the go.",
+ "Nu71w8": "Exception list",
+ "NuExA/": "Access vault",
+ "Nujd0t": "Invoice ID",
+ "NupPFJ": "White",
+ "Nv5y/t": "{name} turned on commenting for {entity}",
+ "Nv8qgA": "Type notes, lists, to-dos and links here",
+ "NvAM7e": "We\u2019ll send a security code to this phone number whenever you sign in to the Dropbox website or link a new device.",
+ "NvBP0X": "You are about to follow {folderName}.",
+ "NvTnE8": "Upcoming invoice",
+ "NvnIZx": "This is not an invoice. No additional payment is required.",
+ "NvnYTR": "System extension installed. Your team will be able to use Smart Sync soon.",
+ "NwET3R": "New campaign name",
+ "NwgHCI": "This setup takes about 5 minutes.",
+ "Nwm5fv": "You\u2019ve lost access to this feature.",
+ "NwqsgR": "You\u2019ll create a new, personal Dropbox account for your existing files and Paper docs.\nThis will give you two accounts \u2013 your {work_email} account for {team_name} work and a new\npersonal account for your existing files.\n{team_name} has disabled Smart Sync, so you\u2019ll be signed out of Dropbox and online-only files will be\ndownloaded to your hard drive next time you sign in.",
+ "Nx+GgG": "The copies of any files held for these members were released",
+ "Nx/CjN": "Unable to communicate with the parent window",
+ "Nx5qLe": "Is this related to a cancellation?",
+ "NxT6xK": "You can add your business address to your account. Email us.",
+ "NxbWQm": "Unknown error.",
+ "NxypHv": "Allowed",
+ "NySkqb": "Continue",
+ "NyU163": "User management admin",
+ "NzS/z7": "Margins",
+ "O+09zl": "Also remove the {folder} folder from my Dropbox.",
+ "O+4GQg": "Continue with {advanced_plan}",
+ "O/A0V6": "Notarise",
+ "O/qGMq": "EXPORTS",
+ "O0BGWD": "There are no pending requests.",
+ "O0cs6d": "Re-add shared folder",
+ "O0fS0p": "{trademark_plus}",
+ "O10Rri": "From date",
+ "O1327M": "You don\u2019t have permission to share with this person.",
+ "O155EY": "Set up whether or not you would like to archive or remove synced labels when a task is completed.",
+ "O1Os1s": "Got it",
+ "O1Rhla": "Team Space",
+ "O1TK29": "Add identity provider sign-out URL",
+ "O1WB5s": "You\u2019re already adding this extension in a different tab or window.",
+ "O1dqUh": "Unlimited storage space",
+ "O1pSr5": "Turn on capture for all users?",
+ "O2P4yU": "3 sessions",
+ "O2aovx": "Link for viewing",
+ "O2g73l": "Invite people, remove members and customise your work Dropbox here.",
+ "O2x34C": "\u2013",
+ "O3imHf": "Click 'Open with' and select airSlate PDFFiller to open PDFs.",
+ "O3t22Y": "{count, plural, one {Pasting {count} item...} other {Pasting {count} items...}}",
+ "O4CWz2": "You don\u2019t have permission to share this folder",
+ "O4kD9g": "The Customer may immediately terminate this HIPAA BAA and the Agreement with ten days written notice to Dropbox if Dropbox has materially breached this HIPAA BAA and this Breach is not reasonably capable of being cured.",
+ "O4leSN": "This folder has been unshared successfully.",
+ "O4sXJn": "Refresh",
+ "O4zHuE": "Set up your team",
+ "O519Y0": "When ready, share video files without comments or distractions.",
+ "O5Qcg3": "Advanced user management",
+ "O5SEBi": "Abandon changes?",
+ "O5uhol": "Editing",
+ "O61MZm": "Smart Sync will be enabled for your team soon.{br}{br}\n Choose how new files will be downloaded to your team\u2019s computers once Smart Sync has been enabled.\n Members will be able to change this setting.",
+ "O7/lCv": "Due to browser limitations, OSX package files cannot be uploaded using drag and drop. Please try using the \u201cUpload\u2026\u201c dialogue.",
+ "O7A3yo": "Update email address",
+ "O7BCIr": "You\u2019ve asked for too many SMS messages. Please try again in a few minutes.",
+ "O7CH0I": "Move undone.",
+ "O7CY5l": "File name, path and type",
+ "O8AXV+": "Add more licences",
+ "O8HeNC": "Team members will be allowed to connect to all apps by default.",
+ "O8I0Gn": "Change admin permissions",
+ "O8Naoq": "Processing requests...",
+ "O95qsf": "Find answers quickly. Create a repository of how-to articles and troubleshooting information so everyone can easily search for and access what they need.",
+ "O99+Er": "Remote wipe",
+ "O9Jkty": "Done",
+ "O9dNgg": "Recent searches",
+ "OA+88i": "Team admin",
+ "OADU7S": "Delete\u2026",
+ "OB88jc": "Dropbox Passwords",
+ "OBuYzb": "Works on multiple platforms",
+ "OC4T38": "Tidy up",
+ "OCOC9k": "Continue to Dropbox",
+ "OCb7Mh": "We need to rename your Dropbox folder",
+ "OCdQsd": "Add members to \u201c{group_name}\u201d",
+ "OD1MtT": "Members shown here can see these files",
+ "ODdavd": "Dropbox core features",
+ "OEENLu": "Choose this if you can edit your website\u2019s DNS records",
+ "OEFgbn": "We don\u2019t recognise that email address",
+ "OEKMzc": "Welcome to our beta experience",
+ "OEKxnB": "Email customer support",
+ "OExDRE": "Cancel",
+ "OF0915": "Sign in to Dropbox to continue",
+ "OFKXCT": "Please enter all characters of your user code",
+ "OFYmCJ": "Overview",
+ "OFgJ+q": "Viewer info",
+ "OG4MbM": "{count} videos. {duration} total, {size}",
+ "OGP7zL": "Or continue to website",
+ "OGgkeh": "Who should manage this group?",
+ "OGx/sB": "Manage sharing permissions",
+ "OHbXbJ": "deleted file",
+ "OHjjej": "{index} of {total}",
+ "OIN73X": "Create a report of active mobile app logins split by regular and EMM app usage.",
+ "OIhm4f": "To keep your vault secure, you have to wait 48 hours after resetting your Dropbox password to reset your vault PIN.",
+ "OJ+o7N": "Request closed. People can no longer upload files.",
+ "OJ7q+4": "Admin \u2022 {team_name}",
+ "OJ9Y5C": "Personal",
+ "OJBfwL": "Device still counts towards the limits until an admin removes the device",
+ "OJDO+R": "Second highest activity",
+ "OLMpMV": "Send email",
+ "OLVDIw": "Next: Organise",
+ "OLtEJk": "Your stuff is safe",
+ "OM+iN6": "While licences are available, members can join via this link until {expiration_date_time}.",
+ "OMQnle": "Can\u2019t add a {record_type} record?",
+ "ON/b0t": "{count, plural, one {{name} deleted {count} item in {folder_path}} other {{name} deleted {count} items in {folder_path}}}",
+ "ON/qTD": "Completed {date,date,::MMMMdyyyy}",
+ "ON2oaH": "Bottom left",
+ "ONHPlw": "Paper doc",
+ "ONJQst": "Open Gmail",
+ "ONLlhD": "Your team will lose {trademark_business} on {trial_end}",
+ "ONU27Q": "sRGB",
+ "ONiz97": "People with access to {fileName}",
+ "ONtN0I": "Continue as {real_name}",
+ "ONvAGg": "The account will be disconnected from the team and converted to an individual account",
+ "OOXAdE": "Take your teamwork to the next level. Get {space} of space for all of your content.\n Powerful sharing features make it easy to create, share and work together.",
+ "OOeNI+": "Try {plan} for {space} of storage",
+ "OOlP8f": "Select the types of files",
+ "OP+/xy": "Access all of your files from your desktop, without taking up all of your hard drive space.",
+ "OP5B1a": "Bring together colleagues and work projects{br}in one centrally managed place",
+ "OPZM3Q": "Could not reach service",
+ "OPfmxc": "On your computer, go to: {url}",
+ "OPn00e": "Sign out button",
+ "OQ+zMT": "Please enter your first name",
+ "OQCtBW": "Close",
+ "OQQdKv": "Get started",
+ "OQRgv6": "{count, plural, one {You need {count} more licence to import everyone in the CSV. Contact your Dropbox representative to buy more licences.} other {You need {count} more licences to import everyone in the CSV. Contact your Dropbox representative to buy more licences.}}",
+ "OQUTbS": "Free up your hard drive space with Smart Sync",
+ "OQqht6": "Here are a few people you already work with that could help you get started.",
+ "OR7k9Y": "Link creator email",
+ "OR8NN3": "Want {trademark_business} back?",
+ "ORB1Kv": "See other plans",
+ "ORTRPA": "Leave team and log out",
+ "ORosDx": "You work with more than just words. So does Paper",
+ "ORvNm9": "Paste selected file(s) into the current folder",
+ "OSMZBg": "Can I buy more Dropbox storage space?",
+ "OSqOkI": "Please enter the cardholder name.",
+ "OTHFTR": "{name} will be notified that you\u2019ve signed in to {assume_name}\u2019s account.",
+ "OTPvT6": "Contacts",
+ "OU6O6t": "There was an error completing this action.",
+ "OULVEB": "reload this page",
+ "OUUNz7": "I agree to the Dropbox Terms and the Automatic Renewal Terms above",
+ "OUuuss": "Monitor activity",
+ "OUyDaO": "{dropbox_trial_plan_name} trial",
+ "OVUDyw": "We were unable to process your payment. Double-check the payment info and try again. If that doesn't work, try another payment method or contact your bank",
+ "OWOu9T": "{userFirstName} can edit, delete, comment and add the files to their Dropbox",
+ "OWyiUl": "Put files in your Dropbox folder",
+ "OX5PaW": "Easily create shared spaces for photos, videos, docs and more",
+ "OXWpDh": "Margins",
+ "OXfp6E": "There was an error adding the billing period.",
+ "OXjubu": "The Google Directory integration is turned off.",
+ "OYPjNT": "Keep stuff here that you don\u2019t want to share with everyone.",
+ "OYVZbq": "This transfer is large ({size})",
+ "OYxS0q": "Add new",
+ "OZMzfd": "Do you have any discounts for {trademark_business} and Dropbox {enterprise_plan_name}?",
+ "Oa/2oK": "Describe briefly what this Prompt campaign is for.",
+ "OaAlGW": "View the guide",
+ "OaXqC3": "{maxRewindDays}-day history",
+ "Ob69jI": "Recruitment doc",
+ "ObIEGE": "Choose files or just drag stuff here",
+ "Obnnr1": "Choose any file as a preview image, or add more files",
+ "OcwzuU": "Your {team} Dropbox uses single sign-on. If you change your email address you may not be able to sign in.",
+ "OdBFOF": "Join the team automatically (default)",
+ "OdSVd7": "Other people",
+ "OdkQ53": "Do you permit these modifications to be made to your account?",
+ "Oe2LfB": "An administrator at {teamName} has given\n these apps access to your {teamName} Dropbox account.",
+ "Oe5koB": "Choose what to include. You will receive zip files with the content according to your selection:",
+ "OeOpuZ": "We'll send a link to:",
+ "OefYpa": "Renaming\u2026",
+ "Oepnv4": "IT",
+ "OeqZRS": "Loading",
+ "Of11Oh": "Upgrade plan",
+ "OfWQLS": "Reset password icon",
+ "Ofo1Y4": "This account\u2019s {plan} plan will be renewed on {date}. {billing_summary}",
+ "OfxyEk": "Undo",
+ "OgIvny": "Extension added.",
+ "OgNBqT": "Zoom to fit",
+ "OgSWgf": "We\u2019ll keep track of anyone you invite and add them to your next billing cycle",
+ "Ogftr0": "Choose if your members often access files offline. Local files download to members\u2019 hard drives.",
+ "OgxCD1": "If you can\u2019t find an answer, please submit the help request form below.",
+ "Oh0wdv": "You can share files and folders with anyone you like, including people without Dropbox accounts for file storage. Simply send them a shared link to the file or folder via email, chat or text.",
+ "OhBKpA": "Get a quick view of your next meeting",
+ "OhU3GK": "Only {name} will be able to unshare this folder or change the folder settings.",
+ "Oheq5u": "Need to send more than {file_size_limit}? Upgrade to the {premium_product_name} plan to send up to {premium_file_size_limit} per transfer for as little as {plan_price}.",
+ "Oi1tCv": "Tell us what you liked and didn\u2019t like about Dropbox Markup.",
+ "OiaK8U": "{price}/user/month",
+ "OjPwUp": "That doesn\u2019t look right. Please double check that it\u2019s been typed correctly.",
+ "OjQiV/": "
If you\u2019re a team admin and you\u2019re currently subscribed to a Dropbox Business plan, you can cancel your Dropbox Business account and downgrade to a free Dropbox Basic plan immediately without the assistance of an agent.
If you\u2019re a team member, please contact your team admin.
",
+ "Ok6IAW": "Create new label named",
+ "OksEV/": "Creating report. We\u2019ll email you when it\u2019s ready.",
+ "OkuYQL": "Team members can suggest other colleagues to invite",
+ "OlAriH": "Here\u2019s your unique email address",
+ "OlLOeA": ".",
+ "OlZHQn": "This link allows editing. Now copy and share it.{br}{copiedUrlDisplay}",
+ "Olh9S5": "An idea for improving App Centre",
+ "OliUn4": "Add email addresses of required signatories and click 'Send'.",
+ "OlmKiV": "{count, plural, one {and {count} more\u2026} other {and {count} more\u2026}}",
+ "Om3b8J": "{remainder, plural, =0{{adminName}} one{{adminName} + {remainder} more} few{{adminName} + {remainder} more} other{{adminName} + {remainder} more}}",
+ "OmDyAr": "Adjust individual settings or manage content as if you were an admin in that team.",
+ "OmxUNA": "Viewed {timeAgo} on mobile",
+ "On2XZ7": "Item",
+ "OnylHi": "{current_plan_space} of space",
+ "OocP1o": "Invite friends and family to Dropbox!",
+ "OosHNs": "Use at least 8 characters, and make sure it's four bars strong",
+ "OpkK4e": "You and your family will be downgraded to {dropbox_basic} and you\u2019ll lose access to the plan\u2019s storage and features, and the Family Room folder.",
+ "Opr8C4": "blue",
+ "OrpLrY": "{count, plural, one {Anyone with this link can view the folder. Expires in {count} day. Downloads disabled.} other {Anyone with this link can view the folder. Expires in {count} days. Downloads disabled.}}",
+ "OrtsOb": "Locked on",
+ "Os0dR9": "Back",
+ "OsnO9g": "Loading user information",
+ "OtHWaT": "Members can share with anyone",
+ "OtHjAe": "Remove trusted contact?",
+ "OtZGgm": "{count, plural, one {Some invitations have been sent. Fix any issues, then try the last {count} again.} other {Some invitations have been sent. Fix any issues, then try the last {count} again.}}",
+ "Otbtb3": "Name of your brand",
+ "Otf/f5": "Open PDFs",
+ "Otg1Lv": "Your Dropbox account space",
+ "Our+01": "We were unable to invalidate the remote web session. Please try again.",
+ "OvA3wS": "Open in app",
+ "OvEApa": "Creating edit link...",
+ "OvXIzH": "Existing transfers created by people in your team will no longer work.",
+ "OvqzYc": "Trusted by over 600 million users and 500,000 teams",
+ "OwA6SJ": "{count, plural, one {{count} item} other {{count} items}}",
+ "OwM/TA": "Save and continue",
+ "OwOF5Q": "Unknown",
+ "OwbJue": "Zoom integration",
+ "OwjUWl": "Auto-PDF",
+ "Owrqe1": "Dropbox needs to verify your email address {email} before you can open or create this document type. It\u2019s as simple as clicking the link in the verification email we send you.",
+ "OwyHDD": "Your team is losing the additional space it\u2019s been using, and you and your team members have returned to your initial space quotas.",
+ "Ox/AiR": "It looks as though the account for {email} is no longer active. You can still invite them to your team using a different email address.",
+ "Ox2/TQ": "Deleted Paper template",
+ "Ox5dUX": "Centrally organised",
+ "OxD4LC": "How to use Dropbox in Outlook",
+ "OxDNvg": "Email address",
+ "OxPMei": "New PIN can\u2019t be the same as the current PIN",
+ "OxYdku": "Paper is a free product from Dropbox",
+ "OxnC7Q": "Cancel {trademark_business} and disband my team",
+ "OyZpYC": "Update billing information",
+ "OzYUpO": "Empower your product team from prototype to launch \u2013 plan product roadmaps, define requirements and track milestones \u2013 all in one place.",
+ "P+XAua": "Name",
+ "P+eLkO": "Member already exists in the group.",
+ "P/IvMW": "Settings",
+ "P/dkL3": "{count, plural, one {As a member of the parent folder listed below, {member_name} can still access \u201c{content_name}\u201d.} other {As a member of the parent folders listed below, {member_name} can still access \u201c{content_name}\u201d.}}",
+ "P/uBH5": "About us",
+ "P04P4t": "details input",
+ "P09UfX": "Create an account",
+ "P0gVhK": "You shared this file with {entity}",
+ "P1B38C": "Your billing instrument owner has left the team.",
+ "P1K02u": "Marketing",
+ "P1PU7P": "Forgotten password?",
+ "P1VH2B": "Ask to join",
+ "P20fk8": "Rename \u201c{team_folder_name}\u201d team folder",
+ "P24vQI": "Upgrade to {trademark_business} Advanced to unlock SSO",
+ "P28eHo": "Last recovery time",
+ "P2LnMx": "Transfer created",
+ "P2YFKh": "From",
+ "P2lPuL": "Personal photo",
+ "P32cOy": "",
+ "P3A6lo": "Task assigned to {assignee}",
+ "P3TVFG": "{count, plural, one {You no longer have access to {filename} and {count} more item. You can\u2019t make any changes to them, but you can hide them from your view. Hiding folders won\u2019t free up space.} other {You no longer have access to {filename} and {count} more items. You can\u2019t make any changes to them, but you can hide them from your view. Hiding folders won\u2019t free up space.}}",
+ "P4Qlll": "Existing",
+ "P50ARm": "I already have a personal Dropbox. ",
+ "P5UC5r": "Working individually",
+ "P63UMO": "{width} x {height}",
+ "P6CB9z": "You selected",
+ "P6MDB7": "On, return not detected",
+ "P6bMr9": "Dropbox will notify the Customer promptly following the discovery of a Breach resulting in the unauthorised use or disclosure of PHI in violation of this HIPAA BAA, including a Breach of Unsecured PHI or a Security Incident (as defined in HIPAA) (subject to Section 4.3 below): (a) in the most expedient time possible under the circumstances; (b) consistent with the legitimate needs of applicable law enforcement and applicable laws; and (c) after taking any measures necessary to determine the scope of the Breach and to restore the reasonable integrity of the Services. Dropbox will use commercially reasonable efforts to mitigate any further harmful effects to the extent practicable.",
+ "P6oJRK": "We do this if you\u2019re inactive for 20 minutes to keep your vault extra secure.",
+ "P6qA0B": "Delete link",
+ "P6xthG": "Sign in to link your personal Dropbox",
+ "P7HZjI": "{teamUserQuotaUsed} by you",
+ "P7deO/": "Reset password",
+ "P7oHCQ": "Copy\u2026",
+ "P7t+8/": "Make a copy",
+ "P7zSWW": "Files extracted.",
+ "P83QkT": "Turned off download notifications for this transfer",
+ "P8HBHs": "Checking CSV for errors\u2026",
+ "P8Mgv7": "Set a deadline",
+ "P8lC1N": "Easily send large files to your clients and collaborators for a low monthly price \u2013 only pay for what you need.",
+ "P9Va6D": "Couldn't send invitation. You don't have enough licences.",
+ "P9d3A/": "Add your company logo to files and folders that team members share.",
+ "P9kJMW": "You\u2019ll get everything in Basic, plus more space and features to meet your needs",
+ "PA/fB/": "We were unable to send the email. Please try again.",
+ "PAl3R1": "recommended",
+ "PAlobr": "Get app",
+ "PAub6K": "Mixed state",
+ "PAwgIQ": "Select from your contacts",
+ "PBNiJg": "Share link",
+ "PBlZQX": "FAMILY ROOM FOLDER",
+ "PBtB8Z": "Third highest activity",
+ "PCBt4J": "{count, plural, one {{count} member folder needs attention} other {{count} member folders need attention}}",
+ "PDAM7o": "Names or email addresses",
+ "PDcSBk": "Team credit",
+ "PDf7V0": "to view your team settings.",
+ "PDtG7K": "Something went wrong. We\u2019re working on it.",
+ "PEHHTL": "Member won\u2019t have access to team-owned folders, and any file transfers they created will be deleted",
+ "PEIYLr": "Document watermarking",
+ "PEgSVc": "Invalid code. Check the clock on your phone: it must be accurate to the minute.",
+ "PEwYAD": "Links with no password",
+ "PF5/Db": "up arrow image",
+ "PF5dGC": "How many people are part of your company or organisation?",
+ "PFG0iF": "The easiest way to sell and deliver content to your audience, wherever they are.",
+ "PFIGmO": "Title",
+ "PFKBNP": "To keep {trademark_business}, add your billing info now.",
+ "PFbaDU": "Let\u2019s create your new personal account",
+ "PFhg9W": "DOC, DOCX, TXT and more",
+ "PG/NFZ": "Password",
+ "PG3Gmt": "Let members customise branded sharing settings for their own files and folders.",
+ "PGzdyw": "Description",
+ "PH6K5f": "{count, plural, one {{count,number} email isn\u2019t formatted quite right: {emails}} other {{count,number} emails aren\u2019t formatted quite right: {emails}}}",
+ "PHH9jg": "It shows shared links, files and folders that have been shared directly outside your team:",
+ "PHRYz8": "Your changes weren\u2019t saved because you and {user} are editing at the same time.",
+ "PHXhTB": "Profile picture",
+ "PHaeBQ": "Get a better view with our mobile app",
+ "PHsPd8": "Open",
+ "PIl5L5": "Logo added.",
+ "PItzXQ": "Dropbox password",
+ "PJ4sk8": "Get Rewind",
+ "PJ73DL": "Document password modal",
+ "PJQlMg": "Organise and track work from start to finish. Help your team stay updated on who\u2019s doing what and when with timelines, to-do lists and task assignments.",
+ "PJd4si": "Please choose a time in the future.",
+ "PJfssY": "Premium features and advanced sharing tools that help you impress clients and streamline work.",
+ "PKNU0b": "ICC profile",
+ "PL4zXJ": "Edit their files and folders",
+ "PL5ta5": "Restore",
+ "PLAAYq": "Drop your files to {upload_action}",
+ "PLJiGa": "Something went wrong while previewing this file.",
+ "PM6K+P": "Can\u2019t save changes.",
+ "PMHVpC": "Settings",
+ "PMI4xl": "Ask to unlock",
+ "PMSOip": "There was an error changing the plan.",
+ "PMavJn": "Contact us",
+ "PMd9/i": "Content and accident protection",
+ "PMfwbr": "Attach a folder to a card in Trello",
+ "PMobl1": "{name} moved this file",
+ "PMr1lK": "Paper and Slack logo",
+ "PNPChM": "View audit log",
+ "PNVJtD": "Date shared",
+ "PO7S4L": "{count, plural, one {{count} member} other {{count} members}}",
+ "POdy2v": "Other",
+ "POg1eB": "Save",
+ "POz5Yg": "Failed to send message: unknown error.",
+ "PPhTnI": "To see your ticket details, first verify your email address. How to verify your email address",
+ "PPnGE0": "Share folder with {user_name}?",
+ "PQsul4": "All of your Dropbox accounts, just a click away",
+ "PQvHLQ": "Fired, red-eye reduction",
+ "PR4jc3": "View photos",
+ "PR6SPH": "Show examples",
+ "PRhWnv": "Set up your team space in the admin console",
+ "PRuNTW": "View in Trello",
+ "PRyQrc": "{count, plural, one {{count,number} hour} other {{count,number} hours}}",
+ "PSIegi": "Markup",
+ "PSJxt4": "Add more files",
+ "PSKrse": "Markup is available on PDFs and images.",
+ "PSWfh4": "On, fired",
+ "PSu1/X": "Accept request to manage this Dropbox team?",
+ "PT+cad": "{count, plural, one {{count} {default_plural_text}} other {{count} {default_plural_text}}}",
+ "PTGTT4": "Adding to your {team_name} Dropbox...",
+ "PU73E/": "Reject the request",
+ "PUEF0A": "To the extent Dropbox uses agents and subcontractors in its performance of obligations hereunder, Dropbox will remain responsible for their performance as if performed by Dropbox itself under the Agreement.",
+ "PUOr+m": "Try {plan} for {space} of storage and premium features",
+ "PUQ8kA": "Couldn\u2019t save watermark. Refresh the page to try again.",
+ "PVls0A": "Cancel",
+ "PVsh9/": "Backup phone number (optional)",
+ "PVw1P4": "This person isn\u2019t in your team",
+ "PWMYmg": "{count} accounts connected",
+ "PWjyhd": "People can view, download and comment",
+ "PWwIFP": "Single sign-on",
+ "PX5Hq1": "Deleted {time_ago} by you",
+ "PXBiMo": "Email this person",
+ "PXwJ3O": "These settings will apply to all folders in \u201c{folder_name}\u201d.",
+ "PY5aIV": "{megabyteSpace} ({gigabyteSpace})",
+ "PYAOBV": "Cancelling your trial changes your account back to a {dropbox_current_plan_name} account.",
+ "PYQBlc": "To edit this overview, ask the folder admin for access",
+ "PYSHWA": "Show files",
+ "PYWplI": "{count, plural, one {Email {count} unmanaged user?} other {Email {count} unmanaged users?}}",
+ "PZ+1D/": "URI scheme must be http or https",
+ "PZ65LR": "Your family manager can invite up to 5 other members, aged 13 and over.",
+ "PZQCFo": "Everyone at {team_name} can view folder name",
+ "PZQMga": "{name} rewound {item_name} to {rollback_date}",
+ "PZwVZ3": "{count, plural, one {Moved {count} item to {team_name}} other {Moved {count} items to {team_name}}}",
+ "Pa7KCD": "{count, plural, one {Members of the file with this link can view. Expires in {count} day.} other {Members of the file with this link can view. Expires in {count} days.}}",
+ "PaAO0M": "Already invited",
+ "PaR0U3": "Skip",
+ "Pb48Th": "I hereby authorise Dropbox International Unlimited Company and its payment service provider, Adyen Client Management, to collect payments from my account via direct debit. At the same time, I instruct my bank to honour the direct debits drawn on my account. Notice: within eight weeks of the debit date, I am entitled to claim a refund of the debited amount. In this case, the terms and conditions agreed with my bank shall apply.",
+ "Pbu/yd": "You\u2019ll be charged for these licences in your next billing cycle",
+ "PcJCVL": "Google Slides",
+ "PcQnIr": "Click 'Open with' and select Vimeo to play video files.",
+ "Pd9zcR": "Learn more with our deployment guide.",
+ "PdDoem": "Move files later",
+ "PdfJvT": "Continue verification",
+ "Pdlwuk": "You can create groups here",
+ "PeWyMD": "Keep everything that\u2019s important to you and your family shareable and safe in one place. Back up files in the cloud, share photos and videos, and more.",
+ "Pet0Vl": "Type",
+ "PfRcC6": "Don\u2019t leave",
+ "PfY41V": "Sorry, an error occurred while retrieving the file.",
+ "PfYbeE": "Account team",
+ "Pfi713": "Admin permission successfully changed",
+ "Pfilk1": "{count, plural, one {Anyone in your Dropbox team with the link and password can view this folder. Expires in {count} day.} other {Anyone in your Dropbox team with the link and password can view this folder. Expires in {count} days.}}",
+ "PgwsPn": "Select an account photo so your friends and colleagues can recognise you around Dropbox.",
+ "PhGbr0": "{count, plural, one {Day} other {Days}}",
+ "PhLzOH": "Category",
+ "PhMkNO": "You have selected multiple files.{line_break}Your photo should be a single file.",
+ "PhOzXb": "Craft guidelines that help everyone create written and visual materials.",
+ "PhUVTN": "Could not create Paper document.",
+ "Pht6fV": "views",
+ "Pi4HRg": "Deleted by {createdUserName} on {creationTime}",
+ "PimhQE": "Completed {date,date,::MMMMd}",
+ "Piygsl": "Do any of these help with storage space?",
+ "PjHKY9": "Up to six members per plan",
+ "PjwOeo": "Close",
+ "PkNdPW": "Processing too many exports at once. Wait for some to finish before creating more.",
+ "PlqqHg": "Have you removed the malicious software from\n {infected_host_name}?",
+ "Plr17F": "Call us",
+ "PmBwPB": "{count, plural, one {{creator_name} sent you {count} item} other {{creator_name} sent you {count} items}}",
+ "PmbScl": "Your Canvas domain",
+ "Pn29Sj": "Hi {user_first_name}! Please verify your email address",
+ "Pn2AMk": "Loading",
+ "PnswIO": "Loading... Your {discount_promo,number,::percent .##} discount.",
+ "PoJI4y": "Price",
+ "PoOvq2": "All events",
+ "PoY43K": "Manually added contacts cleared.",
+ "PogbwQ": "You can work with PDFs and eSign documents with the Nitro for Dropbox extension. No account needed.",
+ "PpN/KN": "Total",
+ "PpNqNP": "Neither satisfied nor dissatisfied",
+ "PpOldx": "Upgrade requests",
+ "PpcUgB": "per licence/year",
+ "PpsiBa": "Surname cannot be longer then 100 characters.",
+ "PpzSQx": "Switching your trial...",
+ "PqIIiR": "View and make changes to your Dropbox content while using these apps outside Dropbox. If you don\u2019t recognise an app, disconnect it.",
+ "PqLAde": "Anyone with this link and password can view the file. Downloads disabled.",
+ "PqiX1h": "Step {index} of 3",
+ "Pr7xk0": "Send reminder",
+ "PrrLa1": "Shared folders you can no longer access",
+ "PrwN21": "Or go to my account",
+ "PrxZ9I": "For which account do you have problems or questions?",
+ "PsDrag": "This group has no members.",
+ "PstX9C": "Cannot find this file.",
+ "PtdLen": "Try different keywords",
+ "PuHPAx": "Accept multi-team admin access?",
+ "PuMMVk": "Share with your family",
+ "PuT77r": "Invite a friend",
+ "PunJ70": "Is this menu helpful?",
+ "Pusc3p": "Start a new team",
+ "Pv4PZq": "Colleagues can find the team",
+ "PwDZzA": "DELETED PAPER TEMPLATE",
+ "PwcTOv": "You\u2019ve been invited to join this family, but you\u2019re already a member of another family. To join, first you will need to leave the other family.",
+ "PwhU88": "Microsoft Office integration",
+ "PwlbGl": "Cancel merge",
+ "PwpLyS": "Switch plan",
+ "Px7V46": "You can cancel or downgrade at any time",
+ "Pxv2Bf": "Close",
+ "Pyjh81": "B",
+ "Pyr6tE": "Reminder sent",
+ "Pz9qz8": "This report will list the details of what\u2019s held, but won\u2019t contain the actual content. If you want to download specific content, create an export",
+ "PzRQP6": "Connect to {app_name}",
+ "PzqQsu": "Add a teammate\u2019s email address",
+ "Q+i9bs": "Removing EVH is permanent",
+ "Q+qYME": "If you did not ask for these changes to be made and suspect someone has gained access to your account, visit our ",
+ "Q/Ystp": "Will I be charged again for the gift after the year expires?",
+ "Q/uvgN": "Review request",
+ "Q09uEI": "No",
+ "Q0Jny+": "Protect company files with extra security",
+ "Q0vYf2": "Admin console and audit log",
+ "Q2RYcj": "Start your free trial",
+ "Q2mX2B": "Shared files ({fileSize})",
+ "Q3/5pg": "File name",
+ "Q3DtWa": "Payments are secured using SSL and client-side encryption.",
+ "Q3N5qr": "",
+ "Q3Sq7i": "To",
+ "Q3c2/b": "Jobs",
+ "Q3xYBV": "Only approved emails are automatically approved",
+ "Q4+hCS": "Identity provider sign-out URL isn\u2019t valid. Double check the URL and try again.",
+ "Q4Jjko": "I agree to the Dropbox Terms{br}\n and the Automatic Renewal Terms above",
+ "Q4fCNj": "Online-only files may appear to take up hard drive space.",
+ "Q4wsJE": "{count, plural, one {Restore any files deleted in the last day} other {Restore any files deleted in the last {count} days}}",
+ "Q5/ZUe": "Advanced",
+ "Q52O3K": "Selected items will be made online only. To download them, you\u2019ll need Internet connection.",
+ "Q5JoRg": "This app is already in the list of exceptions. Select Manage this app to make changes to its permissions.",
+ "Q5eGXD": "American Express",
+ "Q5icG3": "For now, everyone in your team will have access to these folders. Don\u2019t worry, it\u2019s easy to manage who sees what.",
+ "Q6HGJm": "Joined",
+ "Q7DkIp": "{count, plural, one {Drop your file to {upload_action}} other {Drop your files to {upload_action}}}",
+ "Q7c02m": "* You can only use the offer if you received it from Dropbox. Dropbox reserves the right to cancel, suspend and/or modify the offer for any reason, including for fraud, technical limitations and failures, or causes that impact the integrity of the offer.",
+ "Q7sWP+": "{count, plural, one {Expired {count} day ago} other {Expired {count} days ago}}",
+ "Q8GyzK": "Not now",
+ "Q8gucb": "Invalid phone number",
+ "Q8t9EL": "Settings",
+ "Q9UABZ": "Open link settings",
+ "Q9ZhL4": "You\u2019re not a member of any groups yet. You can join groups from the All groups section below.{br}You can also start a new group by clicking Create group.",
+ "Q9nbQ+": "security page.",
+ "Q9yFCX": "Your file request is now closed.",
+ "Q9yFMv": "Amount",
+ "QAFIzo": "Move tabs view to the right",
+ "QAKF9I": "Family",
+ "QANSaH": "Sorry, we were unable to show some recent items. The team has been notified",
+ "QB/fps": "Are you sure you want to remove admin permissions from {display_name}?",
+ "QB9ZqK": "The folder was unshared.",
+ "QBOH+K": "Smart Sync",
+ "QBUU3e": "Are you sure you want to delete {item_count} items from your Dropbox?",
+ "QBoKiR": "Deleted by {createdUserName} ({creatingUserEmail}) on {creationTime}",
+ "QBzB1q": "From {conversion_date}, we\u2019ll bill you once a {period_noun} for your Dropbox {professional} plan. Your new {period_adj} total will be {price}.",
+ "QC6PMi": "Legal",
+ "QCmzb1": "Shared workspace",
+ "QCqfQH": "PDF editing",
+ "QCr4LO": "Choose a trial plan",
+ "QCtVKy": "Zoom out",
+ "QCwOVh": "{count, plural, one {Anyone in your Dropbox team with the link can view this file. Expires in {count} day. Downloads disabled.} other {Anyone in your Dropbox team with the link can view this file. Expires in {count} days. Downloads disabled.}}",
+ "QDTGvc": "Download the Dropbox desktop app",
+ "QDkSaP": "{dropbox_family} will be cancelled, and active members of your {family_plan} plan will have their accounts downgraded to {dropbox_basic}",
+ "QE7mDk": "Switch trial",
+ "QECDJM": "I agree to the Dropbox Terms. Find out more about how we use and protect your data in our Privacy Policy.",
+ "QEa1gY": "Create your account",
+ "QF0Dlm": "Microsoft Office add-in",
+ "QGOArL": "Approve version",
+ "QGQo+Q": "When a lot goes wrong, Dropbox Rewind can help your team get everything back to how it was before the accident.",
+ "QGU+kc": "The merge will be completed soon",
+ "QGz6Gm": "{count, plural, one {Deleted {succesfully_deleted_files} of {count} items.} other {Deleted {succesfully_deleted_files} of {count} items.}}",
+ "QHAr8J": "You have up to 30 days to restore a deleted file.",
+ "QHORxg": "Elias Eldayrie, Vice President & CIO",
+ "QHQwQ/": "Keep plan",
+ "QHYG8r": "OK",
+ "QI5Jkq": "People with the password for this link",
+ "QIUR0U": "Don't worry, {sharedFileName} won't be deleted for anyone else. You won't be able to access it any more though.",
+ "QIbtY6": "Store and sync your passwords across devices with Dropbox Passwords.",
+ "QIf0Bk": "How do I find a billing receipt or invoice?",
+ "QIghg/": "Unshared \u2018{name}\u2019",
+ "QInyO5": "or",
+ "QJ3PjI": "Cancel trial",
+ "QJaWZs": "From Dropbox",
+ "QJkpjq": "Scheduled for future use",
+ "QK0rMM": "Let\u2019s create your new personal account.",
+ "QKAyXv": "",
+ "QKJdcZ": "Link copied. Use to invite 1 member.",
+ "QKJi9T": "When ticked, the user will be unable to dismiss the campaign and recycling will be disabled.",
+ "QKMF0j": "{name} moved {single_item_name} from {src_folder} to {dst_folder}",
+ "QKnjtl": "Allow by default",
+ "QL3zAp": "Web previews and comments",
+ "QL8I71": "{msg} or upload from computer",
+ "QLEWi3": "Send notifications",
+ "QLVg1B": "Cannot access",
+ "QLZhTq": "{business_standard_vacuuming_policy_max_days} days",
+ "QLcuON": "",
+ "QM5sCp": "Collaborate on team projects in Trello with Dropbox content.",
+ "QMTnUm": "Just people in my team with the link",
+ "QMuCDg": "Product thumbnail",
+ "QN4s/5": "Gain additional visibility and protection",
+ "QNNzfl": "Held members",
+ "QNTZp/": "Loading",
+ "QO2JjD": "Release this hold?",
+ "QOI9ju": "Manually added contacts",
+ "QOTha4": "Free 120-day file version history",
+ "QOZlS1": "With Paper\u2019s task management tools, you can assign to-dos, add due dates and mention people \u2013 from within the doc itself.",
+ "QOh2za": "Manage who can share, view and download files",
+ "QOlCGp": "You can download this export until {formatted_date}.",
+ "QPBzI3": "Personal",
+ "QPM2jQ": "Preview files",
+ "QPY6hX": "Illustration of a new account being added to the {DROPBOX_PASSWORDS} app",
+ "QPe1/g": "Paid users can expect a response within 24 to 48 hours.",
+ "QPvsZL": "Save to my member folder",
+ "QPyt8N": "With Dropbox Paper, members can share docs, give and get feedback on files, and track to-dos all in one place.",
+ "QQB/VR": "\u2013",
+ "QQHder": "Unlimited API access to security and productivity platform partners",
+ "QQJY5U": "Premium features and advanced sharing tools help you impress clients and streamline the working day.",
+ "QQfi/J": "There are no groups for you to join. You can start a new group by clicking ",
+ "QQgkMv": "Add a custom message (optional)",
+ "QQm6yI": "Make {name} the owner of this folder?",
+ "QQvyOj": "Are you sure?",
+ "QRAYYQ": "Confirm delivery",
+ "QRPh7O": "Team folder",
+ "QRWsYu": "From {date}, we\u2019ll charge you {scheduled_total} per month on your card ending {last4}.",
+ "QRXxfG": "Acknowledge",
+ "QRlbRH": "Upcoming team merge",
+ "QSImcV": "Clear filters",
+ "QSVPhT": "Unable to load versions",
+ "QSj8+6": "Phone support in business hours",
+ "QSlOA6": "Version history",
+ "QSlcsR": "Rotate anticlockwise button",
+ "QSmx0y": "Go to Settings on dropbox.com to unlink these accounts everywhere.",
+ "QSvGAQ": "New email address saved",
+ "QTX6zS": "Make sure everyone you work with has access to the files and storage they need",
+ "QTr5O6": "{planStorage}",
+ "QUAohd": "Prevent members who are not in your team from receiving and sending Dropbox traffic. Only applies to a configured corporate network.",
+ "QUUuyN": "Enable team Selective Sync to continue merging",
+ "QUs54P": "We were unable to unresolve the thread.",
+ "QUsVjS": "Account will be deleted",
+ "QVHrOU": "Bill yearly",
+ "QVI2zd": "Start bulleted list",
+ "QVORtW": "Off completely",
+ "QVdgUv": "Pending member",
+ "QVj3sy": "{display_name} is now an enterprise admin.",
+ "QVjnVd": "Thanks for verifying your email address: {email}.",
+ "QVvFym": "Team activity log only",
+ "QWAFI+": "Get answers, learn and engage with other Dropbox users (and super users!)",
+ "QWhp+G": "(contact your team admin to change your email)",
+ "QWtUGc": "The link to your meeting will be visible to anyone with access to the calendar event.",
+ "QWvX1/": "Error updating PIN. Please try again later.",
+ "QXPGhu": "when billed yearly",
+ "QXT2dB": "This person is approved",
+ "QY3Zfn": "Secure your vault with a PIN",
+ "QYDt5S": "Your personal Dropbox account is full",
+ "QZd7Sg": "Restore any new files removed from your Dropbox",
+ "QZz6ut": "Chat",
+ "QaHMKS": "Primary email can\u2019t be changed.",
+ "QaisyL": "Cancel your {trademark_business} subscription.",
+ "Qayhb5": "Upload files",
+ "QbLfj8": "An error occurred while removing yourself as a trusted contact. Please try again.",
+ "QbYVHA": "Use this form to report content that violates Dropbox\u2019s \nAcceptable Use Policy",
+ "QbcW7e": "Access to \u201c{folder_name}\u201d is restricted, but you can access it from the admin console.",
+ "QbgeuN": "Approved",
+ "QbnF94": "{count, plural, one {Team invitation} other {Team invitations}}",
+ "Qd1iC2": "Sharing...",
+ "QdCD99": "Didn\u2019t get the email? Check your spam folder or send it again",
+ "QdQO3I": "{trademark_business} helps your team move projects forwards",
+ "QdcEW4": "or sign in",
+ "QdqCA4": "What kind of issue is it?",
+ "QeGZf9": "Return to Dropbox",
+ "QeLVwl": "Doc activity (weekly digest)",
+ "QebzyJ": "{price} (taxes included)",
+ "QeeRqA": "Share a folder with friends or colleagues",
+ "QeqSyk": "Request files",
+ "Qf/aom": "Create tasks from any website in Chrome.",
+ "QfE1kh": "Device type",
+ "QfMy5I": "No link created yet.",
+ "QfV9Qu": "Product roadmap \u2192",
+ "Qfg7UG": "Add",
+ "QgOPIi": "See meetings that you and {target_user} are in. Connect your calendar.",
+ "QgQyq4": "Billed now: {total_price}",
+ "Qgrh1X": "How important is it for you to present work in a customised way and track engagement with it?",
+ "Qhqnwc": "Work smarter, together. Your team can get organised, work together easily and launch great ideas.",
+ "QhuFUl": "Download icon",
+ "QiUuMZ": "Include a link to a screenshot or video",
+ "QicwA5": "OK",
+ "QjM4fw": "{count, plural, one {\u201c{folder_name}\u201d has been restored, but {num} item in it was moved previously} other {\u201c{folder_name}\u201d has been restored, but {num} items in it were moved previously}}",
+ "QjVv7s": "Trusted by over 600 million users and 500,000 teams",
+ "QjjcQS": "Choose one",
+ "QkQq/G": "Don\u2019t let storage limits break your rhythm. Upgrade your Dropbox account with up to {space} of space \u2013 and keep your best work flowing.",
+ "QkckEF": "How releasing a hold works",
+ "Qkn8FU": "Alert name",
+ "QknGmV": "Cancel",
+ "Ql/5jY": "Something went wrong. Please try again in a few seconds.",
+ "QljYPN": "One year file version history for {evh_price} per {billing_period}",
+ "Qm6QbN": "Email",
+ "QmGbjb": "We accept payments with Visa, Mastercard, American Express and Discover credit cards. Contact sales if you\u2019d like to pay by bank transfer or cheque.",
+ "QmfUEx": "Please enter a value for {field}",
+ "QmiUAu": "Upload complete",
+ "QnFif0": "Town or city",
+ "QnVNDq": "This lets members share Paper docs with people who aren\u2019t in the team Dropbox account.",
+ "Qo7TLX": "The domain portion of the email address (the portion after the @: {domain}) is invalid.",
+ "QoelR9": "Your Dropbox {plus} plan was activated with a licence key. The plan will be renewed on {date}.",
+ "Qoycwr": "Anyone with the link and password can view this file",
+ "QpBLtT": "Join now",
+ "QpcX0N": "Reconnect to {service_name}",
+ "Qq0CoB": "Preparing copyright infringement form...",
+ "Qq0yqO": "Create a new shortcut",
+ "Qq4R12": "Attempted to zip too much data.",
+ "QqEjOt": "If you need to expand your crew, you can add members to or remove members from the Family plan at any time.",
+ "QqM+VH": "Some synced",
+ "QqMVX5": "[{browserName}]",
+ "QqPUpX": "Last modified",
+ "QqRUVY": "Manage what matters most",
+ "Qqj2Ud": "Success",
+ "Qqu4KQ": "API announcements",
+ "QrSEbK": "Anyone in the {trademark_business} team with this link and password can edit the file.",
+ "Qry3+4": "Unable to start your free trial",
+ "QsGUxK": "{count, plural, one {{filename} and {count} more item} other {{filename} and {count} more items}}",
+ "QsUaqW": "Permissions at upload modal",
+ "Qsf4fi": "Next: Support",
+ "Qsr6Cf": "Sharing files and folders externally",
+ "QsxVTO": "Add names or emails",
+ "Qsypjo": "Enter your phone number and a Dropbox support agent will call you in a moment.",
+ "Qt557N": "We found more members than we can display. Can\u2019t see who you\u2019re looking for? Try narrowing your search.",
+ "Qt6AC+": "User-managed groups",
+ "QtMxTg": "Currently a member",
+ "QtZepk": "You don\u2019t have permission to view those items. Please note that restoring will reinstate access according to its original members, including any members of child content. \u2018{folder_name}\u2019 will remain confidential to you, but will be accessible by other users.",
+ "Qttf1W": "Enterprise admin \u2022 {federation_name}",
+ "Qu/WwJ": "{numMembersSelected, plural, one {Moving {numMembersSelected,number} member. They\u2019ll still have access to old team content during the move.} other {Moving {numMembersSelected,number} members. They\u2019ll still have access to old team content during the move.}}",
+ "Qu8OJk": "Ask the owner to help with permanently deleting this",
+ "QuF1r9": "Reject this trusted team request?",
+ "QuQ7YS": "Tuesday",
+ "Qur/dB": "Turn off alerts for ",
+ "QvHwoh": "Confirm device management",
+ "QvtGLm": "Prevent members from linking a second account to their work computer",
+ "QwgX4d": "Enter password",
+ "Qws4v2": "Slack",
+ "Qx62nh": "You don\u2019t have access to this content. You\u2019re signed in as {user_email}.",
+ "QxhBw0": "Verify your work email address to continue",
+ "Qy2Jzq": "Add EVH",
+ "QyBXZK": "Work email",
+ "QyG9QK": "Display (and play) just about anything",
+ "Qypn9P": "Already in another team",
+ "Qyr5v5": "BETA",
+ "Qyx8hc": "Please note that changing your VAT registration number could impact your applicable tax rate.",
+ "Qz0E7O": "Can\u2019t add multiple folders with the same name",
+ "QzGAkL": "Compile from source",
+ "QzZtHq": "Protect your team\u2019s account with an additional layer of security when signing in.",
+ "QzdFgx": "Smart Sync lets you see all of your files on your desktop, even if they live in the cloud, saving you hard drive space on your device.",
+ "QzdV3+": "If you know how these files were deleted please explain how this happened.",
+ "Qze7Tm": "Size",
+ "QzlDRn": "People have asked to join your team so they can collaborate better with their colleagues.",
+ "R+2P3o": "Strict",
+ "R+6yXm": "Resolution",
+ "R+Gy+p": "Share with everyone",
+ "R+KGZD": "We\u2019ve transferred your files to the {team_name} {trademark_business} account.",
+ "R+LgCJ": "Paper is more than a doc \u2013 it\u2019s a workspace that brings creation and coordination together in one place. Write and edit, brainstorm, review designs, manage tasks or run meetings.",
+ "R+M5w+": "To choose the file or folder above, hover over it and tick the box.",
+ "R+SS5M": "Manage pending members",
+ "R+WDqi": "Number of recipients cannot be greater than {number_recipients}.",
+ "R+Xwq8": "First, confirm whether you requested account recovery from the following device.",
+ "R+dgVL": "Add pin\u2026",
+ "R+hfxt": "Set a default Canvas domain for your team.{line_break}This doesn\u2019t affect members who have already connected to Canvas.",
+ "R+pCV2": "Members can use two-step verification if they like",
+ "R+vupz": "None added",
+ "R/5cRy": "Enable or disable Paper, and set limits for how widely Paper docs can be shared",
+ "R/67N/": "Show more",
+ "R/8tw+": "Sent to {recipient_first} and {recipient_second}.",
+ "R/Hjn0": "Close",
+ "R0+QsP": "Full text search",
+ "R07Z49": "Without {dropbox_family}, you\u2019ll lose access to the following:",
+ "R09PM5": "Looks as though you don\u2019t have a personal Dropbox yet",
+ "R0XF3O": "All time",
+ "R0oZTr": "Admin console",
+ "R0w1A3": "Disconnect Google Directory?",
+ "R2FTNc": "Secure this link with a password and expiry date.",
+ "R2Qyo+": "Apple",
+ "R2grIx": "Create new auto-PDF folder",
+ "R3+d7G": "For larger teams",
+ "R34dhb": "Please cancel it and come back after your billing period ends on {interval_end} to delete your account.",
+ "R3SV35": "Modified",
+ "R42wB6": "Dropbox has sent a verification email to {email}. Check your inbox and click on the link in the email to finish updating your email. If you can't find it, check your spam folder or click the button to resend the email.",
+ "R4GEyC": "An unknown error has occurred. Please try again.",
+ "R4GZH4": "Add a message to the owner (optional)",
+ "R4Pf9k": "Your files haven\u2019t finished uploading. Leaving this page now will cancel your upload.",
+ "R4UY/G": "Brand name and logo",
+ "R4WsHg": "From {default_on_date}, your team will have access to Paper. If you\u2019d like to control access to Paper, or adjust your team\u2019s default sharing settings for Paper docs, please change your settings before this date.",
+ "R4XFxQ": "Not enough space",
+ "R4Y3Ce": "Manage sharing",
+ "R5K/kC": "Choose your plan",
+ "R5WaKU": "You\u2019ve lost access to powerful features such as the admin console, password control and Smart Sync. Add your billing info now and you can pick up right where you left off.",
+ "R6lJ2P": "Export cancelled.",
+ "R6x4nu": "Let anyone access files, even without an account",
+ "R6yEmk": "{count, plural, one {{count} invitation sent} other {{count} invitations sent}}",
+ "R7F8Tb": "in {location}",
+ "R7g2cG": "Our business needed {trademark_business} temporarily",
+ "R7ga+z": "Anyone with the link can access the Paper doc",
+ "R7o5JO": "Priority chat support",
+ "R7vhZP": "{start_date,date,::MMM d, yyyy} - {end_date,date,::MMM d, yyyy}",
+ "R80X5p": "Upload course files or assignments straight from Dropbox to Canvas.",
+ "R82HW0": "Meet deadlines and exceed expectations",
+ "R8VlRr": "View and edit your DWG files online.",
+ "R8sDaj": "Sorry, you cannot change your billing schedule at the moment.",
+ "R9pvCD": "Compose",
+ "RADzE5": "You\u2019re changing to a {trademark_business} {plan} plan. Starting from {date}, your new {schedule} total will be {recurring_total}.",
+ "RATWg4": "Comments, @mentions, to-dos",
+ "RATxW1": "{count, plural, one {{plural_prefix_text} {count} {plural_suffix_text}} other {{plural_prefix_text} {count} {plural_suffix_text}}}",
+ "RAqfLK": "Current plan",
+ "RAxZa6": "This email address is already taken. Please sign in.",
+ "RB9i4M": "Let {name} keep a copy of this shared folder",
+ "RBkBP9": "You\u2019ve successfully cancelled your trial.",
+ "RBrgq4": "Video editing",
+ "RBsGH7": "Manage plan",
+ "RBt0eG": "Having issues? Get the latest version of the Dropbox app",
+ "RBvabN": "Deleted",
+ "RC0wAo": "Or find out more about {shortBackupPlanName}",
+ "RC3LTC": "People with the link can view",
+ "RC9i/z": "Dropbox needs to verify your email address {email} to create file requests. It\u2019s as simple as clicking the link in the verification email we send you.",
+ "RCSlHE": "Help Centre.",
+ "RCT5HJ": "Version: {version}",
+ "RCcQp5": "How does sharing and collaboration work with {dropbox_business}?",
+ "RCr4JC": "Please note: changing your billing location or VAT registration number could impact your applicable tax rate.",
+ "RCz/Wx": "Your shared folders will appear here so they\u2019re easy to find.",
+ "RDgI92": "It looks as though one of your linked computers has been infected. The good news is that the files in your Dropbox account will be OK. Dropbox can recover your files to a version that existed before they were locked by malicious software on {infection_date} at {infection_time}. It\u2019s free and only takes one click.",
+ "RE8PUL": "Basic for individuals",
+ "REGNQJ": "With Dropbox Family, everyone in your household can store and share photos, videos and important files safely in one place.",
+ "REpPAG": "{role_name} admin",
+ "RF+x3N": "Please enter a valid town/city.",
+ "RF6abt": "Password changed. Now lock it securely",
+ "RFM0Ul": "Manage app settings",
+ "RFqM0k": "Make files local",
+ "RFtAL9": "We\u2019ll charge your IBAN ending in {last4}.",
+ "RGQmf+": "Disable security key?",
+ "RGrX71": "starting with at least 3 users",
+ "RGrmcJ": "Make enterprise admin",
+ "RH49yN": "Please enter a valid credit card number.",
+ "RHtmRP": "{count, plural, one {Members of the folder with this link can view. Expires in {count} day.} other {Members of the folder with this link can view. Expires in {count} days.}}",
+ "RIQ5N0": "Upload",
+ "RIYXok": "Dropbox needs to verify your email address {email} before you can create or join a team. It\u2019s as simple as clicking the link in the verification email we send you.",
+ "RIa54Y": "Create time",
+ "RIkGs9": "No manager",
+ "RIq3O6": "Set",
+ "RIsaOb": "Members",
+ "RIxWSs": "alt",
+ "RJFA/X": "Export member data",
+ "RJItHZ": "sign in",
+ "RJpwvc": "We don't keep logs when the alert is off",
+ "RJyLzm": "After disposal, it takes 30 days for data to be fully removed from the system.",
+ "RKCybX": "Paper docs become .paper files",
+ "RKNm9q": "Enable",
+ "RKQ7Il": "Export download modal",
+ "RKQq1d": "This Section 4.3 serves as notice to the Customer that Dropbox periodically receives unsuccessful attempts for unauthorised access, use, disclosure, modification or destruction of information or interference with the general operation of Dropbox\u2019s information systems and the Services. Even if the events described in the preceding sentence are defined as a Security Incident under HIPAA, Dropbox will not provide further notice regarding these unsuccessful attempts.",
+ "RLhmhA": "Get started",
+ "RLihov": "{count, plural, one {{name} restored a previous version of {count} item in {folder_path}} other {{name} restored a previous version of {count} items in {folder_path}}}",
+ "RLlVEd": "Add watermark text",
+ "RLrbhp": "Words",
+ "RLvDFV": "Look up a credit/debit card purchase",
+ "RM83kY": "Add active members",
+ "RMHJiu": "and your new yearly total is {recurring_amount_including_tax}. Watch out for an email with all of the details.",
+ "RMQzK3": "Invitations sent. Everyone who accepts can access team folders.",
+ "RMV6vY": "Reset",
+ "RMbdDw": "Accept",
+ "RMr3Rn": "Inbox",
+ "RNIIJ0": "You\u2019ve added your billing period.",
+ "RNXXOq": "Codec",
+ "RNZDjn": "We\u2019ve sent an email to",
+ "ROQR/p": "{userCount, plural, one {{userCount,number} user} other {{userCount,number} users}}",
+ "ROrHST": "Add an account photo",
+ "ROx260": "{count, plural, one {Are you sure you want to decline this user?} other {Are you sure you want to decline these {num} users?}}",
+ "RQAh9Y": "Link sent to {email}",
+ "RQGLnS": "Sharing modal",
+ "RQS9wP": "Are you sure you want to cancel?",
+ "RRDlqA": "To continue downloading:",
+ "RRq+Xt": "Resend invitation",
+ "RRsCYn": "Access granted to {requester_email}",
+ "RRzFUx": "Only 1 person",
+ "RS7Y15": "You can now access your recovered files on dropbox.com. These files are also\n ready to be synced to your previously infected computer. For your security, you\u2019ll\n need to sign in when you access Dropbox on your desktop. Once you sign in, Dropbox will\n start syncing.",
+ "RS9CyP": "Submit",
+ "RSBaM6": "This folder can only be shared as a link.",
+ "RSCt5X": "Dropbox Smart Sync is a feature that helps save space on your hard drive by removing stale files and folders and storing them in the cloud. With Smart Sync, you can see and access everything in your Dropbox account on your desktop without taking up space on your computer\u2019s hard drive.{br}{br}Computer backup applies to entire folders on your PC or Mac. When you enable computer backup, files saved in folders like Desktop, Documents and Downloads are automatically and continuously synced to your Dropbox account so you don\u2019t have to drag them manually.",
+ "RT/xET": "Make your best work even better",
+ "RTABMd": "To enable this feature, visit Connected apps to configure Zoom account settings.",
+ "RTJ45B": "{name} viewed",
+ "RTYhNQ": "Team:",
+ "RTj2SO": "PowerPoint for the web",
+ "RTw4E4": "Member exceptions",
+ "RTyAtF": "Send emails with Gmail",
+ "RUFbPq": "Preview previous file",
+ "RUfn8Z": "Close",
+ "RUgoHP": "Team invited to join your organisation",
+ "RUruMp": "You no longer have {DROPBOX_PLUS}, so we need to downgrade your vault to a folder. Your vault files will be temporarily unavailable whilst we do that.",
+ "RVB4pC": "As you use Dropbox, suggested items will automatically show up here.",
+ "RVsdJD": "Something went wrong while uploading this file.",
+ "RW3b5j": "Which files would you like to add?",
+ "RW4ijB": "Folder",
+ "RWBqrY": "Only invited users will be blocked from using Dropbox on all platforms and redirected to join your team or change their email address.",
+ "RWJNyh": "{month}/{year}",
+ "RWPiID": "{trial_duration}-day free trial",
+ "RWZvu5": "Dropbox protects your files, privacy and account with multiple layers of security.",
+ "RWgL9m": "There may be a better plan for you",
+ "RWqDb6": "Choose a language",
+ "RXXpSX": "Connect and stay in touch with shared folders and links",
+ "RXj8Bq": "Dropbox Terms",
+ "RXkdjb": "We were unable to fetch active web sessions.",
+ "RYmWhc": "Your Dropbox team requires at least a moderate-strength password.",
+ "RYs+Yi": "Cancel a Dropbox {trademark_plus} or {trademark_professional} subscription",
+ "RZHCuI": "Getting the link. Copy and share it once it\u2019s ready.",
+ "Ra6Ctb": "{count, plural, one {Remove {count,number} app?} other {Remove {count,number} apps?}}",
+ "RaCxiO": "Aspect ratio",
+ "RaRzqa": "Keep data where it belongs",
+ "RaZY+d": "Notifications menu, with new notifications",
+ "Raqf73": "Voided",
+ "RbBPNi": "Your members and groups will join the primary team, and their admin console settings will take effect, including settings such as security, sharing and billing.",
+ "RbYdAI": "Smart workspace",
+ "RbZfmq": "Priority email, live chat and phone support",
+ "Rby65Y": "File is too large to save as PDF",
+ "Rc5nlR": "Manage the visibility, access and download permissions of every file, folder and link you share.",
+ "RcIoOn": "Partial deployment",
+ "RcR701": "This is the Members page in the admin console. It\u2019s where you manage your team. You can add and remove people, grant admin permissions, search for people and more.",
+ "RcjcSl": "Unarchive version",
+ "RctVV0": "Set PIN",
+ "Rd9YHn": "Manage connected apps",
+ "RdDxZE": "Add a secondary to help{br}people share with you",
+ "Rdb7ib": "They\u2019ll no longer have access to the enterprise console. As a user management admin, they can add or remove members from their team only. They can also do some basic tasks, such as managing groups.",
+ "RdeC/o": "Medium",
+ "RdlSe7": "PayPal",
+ "Rdz77s": "{count, plural, one {You deleted {count} item in {folder_path}} other {You deleted {count} items in {folder_path}}}",
+ "Rdz8hB": "That request is invalid. Try to follow the link from your email again.",
+ "Re3hez": "Limit the amount of space each member has in their Dropbox.",
+ "Re3uD/": "{name} deleted {single_item_name} in {folder_path}",
+ "ReNt2T": "Helpful",
+ "ReONYO": "Ask to join",
+ "ReoMSn": "Closed",
+ "ReyNxC": "Can view",
+ "Rf0QDJ": "Hover over any file and select 'Share'",
+ "RfH/4s": "You\u2019ll be able to do more without switching apps.",
+ "RfauHr": "View ignored tasks",
+ "Rfyu6S": "Deleted link to \u201c{name}\u201d",
+ "RgAHdC": "To edit, ask your admin.",
+ "RgLuHS": "Continue in view-only mode",
+ "RgnO+i": "Open",
+ "RgopQo": "Install app?",
+ "RgtRv/": "Switch to {name}",
+ "Rgvubb": "No active file requests.",
+ "Rhqv2C": "Your shared files will appear here so they\u2019re easy to find.",
+ "RhsEPz": "Refunds",
+ "Ri/wwU": "Allow external sharing",
+ "Ri3zPH": "Invite more of your colleagues to help grow the team.",
+ "Ri97f5": "Smart Sync works seamlessly on Windows and Mac, even if you\u2019re not on the latest version. It\u2019s already part of your Dropbox \u2013 ready to work whenever you are.",
+ "RiAumD": "One central place for you and your family to easily share and access content in a secure folder.",
+ "RiEcIb": "deleted audio",
+ "Riu+zT": "Select previous file (hold Shift to select range)",
+ "RjCW/L": "Give access to a trusted contact",
+ "RjRbTN": "Let Paper do your busywork",
+ "RjUH4W": "Change logo",
+ "RjbzMT": "Dropbox needs to verify your email address {email} to share links. It\u2019s as simple as clicking the link in the verification email we send you.",
+ "RkgWqF": "First name cannot be longer then 100 characters.",
+ "Rki/+z": "From medical records to financial documents \u2013 secure them all in Vault.",
+ "RlIoMy": "Work on files without installing additional apps. Microsoft Office allows you to open and edit files in your web browser directly from Dropbox.",
+ "Rlky5O": "We require credit card information for the trial to prevent fraud. But, if you cancel before the trial period is over, there won\u2019t be any charges.",
+ "RltDbS": "Google Play/Apple App Store",
+ "Rm2z60": "Local: files default to living on your hard drive. Ideal if you often access files offline.",
+ "Rm9SCY": "Opacity slider",
+ "RmCmf6": "Buy now",
+ "RmO5Km": "Back",
+ "RmXnr0": "We were unable to subscribe to the file.",
+ "RmtTw7": "Sort in ascending order",
+ "RnTqG5": "You\u2019ll lose access to your Family Room folder",
+ "Rny2OZ": "{email}",
+ "RoEapW": "{deletor} deleted {ago}",
+ "Roz1Nq": "Loading members/groups",
+ "RpSxvD": "Files from {linked_folder} will be displayed in Content Builder but may not be the\n latest versions from Dropbox. You\u2019ll be able to add a different team folder.",
+ "Rpr02R": "Move members to another team",
+ "RqGmkZ": "Submitting...",
+ "RqKZIV": "Previous month",
+ "Rqcuqt": "Try adding those files again or removing them",
+ "Rr/bvY": "Two-step verification is an optional but highly recommended security feature. You can change your two-step verification settings at any time in your security settings.",
+ "RrHdWl": "Search by ID, name, owner or stormcrow",
+ "RrWeUF": "Copy link",
+ "RrXbnE": "Any policies or legal holds from the secondary team will be moved over to your data governance area.",
+ "Rsg09m": "Everyone in your team has their own member folder. Keep stuff here that you don\u2019t want to share with everyone.",
+ "RsjaeV": "Add folders",
+ "Rsr+6S": "Sorry, we couldn\u2019t find any results for {search}. Check the spelling or try using a more general term.",
+ "Rt6gCQ": "{count, plural, one {Anyone with the link and password can view this folder. Expires in {count} day.} other {Anyone with the link and password can view this folder. Expires in {count} days.}}",
+ "RtTNKt": "The {card_name} card with this file attached was moved to {list_name}",
+ "RtkW2p": "You can\u2019t edit this file at the moment",
+ "RtqVTJ": "You\u2019ve lost {space} of space and access to powerful features such as the admin console, extended version history and Smart Sync. Add your billing info now and you can pick up right where you left off",
+ "RuIGvv": "Dropbox will send any applicable Breach notifications to the Customer email address set forth above, or any other email address appropriately associated with the Customer\u2019s account with Dropbox, as updated from time to time by the Customer. The Customer, and not Dropbox, is responsible for determining whether its End Users are authorised to create, receive, maintain or transmit PHI within the Services and Dropbox is not obligated to do so.",
+ "RuKlo2": "See plan details",
+ "Ruu9sN": "You cannot change plans at the current time.",
+ "Rv3nXX": "{count, plural, one {Send invitation} other {Send invitations}}",
+ "Rvv7NR": "Dropbox Paper template",
+ "Rvwa32": "Help Centre",
+ "RwG3qN": "Copy link",
+ "RwO5iU": "Invite someone else to the team",
+ "RwPv2b": "{count, plural, one {Anyone with this link and the password can view the file. Expires in {count} day.} other {Anyone with this link and the password can view the file. Expires in {count} days.}}",
+ "RwsOX3": "Add an image or text watermark to save",
+ "RxLLwO": "This ad may appear again",
+ "RxvBVG": "PayPal",
+ "RyDLAo": "Arrow indicating where the files will be going.",
+ "Ryivld": "We were unable to restore those files.",
+ "RzIjPM": "3",
+ "RzLhyR": "Allow members to protect their files with watermarks",
+ "Rzcq8W": "and {display_name}",
+ "RzdbXv": "Sorry, something went wrong.",
+ "RzhnRl": "Extension-less",
+ "S+JnfP": "Please tick the box to continue",
+ "S+RxKh": "More about links",
+ "S+bZuY": "All unmanaged users will be blocked from using Dropbox on all platforms and redirected to join your team or change their email address.",
+ "S+fFwb": "{count, plural, one {Can\u2019t move shared folder to the {team_name} team space} other {Can\u2019t move shared folders to the {team_name} team space}}",
+ "S/5ZTL": "Sync across only 3 devices",
+ "S/79Yf": "Watermark",
+ "S/FwI+": "{count, plural, one {Are you sure you want to save {count} file to your Dropbox?} other {Are you sure you want to save {count} files to your Dropbox?}}",
+ "S/fgza": "Amount of data",
+ "S/vWTW": "Add them to exception list",
+ "S/wqoS": "Work with your content, tools and team members directly from Dropbox. That way, everything you need is in one place. And it\u2019s easy to access from any device \u2013 or location!",
+ "S10oOs": "Block by default",
+ "S1iayX": "Work offline",
+ "S2Z3jq": "Can I buy more storage space on a {trademark_family} plan?",
+ "S35+WY": "After you approve the request for {email}, we\u2019ll let them know they can finish joining your team. You can also add them to all the right groups and folders.",
+ "S3O2H+": "You've successfully upgraded to {planName}",
+ "S3TdXl": "Remote account wipe",
+ "S3llhu": "or",
+ "S3u9PE": "You have reached the limit of {max_aliases} secondary emails. To add other secondary emails, please remove at least one existing secondary email.",
+ "S4jAu3": "Make sure your work represents you well. Add your branding to the files you share, so everything feels professionally packaged and uniquely you.",
+ "S4kv4M": "Directory",
+ "S4oKeO": "Invitation sent and task assigned to {email}",
+ "S55F+L": "You\u2019ve almost finished",
+ "S5TT9D": "Clear all",
+ "S5UJEB": "Save to personal Dropbox",
+ "S5q7Tt": "You\u2019ve changed your plan.",
+ "S5xVx+": "More about creating a hold",
+ "S6RuBm": "Before you can sign in, you\u2019ll need to verify your account with Google {email}",
+ "S6U6LS": "2 TB (2,048 GB) of storage space",
+ "S6cb1J": "Do you want to archive this document?",
+ "S6stj+": "More",
+ "S7DI6M": "Some members aren\u2019t active. Remove them and try again.",
+ "S7Wy/F": "From {date}, we\u2019ll charge you {scheduled_total} per month on your PayPal account.",
+ "S7nPs7": "Team members have {emailDomain} email addresses",
+ "S8ZkUV": "Licence(s)",
+ "S993Bf": "Never miss an update",
+ "S9JHgb": "Share to Slack",
+ "S9ME5X": "Notifications",
+ "S9RuM9": "The report will be saved as a CSV in a folder called {trademark_business} reports. We\u2019ll email you when the report is ready.",
+ "S9YeQC": "your plan will be {action} to {display_name}. Your",
+ "S9e9jZ": "A user shares a pdf for an electronic signature within Dropbox",
+ "S9fk75": "Member space",
+ "SA0j0t": "Customer console onboarding image",
+ "SAJ9yo": "It looks as though you\u2019re trying to move a lot of stuff. {dropbox_plus} has a limit of {plus_space_quota}. Upgrade to {dropbox_professional} and get:",
+ "SARaai": "Keep sensitive info safe",
+ "SB4hpe": "We weren\u2019t able to load your folders",
+ "SBKVU9": "Requested to join",
+ "SBMB8D": "Get Dropbox for desktop",
+ "SBbBDV": "The CSV report lists the files with labels, the info types found and the sharing status of each file. We\u2019ll save the report in your Dropbox Business Reports folder.",
+ "SBd6K4": "Getting ready to download\u2026",
+ "SBqqR9": "/user/month",
+ "SCO1xs": "\u201cDropbox makes it easy for me to share important info with family members who live far away.\u201d",
+ "SCfqIn": "Discover",
+ "SCuIH+": ".{extension} files can\u2019t be previewed.",
+ "SDLkWB": "Contact us",
+ "SDQykS": "Team",
+ "SDefbW": "Dropbox Professional makes it easy to safeguard your IP and disaster-proof your data. You get enterprise-grade file encryption and a suite of security tools for your business.",
+ "SDnwm9": "To the Notification Email.",
+ "SEGMnR": "Team folders let everyone store and share files from one place \u2013 and access it all from their computers, phones and tablets.",
+ "SEGoS7": "Create tasks from messages in Slack.",
+ "SEmu5Q": "Unassign",
+ "SF86Bp": "Assign yourself or someone else a task for this folder",
+ "SFNqkk": "Emergency access so a trusted contact can get access to your records",
+ "SFVfx8": "Start a creative brief",
+ "SGX3zm": "You\u2019ll be charged {prorated_price} for the new plan, pro rata for the current billing period. {scheduled}",
+ "SGvdAo": "Background",
+ "SH3WXS": "upside down arrow image",
+ "SH7HST": "Show deleted files",
+ "SHDDoj": "Colour profile",
+ "SHImCI": "Preview latest saved version",
+ "SHYorf": "Upload files to the team space",
+ "SI8Kt7": "Remove {firstFilename}?",
+ "SIGEzu": "For easy access to this folder in the future, add it to your Dropbox.",
+ "SJ7MeI": "See all templates",
+ "SJT7fQ": "Added {time}",
+ "SJZJ7k": "Change team name",
+ "SJj85M": "New policy",
+ "SJkFun": "Added",
+ "SJogkc": "Close",
+ "SJxssD": "Search Dropbox",
+ "SK4S5K": "{price} per month. {tax_string}",
+ "SKdL1D": "Request sent to {team_name}.",
+ "SLI4O1": "Host and share videos to receive time-coded feedback.",
+ "SLVXB4": "Send file request",
+ "SLjbBS": "Place a hold on",
+ "SLwrSx": "{count, plural, one {Show {count} more folder} other {Show {count} more folders}}",
+ "SMByRE": "This hold is updating at the moment. You can work with it again once it has finished updating.",
+ "SMqFsd": "This file is too big to preview. {br} The maximum file size for .{extension} is {limit}",
+ "SN+mbU": "Send files of up to 100 GB with Dropbox Transfer",
+ "SN7A0T": "You\u2019ll be charged {prorated_price} {changed_items} pro rata for the current billing period. {scheduled}",
+ "SNI53v": "Cancel your {trademark_business} trial",
+ "SNLY2j": "No transactions",
+ "SNgw31": "On, did not fire",
+ "SNh3/9": "Advanced sharing and collaboration tools",
+ "SNzgsQ": "Continue",
+ "SOCI4B": "Continue with Basic",
+ "SOQEL7": "Is this regarding a cancellation request?",
+ "SOgCWH": "Disk image",
+ "SOpAJh": "Delete permanently",
+ "SQ3qcg": "Details (optional)",
+ "SQA+Mo": "Access your files everywhere with Dropbox mobile for Android, BlackBerry, iPad and iPhone.",
+ "SQcOVf": "Great! Now click the installer to finish.",
+ "SQjTuQ": "These folders will start as synced.",
+ "SQjmGk": "Create folder",
+ "SRbRT1": "How do I recover older versions of files?",
+ "SRnMNM": "
Can\u2019t preview .{extension} files. {br}Upgrade to {trademark_professional} to preview more file types.
",
+ "SS1NPa": "People can only view and download the files",
+ "SSH6sa": "Save hard drive space, work between multiple accounts and get to Dropbox files \u2013 directly from your computer.",
+ "SSL+1C": "INFO ABOUT WHERE YOU WORK",
+ "SShqdB": "If you already use Dropbox, moving to a Business account is easy! All of your content will stay the same \u2013 your files will stay where they are, and all of your settings (such as shared folder relationships and linked devices) will remain the same. For admins, all of your team members who already use Dropbox will have the same experience, and anyone without an existing Dropbox account will be prompted to sign up when you send them an invitation. For {trademark_plus} users who switch to {dropbox_business}, any remaining credits will be returned as a pro rata refund to the original payment method.",
+ "SSoF5o": "Get {pro_space_limit} of storage",
+ "SSwbgo": "Sent an email to {email}",
+ "STF3mD": "Members must sign in with SSO",
+ "STHKpw": "Add digital watermarks, passwords or expiry dates to any work you share. Undo file edits or deletions for {policyMaxDays} days. And remotely wipe your entire Dropbox account from a lost device.",
+ "STI9Ug": "Create custom watermarks",
+ "STKnSY": "{trademark_business} comes with {space} of included storage, more ways to collaborate, increased security and file recovery",
+ "STjdKQ": "\u201cPaper is great for imagining what the final article is going to look like. You can send out a list of to-dos, introduce all sorts of multimedia and leave comments for your colleagues to interact with.\u201d",
+ "SU0PaB": "Checking...",
+ "SUWtT7": "Excess devices",
+ "SUZrjY": "Default doc access",
+ "SV0nya": "Can edit",
+ "SVbyI1": "Looks good",
+ "SVdO8G": "Search for a file or folder",
+ "SVhp8o": "Learn more",
+ "SWZynj": "{browser} on {os}",
+ "SWzz6j": "or\u00a0create an account",
+ "SX0gpY": "{num_invites, plural, one {Invited {num_invites,number} person.} other {Invited {num_invites,number} people.}}",
+ "SXaFWG": "Something went wrong. Please reload the add-in.",
+ "SYbWri": "Please enter a valid phone number",
+ "SZVADm": "Anyone in your Dropbox team with the link can view this folder",
+ "SZXvtO": "View activity",
+ "SZdV1H": "Something went wrong. We can't finish the request.",
+ "Saaz+0": "To verify your identity over",
+ "SacRuI": "Note: Styling and location may vary between platforms.",
+ "Sb6jZU": "Any members who currently have too many active sessions will be signed out.",
+ "SbQVGA": "On, red-eye reduction, return detected",
+ "SbSEOF": "View, invite and remove members",
+ "SbW8wI": "Once you accept the request, your team admins can:",
+ "SbyBRb": "All cards",
+ "ScAfDE": "Download anyway",
+ "ScHZUX": "New sensitivity",
+ "ScUJYX": "Boost your productivity instantly",
+ "ScWMex": "{count, plural, one {Anyone with this link and password can view the file. Expires in {count} day.} other {Anyone with this link and password can view the file. Expires in {count} days.}}",
+ "ScaqMP": "You\u2019ll get an alert if a member tries to sign in from a high-risk country.",
+ "Sdxtk3": "I am switching to {dropbox_business}",
+ "Se5SXB": "{count, plural, one {Couldn\u2019t move {count} item to {folderName}.} other {Couldn\u2019t move {count} items to {folderName}.}}",
+ "SeZEPb": "Add key",
+ "SeuQjt": "{count, plural, one {Only you can view via the link. Expires in {count} day. Downloads disabled.} other {Only you can view via the link. Expires in {count} days. Downloads disabled.}}",
+ "SfV3t6": "One last step: download the desktop app to always have the latest version of your team\u2019s files.",
+ "SfW7kw": "Add groups",
+ "SfbIwa": "Buy licences",
+ "Sg+zDr": "Accept",
+ "Sg3xXQ": "No members found. Try different keywords.",
+ "SgCadx": "This file was added to Trello",
+ "SghIdi": "Reply",
+ "SgtygT": "Sign in with Google",
+ "Shs64t": "",
+ "SiHS/3": "No new membership requests",
+ "SixISH": "Change your name",
+ "Sizjus": "Dropbox {family}",
+ "Sj1bQZ": "Best-in-class sync technology",
+ "Sj1y5h": "Get {backupPlanName} instead and save up to 50%",
+ "Sj7Fsz": "Add a message (optional)",
+ "SjHYD2": "Mechanical/electrical/civil engineering",
+ "Sjw+xU": "Domain verification",
+ "SkBm5l": "{professional_space} of space",
+ "SkC4xu": "{num_users} members",
+ "SkEAyw": "Add to starred",
+ "SkY8H3": "{count, plural, one {Anyone in your Dropbox team with this link can view the folder. Expires in {count} day. Downloads disabled.} other {Anyone in your Dropbox team with this link can view the folder. Expires in {count} days. Downloads disabled.}}",
+ "Skb3fo": "Satisfied",
+ "Skk4UJ": "Please submit your information and a {trademark_business} representative will get in touch with you",
+ "Skyz8c": "{date} by {user_name} ({user_email})",
+ "SlJd+g": "Get {family}",
+ "Sm/x22": "Delete permanently",
+ "Sm4Xwy": "{msg_title} {msg}",
+ "Sm6zFg": "Number",
+ "SmCgDq": "{phone_number}",
+ "SmCwEC": "The Dropbox interface for adding and previewing watermarks on photos.",
+ "SmOO0P": "Limit who your members can invite to files and folders. Bear in mind that this setting doesn\u2019t affect existing access.",
+ "SmX0MS": "View in Slack",
+ "Smwtj6": "Invite and add",
+ "SnIjdP": "Only people invited",
+ "SnK+yr": "\u201cSecurity Rule\u201d",
+ "SncnVq": "{max_licenses, plural, one {Give family members access to the plan\u2019s storage space and premium features. You can invite up to {max_licenses} person aged {min_invite_age} and up.} other {Give family members access to the plan\u2019s storage space and premium features. You can invite up to {max_licenses} people aged {min_invite_age} and up.}}",
+ "SniDIk": "Switch plan",
+ "So49Gl": "Content manager",
+ "SoVWmf": "Save settings?",
+ "Soaval": "Name edit",
+ "SoqB00": "Notify users before turning on capture?",
+ "SotrIz": "Once they\u2019re a part of your team, you\u2019ll be able to manage their account and any files that they can access.",
+ "Sp0MBY": "Select files through Dropbox",
+ "SpEp+7": "Connect Dropbox to even more marketing apps",
+ "SpufE2": "Show {num} more",
+ "SqFq86": "Get your point across.",
+ "SqX3wN": "Selective Sync icon",
+ "SqtGTY": "Move folders to the shared team workspace",
+ "SqvHOe": "A space for your own stuff",
+ "Sr+rcm": "{number, plural, one {Viewed {number,number} week ago} other {Viewed {number,number} weeks ago}}",
+ "SrKRAg": "Your account",
+ "SrMyRy": "The Dropbox app",
+ "SrPda7": "Multi-spot",
+ "SrWM1R": "Everything in {standard}",
+ "SrWnn5": "View in admin console",
+ "Ss2uFe": "{standard_display_name} provides teams with {standard_plan_size} of storage, and simple sharing and collaboration tools. For teams needing more storage and security, {advanced_display_name} provides as much space as your team needs in addition to sophisticated admin, audit, integration and security features. Learn more about our plans here.",
+ "SsBV6X": "{price}/family/month (includes GST)",
+ "SshUAX": "Ticket",
+ "StOcW+": "Collapse settings",
+ "StgmB7": "Cancel",
+ "StgsuQ": "Set who can use Dropbox Rewind to recover files after something goes wrong",
+ "Su+31W": "Create custom presentations with logos and graphics",
+ "SuGuM2": "Add groups?",
+ "SuJYT4": "Do even more with the Dropbox integration on {app_name}.",
+ "Sub6Ir": "Syncing",
+ "Sv3zTo": "Google Play Store",
+ "SvDOs1": "Other inappropriate content",
+ "SvL2Xy": "You\u2019re good to go!",
+ "SvRe20": "Choose a trial plan",
+ "SvgwMG": "People we think you work with have joined these teams",
+ "SvnKud": "Choose a file",
+ "SvzB1e": "Connect apps to Dropbox",
+ "Swr7Tl": "or purchase now",
+ "Swwdqr": "All activities in {label}",
+ "Sx3SWG": "Quick access to files you\u2019ve been working on.",
+ "SxB65W": "{count, plural, one {Sending {num_members} invitation\u2026} other {Sending {num_members} invitations\u2026}}",
+ "SxckoX": "Standard trial {ios}",
+ "Sxzug0": "in {boardname} \\u2022 {listname}",
+ "SyDx/S": "Send, receive and sign",
+ "SyMkQD": "Cannot leave the team",
+ "SyQ6jw": "Personal",
+ "SzFFuz": "Designit",
+ "SzVUpr": "Add",
+ "SzftTr": "Folder hierarchy",
+ "T+8k3O": "Sorry, unable to find the parent page.",
+ "T+q7I1": "Return to Dropbox Home",
+ "T/2/qx": "Manage access",
+ "T/2pGm": "{count, plural, one {Anyone with the link and password can view this file. Expires in {count} day. Downloads disabled.} other {Anyone with the link and password can view this file. Expires in {count} days. Downloads disabled.}}",
+ "T/CxU4": "year",
+ "T/KgJj": "Version history",
+ "T/SuSS": "{author_name} added {ago}",
+ "T/eyGq": "Invitation requests from current members",
+ "T/k9wV": "As a team admin, they can manage everything for their team only, such as changing security settings and removing other admins.",
+ "T03O4f": "For more help",
+ "T0orvz": "{name} locked this file",
+ "T105WH": "{numberOfEmails, plural, one {Invited {numberOfEmails,number} person} other {Invited {numberOfEmails,number} people}}",
+ "T1IRKv": "Getting the link...",
+ "T1hxp2": "Members of the containing shared folder with the link can view this file",
+ "T1qovW": "The location you see in the email is based on the IP address. This means that the location isn\u2019t exact, and in some cases it could be pretty inaccurate. However, if the location is more than a few counties or even countries away, that\u2019s a clue that this might not have been you.",
+ "T1sfFi": "or ",
+ "T2OHow": "Stuff you add here is automatically shared with your team. You can adjust permissions for each folder to control who sees what.",
+ "T2REvL": "Helpful tools",
+ "T2Uxhd": "Already invited by another team",
+ "T2wYhx": "{teamAdminCount, plural, one {Team admin: {adminList}} other {Team admins: {adminList}}}",
+ "T32Wc8": "This may take a while",
+ "T3GDqs": "Saving to Dropbox",
+ "T3YUYa": "Cannot upload folders in this browser",
+ "T3s8+k": "Managers",
+ "T4/637": "Other",
+ "T45O2I": "Save",
+ "T49I/A": "{count, plural, one {{name} rolled back {count} item} other {{name} rolled back {count} items}}",
+ "T5+cEx": "Set your password",
+ "T58u0R": "Check out our support page for more info.",
+ "T59HGQ": "Verify your primary email first",
+ "T59NfR": "Remote device wipe",
+ "T5X/jN": "Let people see who viewed their files, and track traffic and insights too",
+ "T5XQyu": "More about tickets",
+ "T5g6Zg": "Wiki",
+ "T5oHt8": "Members are allowed by default to link personal and work Dropbox accounts and use both on the same computer. If you turn this setting off, members can still link their accounts but can only use one account on their computer.",
+ "T5vgV/": "Content",
+ "T6igfz": "Verify {domain}",
+ "T6lrWZ": "Manage your team\u2019s activity, control who can access and share team files, and quickly restore deleted or past versions.",
+ "T75j+Z": "Company size",
+ "T7C/l9": "This raises the chance of a leak of sensitive personal data.",
+ "T7G1s5": "Show plans",
+ "T7RNQf": "Integrated cloud content",
+ "T7fm6v": "Update",
+ "T7tcC/": "Exit search",
+ "T82eqZ": "Go back",
+ "T84o0D": "Attach files and compose emails with Outlook",
+ "T8BfJ2": "Zoom in",
+ "T8hlRT": "You\u2019re with a group of 3 people or more. You want to work smarter, get organised and launch great ideas together.",
+ "T8q3ix": "Connect with Zoom",
+ "T91B2R": "Copy link",
+ "T9LYYC": "Do any of these help with syncing?",
+ "TAFOT4": "People at {team_name} can view until {date}",
+ "TAK0SD": "{numYears, plural, one {Get {discount,number,::percent .##} off {numYears,number} year of {dropbox_plan}*. This offer expires on {expiration_date}.} other {Get {discount,number,::percent .##} off {numYears,number} years of {dropbox_plan}*. This offer expires on {expiration_date}.}}",
+ "TAukDw": "Restored {filename}.",
+ "TBIxin": "Chat with support",
+ "TBdFWm": "The migration could not be cancelled. Please try again later.",
+ "TBruvE": "Due date",
+ "TC/bJ5": "Your Canvas is linked to another domain.",
+ "TCJe4K": "You\u2019re a member of this team folder",
+ "TCTlqi": "Copy to\u2026",
+ "TCn38D": "Forgotten password?",
+ "TCtfV0": "7 minutes",
+ "TD+XWC": "Sign in to a different account",
+ "TD/6ba": "Show off all your great work",
+ "TD8wZv": "Sync affected computer",
+ "TDBkMJ": "Top photo and video articles",
+ "TDhZyM": "Your subscription from Apple is no longer active.",
+ "TDjJYR": "HR template",
+ "TE3/Vi": "Deleted member folder",
+ "TE5+kn": "Change my email address",
+ "TE5rLR": "Email:",
+ "TEavO5": "See features",
+ "TEdz5F": "Sign up for a new account",
+ "TEfNGd": "Preview a shared folder",
+ "TF7OpG": "See other plans",
+ "TFC4CE": "N/A",
+ "TFE1fe": "Team files",
+ "TFeNOo": "Share",
+ "TFhSer": "Failed to open {app_name}",
+ "TFnOYM": "Change PayPal account",
+ "TG+M8C": "Learn more",
+ "TG07o6": "This doesn\u2019t set a default file browser for your team. Members can set this individually.",
+ "TGEyA+": "To add this folder, you\u2019ll need more space in your Dropbox.",
+ "TGhLSw": "{email} (pending)",
+ "TGiMOD": "Will you need more than 2 GB of space?",
+ "THAbub": "{count, plural, one {Deleted {count} item.} other {Deleted {count} items.}}",
+ "THdx1D": "{count, plural, one {Anyone with the link can view this folder. Expires in {count} day.} other {Anyone with the link can view this folder. Expires in {count} days.}}",
+ "THqYB0": "To share this file with others, copy and paste this link:",
+ "TI+0AZ": "This lets members share with people who aren\u2019t in the team Dropbox account.",
+ "TIFdVv": "{username} locked editing for this file. You can still view the file and keep up to date on changes here.",
+ "TIUrJt": "Show less",
+ "TIW3Pz": "Change to auto-PDF folder",
+ "TIt80k": "You haven\u2019t linked any devices to your work Dropbox account. Install Dropbox to sync your devices.",
+ "TJ1wmh": "Safely store select docs, photos and videos",
+ "TJIDl1": "Member already invited",
+ "TJfgIg": "Watermarking",
+ "TJrsig": "{familiar_name}, you have an exclusive offer.",
+ "TK2QnS": "We'll recommend the best plans based on your choices",
+ "TKRX3z": "{count, plural, one {{name} moved {count} item into {dst_folder}} other {{name} moved {count} items into {dst_folder}}}",
+ "TKjS0r": "Policy deleted.",
+ "TL22S6": "Join",
+ "TMe0HK": "Add a name",
+ "TNAqZX": "Can edit",
+ "TNjy/M": "Identity provider sign-in URL",
+ "TNlF9o": "Missing files article",
+ "TO0BYf": "Select an account",
+ "TOHYFj": "Original date",
+ "TOuFP4": "Go to Activity log",
+ "TPGiG9": "Save hard drive space automatically",
+ "TPm6sk": "Successfully verified {subdomain_name} since you\u2019ve already verified {primary_domain_name}",
+ "TQEQ2l": "See who\u2019s viewed or edited a file, and who it\u2019s been shared with on Slack.",
+ "TQFLz/": "Active",
+ "TQZHJp": "Advanced",
+ "TQh9Oq": "{count, plural, one {{count} month} other {{count} months}}",
+ "TQmLgY": "Anyone in your {trademark_business} team with this link and password can edit the file. Downloads disabled.",
+ "TRKomw": "@mention someone",
+ "TSbTsY": "{value} degrees",
+ "TShGoq": "Transfer up to {premium_send_size_limit}",
+ "TSuGNL": "You\u2019re about to cancel {trademark_business} and disband the {team_name} Dropbox team",
+ "TTRG/c": "{price} (includes GST)",
+ "TTs4GC": "What is file recovery?",
+ "TU1rgQ": "Anyone with the link and password can view this file. Downloads disabled.",
+ "TURZT1": "{count, plural, one {{name} moved {count} item from {src_folder} to {dst_folder}} other {{name} moved {count} items from {src_folder} to {dst_folder}}}",
+ "TUs4hQ": "Restored files",
+ "TV7RnI": "To open this file, you need to verify your email.",
+ "TV9R9r": "Request declined",
+ "TVFEI9": "{filename} can\u2019t be opened.",
+ "TVO3K4": "Warning icon",
+ "TWEi2h": "Merge secondary team into yours?",
+ "TWZWgd": "View members",
+ "TWpgyj": "{count, plural, one {Successfully restored {count} item.} other {Successfully restored {count} items.}}",
+ "TX2HFO": "Send files without using Dropbox storage space",
+ "TXA8UM": "Only members with a link can access the Paper doc. External sharing is disabled.",
+ "TXLkCC": "Meeting notes",
+ "TXNmX4": "You recently reset your Dropbox password or email address. Please wait 24 hours and try again.",
+ "TXi4wU": "Hold activated. We\u2019ll start collecting files straight away.",
+ "TYVys/": "{name} shared {item_name}",
+ "TYc4E/": "Choose which admin roles can access the Content page to manage your team\u2019s content. More about admin roles",
+ "TYsEYZ": "Include an image on the splash screen that is shown when your team shares files or folders.",
+ "TZ3tZj": "Get Dropbox for personal use",
+ "TZ9C0Q": "Tasks marked as complete here will have their status changed to 'Done' in Jira automatically.",
+ "TZD+x6": "Upgrade to add folder",
+ "TZEb0Z": "Yes. Moving to a Business account is easy! All of your content will stay the same \u2013 your files will stay where they are and all of your settings (such as shared folder relationships and linked devices) will remain the same. For admins, all of your team members who already use Dropbox will have the same experience, and anyone without an existing Dropbox account will be prompted to sign up when you send them an invitation. ",
+ "TZJDRY": "Send with link",
+ "TZiR1V": "Renewal date",
+ "TZiYnT": "From {date}, we\u2019ll charge you {scheduled_total} per year on your iDEAL account.",
+ "Ta7Twa": "Below are some articles with information on common account downgrade and deletion questions. Please see if one of these articles addresses your question.",
+ "TaHGEK": "Bring the conversation to your work",
+ "TaMI0k": "Sign in as user",
+ "TbG2Sk": "Close sidebar",
+ "TcIDqw": "You\u2019re an admin of the {team_name} Dropbox account.",
+ "Tcc3Qb": "your",
+ "TcqXAF": "Info types",
+ "Td4ijt": "Shared at {file_request_name}",
+ "Td8CMX": "View more billing history",
+ "TdEKZP": "Small business",
+ "TdUEYh": "\u201cOur team is constantly working across different countries, time zones and offices. A lot of solutions can accommodate that now, but none make it as seamless as Dropbox and Dropbox Paper.\u201d",
+ "TdjsBN": "Zoom settings",
+ "Te1t0b": "Allow access to your admin console",
+ "Te60No": "Cannot archive an active campaign",
+ "TeH7ne": "Ctrl + x",
+ "TeXmqh": "Adding logo...",
+ "TeZMo7": "Contact Dropbox support",
+ "TejRDA": "Are you sure you want to cancel {dropbox_family}?",
+ "TfIR2l": "Overdue \u2022 Open until today at {time}",
+ "TfIt0w": "Paper template",
+ "TfYT+f": "Upgrade to {trademark_business} to enable all link settings.",
+ "TfcBKS": "This lets members add folders created by people outside the Dropbox team. This setting doesn\u2019t affect folders that members are invited to view.",
+ "TfeWUu": "Green",
+ "Tgwos1": "Calendar and Contacts",
+ "ThlKSJ": "We'll let {email} know that they can finish joining your team.",
+ "Thllsi": "{count, plural, one {{name} shared {count} item} other {{name} shared {count} items}}",
+ "TiGLzM": "After following the instructions to enable third-party cookies for your browser, select 'Continue to editor' to reload.",
+ "Tin/Ku": "Add a reply",
+ "TioE81": "{member_name} and new members of the {parent_folder} folder won\u2019t be able to see future changes to this shared folder.{br}To add more people to this folder in the future, you\u2019ll need to invite them directly.",
+ "TivL0w": "Connect another {service_name} account",
+ "Tj12s5": "Invite-only",
+ "TjBl9f": "IP address:",
+ "Tjck7C": "Paper doc",
+ "Tk3ctx": "Registration number: 00018",
+ "Tl7D2u": "Priority email support",
+ "TlB3sY": "You rewound this folder to {rollback_date}",
+ "TlHewx": "Let members add another email address to receive shared content. Even when this setting is off, admins can manage secondary emails via the Dropbox API.",
+ "TlRCFw": "* You can only use the offer if you received it from Dropbox. Dropbox reserves the right to cancel, suspend and/or modify the offer for any reason, including for fraud, technical limitations and failures, or causes that impact the integrity of the offer.",
+ "TlSbVJ": "Having trouble with the domain?",
+ "TmBa2T": "Your account will be merged into the {team_name} Dropbox account, where you\u2019ll have\na private area for your stuff. {team_name} admins will be able to manage your files and Paper docs.",
+ "TmlIOu": "Dropbox for iPad",
+ "Tn9b99": "You\u2019ve cancelled your change.",
+ "TnNWv2": "Download HTML file",
+ "TnYT4C": "Close",
+ "Tnfuoj": "Already invited",
+ "Tnr+vP": "Admin",
+ "ToHyF6": "Items you added to a shared folder",
+ "Tojmyg": "Removing {name} will cause them to lose access to folders that have been shared with the group.It might take a little while to remove members from all of this group\u2019s shared folders.Are you sure you want to do this?",
+ "TosYU9": "Preparing too many downloads at once. After some finish, you can start more..",
+ "Tp6uid": "Top-level editing",
+ "Tp96Me": "Present",
+ "TpJn8o": "Owner",
+ "TpZ1Vz": "Place fields to specify the sections that needs to be signed, dated and more.",
+ "TpeyP2": "Minimum 5 characters",
+ "Tq1+vX": "{value, plural, one {{value,number} hour ago} other {{value,number} hours ago}}",
+ "TqF6bR": "mins",
+ "TqRKfd": "Capture inspiration on your phone or tablet",
+ "TqSnEH": "Only people who can edit these items can restore them.",
+ "Tr8ggC": "Your credit card wasn\u2019t charged.",
+ "TrJz4r": "Your account will be merged into the {team_name} Dropbox account, where you\u2019ll have\na private area for your stuff. {team_name} admins can manage your files and Paper docs if they\nupgrade the account to {trademark_business}. {team_name} has disabled Smart Sync,\nso you\u2019ll be signed out of Dropbox and online-only files will be downloaded to your hard drive\nnext time you sign in. You\u2019ll sign in with {work_email}.",
+ "TrKcya": "A problem while using App Centre",
+ "TrMn7R": "On older version ({timestamp})",
+ "TrPWiw": "or upgrade now",
+ "Trkqle": "{price}/person/month",
+ "TsSIGV": "Locked by you",
+ "TsUm5r": "We'll let {approvedUserEmail} know that they can finish joining your team. You can add them to groups and folders straight away.",
+ "TsV/DS": "{count, plural, one {You unshared {count} item in {folder_path}} other {You unshared {count} items in {folder_path}}}",
+ "TtPMcl": "Bit rate",
+ "TtbUbu": "Contact support",
+ "Tu/L/W": "Enable or disable commenting on company files",
+ "TuBzCl": "Invitation request by {suggestingUserName}",
+ "TuH4om": "{file_name} saved as a PDF",
+ "TuJPPJ": "Cannot use Transfer",
+ "TuViF7": "Invite members",
+ "TulkA6": "You can search your organisation\u2019s Google Directory when inviting new people to the team. That way you don\u2019t have to type in their emails by hand.",
+ "TvR0pd": "Play video",
+ "Tvtst8": "Family",
+ "TwBGP4": "The {team_name} shared workspace is full",
+ "TwKMzV": "{value, plural, one {1 file shared with your team} other {{value} files shared with your team}}",
+ "TwTyjH": "{count, plural, one {{count} open ticket} other {{count} open tickets}}",
+ "Twn9lv": "Loading search\u2026",
+ "TxJKkI": "Not a valid email address",
+ "TxpyMM": "View in Slack",
+ "TyLekI": "{service_name} settings",
+ "TyOwF/": "Can\u2019t switch billing period",
+ "TybZfs": "Members of this folder with this link can view this folder. Downloads disabled.",
+ "Tyi6tl": "Your personal Dropbox was successfully installed. Now you can add your {secondary_label} Dropbox.",
+ "Tyl6TD": "Remove",
+ "TyzOKV": "Upload more files",
+ "Tz6J7O": "Save changes",
+ "Tzf3Z4": "Front of the personal folder.",
+ "Tzjy8m": "Dropbox can contact me about my feedback",
+ "TzlAQL": "Give multi-team admin access",
+ "U+/i5L": "View file",
+ "U+lU7/": "You\u2019re cancelling your scheduled billing change. Your Dropbox {plan} plan will be renewed on {date} and you will be billed yearly.",
+ "U/bb2x": "You unshared {item_name}",
+ "U/fUL+": "Check your device for a notification",
+ "U/g9Tk": "Enjoy peace of mind and access your stuff anywhere.",
+ "U03r11": "Add a backup phone number",
+ "U0MFwx": "{index}. Tell us about yourself",
+ "U0ad8c": "Invited",
+ "U0zU8J": "Executive/business management",
+ "U1/uFy": "Edge",
+ "U106/E": "multiple apps",
+ "U1DxZY": "Detected on",
+ "U1USYy": "The policy covers everything, including current and future files and subfolders.",
+ "U1VmHo": "Persistent ID + email assertion",
+ "U1k/VD": "Password-protected. Couldn't save as PDF",
+ "U1rFdc": "Allow people with an {listOfDomains} email address to ask to join your team and to see some basic team info, such as profile photos, names and email addresses.",
+ "U2+MNo": "The report will show all files labelled before yesterday at {hour}",
+ "U22Fpo": "Member shared malware",
+ "U2JE9M": "Verifying",
+ "U2T2Tq": "This album is empty",
+ "U2Tu4K": "Choose how new files are downloaded to your team\u2019s computers:",
+ "U2o955": "Get organised. Get working. Get Dropbox.",
+ "U2rhFx": "Anything that was no longer available before this date won\u2019t be held",
+ "U3+nRx": "Create a report of all member and sharing activity for {display_name}. We\u2019ll email you at {email} when it\u2019s ready to view in your Dropbox.",
+ "U34Aor": "{count, plural, one {{count,number} other} other {{count,number} others}}",
+ "U3P4b4": "Why can\u2019t I see the Dropbox sync icons on my files or folders?",
+ "U3XC4Z": "All members will need to reset their passwords before they can sign in. We\u2019ll send an email to each member with password reset instructions.",
+ "U3lqGP": "You turned off viewer info",
+ "U3vijj": "",
+ "U3y3i9": "Creating folder...",
+ "U43Usz": "
",
+ "U4nM4V": "Click 'Open with' and select Adobe Sign to open PDFs or Word documents.",
+ "U4sggG": "
How to cancel your Dropbox subscription
Cancel a free Dropbox trial
How to delete a Dropbox account
Find a billing receipt or invoice
Change your billing information
How to edit information on a Dropbox invoice
Look up a credit card transaction
Find out more about refunds
",
+ "U5GcqR": "{value, plural, one {for {value,number} day} other {for {value,number} days}}",
+ "U5LJUL": "Twitter",
+ "U5Og04": "Phone input",
+ "U5fgWD": "Yes",
+ "U5kP2t": "Business team icon",
+ "U5lkG8": "You\u2019ll get a file that lists all items covered by this policy, including each item\u2019s status.",
+ "U6Nhxt": "If you can\u2019t find an app you\u2019ve connected previously, check Connected Apps.",
+ "U6Z+qK": "Toggle the switch at the top of the panel.",
+ "U6dkSI": "View all invoices",
+ "U6qGE8": "Folders",
+ "U75RtN": "Hide resolved comments",
+ "U7AlUZ": "Phone",
+ "U7Cyr3": "Mobile sharing links",
+ "U7dFRR": "Three months ago",
+ "U7yWcO": "Membership",
+ "U8/o8J": "Members with edit access can add people.",
+ "U8EXsA": "During this time, members only shared with people in the team",
+ "U8gAk6": "Password-protected and expiring links",
+ "U918Pr": "{trademark_family}",
+ "U9SY4w": "We can only fit {num} characters (a couple of paragraphs or so)",
+ "U9rIPB": "Create one by clicking 'New card' above.",
+ "UA1n47": "{message}\u00a0How to set shared link permissions",
+ "UA6rtX": "We sent an email to {email}.{br}You must click \u2019Confirm\u2019 in that email to finish setup.",
+ "UA9nt1": "I\u2019d like to create and share a new folder",
+ "UAsFSG": "Plans & upgrade",
+ "UAt5LI": "{reason} See our Help Centre for more information about password expiry and securing your account.",
+ "UBV5SW": "Select Accept under First-party cookies and Third-party cookies",
+ "UC14WV": "{trademark_business} admin",
+ "UC1mA0": "Limit raised to {team_limit} teams",
+ "UC3lLM": "Sophisticated admin features and as much space as you need.",
+ "UCIin6": "Your team will no longer be able to make files online only with Smart Sync.",
+ "UCUmtB": "We were unable to fetch linked devices.",
+ "UCs5A/": "Compress, edit or sign PDFs",
+ "UCxdu3": "Failed to copy team ID to clipboard",
+ "UD5U3y": "Other types",
+ "UD6TiK": "Your Dropbox account is full. To continue, remove some files or ask your admin for\n more space.",
+ "UDck+c": "Call us to speak to a Dropbox Support agent.",
+ "UDiJ1x": "Submit",
+ "UDmLV7": "{count, plural, one {{count} additional licence} other {{count} additional licences}}",
+ "UDv7Az": "{first_name}, join this Dropbox account and work better together.",
+ "UE9BBM": "Sell your creations simply and easily.",
+ "UECkC8": "Successfully disabled security key.",
+ "UEVTtp": "A billing failure occurred for this invoice on {date}.",
+ "UFB0OU": "Lets them view, comment and edit.",
+ "UFHFaL": "Requesting\u2026",
+ "UFXxci": "Save more attachments",
+ "UFpE+s": "GB",
+ "UG/sAv": "See members",
+ "UGz3hA": "
Cancelling your {currentPlanName} plan? Automatically back up one computer \u2013 regardless of size \u2013 for half the price of Plus.
{backupPlanName} is {monthlyPrice}/mo and lets you easily recover your files if things go wrong.
",
+ "UIRKh5": "Note: People will still see your primary email across Dropbox. How secondary emails work",
+ "UIVSGI": "Your licences have been added.",
+ "UIrJdN": "Manage licences",
+ "UIud2H": "Link temporarily disabled",
+ "UJk/J1": "Sign up with Google",
+ "UJsFur": "We couldn\u2019t find that app",
+ "UK/T1m": "Please verify your Dropbox email address, then try again.",
+ "UKFJ6m": "Cancel",
+ "UKdoiD": "From",
+ "UKvMk2": "Align with your team. Gather updates on decisions, progress, risks or personal highlights in a single place.",
+ "UL+C3d": "{numYears, plural, one {{name}, get {discount,number,::percent .##} off {numYears,number} year of {dropbox_plan}*} other {{name}, get {discount,number,::percent .##} off {numYears,number} years of {dropbox_plan}*}}",
+ "ULJM1Y": "Increase visibility and access",
+ "ULSEEh": "{price} per month. Save {savings}",
+ "UNRD4e": "Having trouble scanning the image?{br}Click here to download Dropbox manually",
+ "UNS+kN": "Pick a date",
+ "UNi0qU": "unknown",
+ "UOGf2g": "Image",
+ "UOL9zS": "Email addresses",
+ "UOQ2vp": "Sign in",
+ "UOYvGh": "Dropbox gives you secure access to all of your files. Collaborate with friends, family and colleagues from any device.",
+ "UOdM/M": "Create all member data",
+ "UOhn41": "Folders from computer",
+ "UPLqLx": "Enterprise Mobility Management (EMM)",
+ "UPO/6i": "Comments are disabled on this file",
+ "UPlChr": "Previous",
+ "UPrzRq": "Unpin",
+ "UQBCLJ": "Enterprise",
+ "UQBfa8": "Open",
+ "UQW1q/": "
Sign in to dropbox.com.
Click your avatar (profile picture or face icon) in the top right-hand corner.
Click Settings.
Click the Plan tab.
Click Cancel plan at the bottom of the page.
If you can\u2019t see Cancel plan, you may have signed up for Dropbox on your mobile device. If you did, downgrade your plan with iTunes or Google Play.
Note: Cancelling your plan doesn\u2019t delete your Dropbox account
Scroll down and click I still want to downgrade.
Select the reason why you want to cancel.
Click Continue.
Scroll down and click I still want to downgrade.
You\u2019ll receive an email confirmation. The sender will be no-reply@dropbox.com and the subject line of the email will be Dropbox Plan will not be renewed.
To confirm your downgrade on dropbox.com, go to the Billing tab in your account settings and click Change next to Billing period. You should see a notification titled Plan downgrade scheduled.
",
+ "URERP3": "Dropbox is stuck syncing, won\u2019t open or displays an error",
+ "URqjZh": "How files are used",
+ "US5wke": "Shared with",
+ "USBRIw": "Primary email can\u2019t be deleted.",
+ "USKkbD": "White balance",
+ "USM+is": "{name} unshared {item_name}",
+ "USX7uV": "Connect",
+ "USf88J": "Continue using {trademark_business}?",
+ "UTHoed": "The owner hasn\u2019t granted you access",
+ "UU1q+t": "Internal link",
+ "UUa/f+": "Something went wrong at our end. Please try again later.",
+ "UUtsO2": "Support admin",
+ "UV7R1l": "Allow your team to enable computer backups?",
+ "UVpEHw": "Limit who sees what and keep sensitive data protected",
+ "UVyMNH": "+ {free_months} months free with your first year",
+ "UXQMFI": "How disappointed would you be if you could no longer use Vault?",
+ "UXRilG": "Collections",
+ "UXue2m": "Print invoice",
+ "UY5L9t": "Collaborate in real time",
+ "UY88fh": "View later dates",
+ "UYGf3m": "Can\u2019t invite some of these emails",
+ "UYP3l9": "The files will stay up to date, but anything bigger than 3 MB won\u2019t be available.",
+ "UYiZrN": "When you preview a file in Dropbox, you can watermark it with your logos or text.",
+ "UYrSZ0": "Active",
+ "UYx/2r": "Audio",
+ "UZ+XVI": "{count, plural, one {Copied {count} item to {dest}.} other {Copied {count} items to {dest}.}}",
+ "UZ/fSg": "From our Help Centre:",
+ "UZJVrh": "Organisation",
+ "UaFj4A": "Audit downloads, shared folder usage and other actions",
+ "UaiFvq": "Viewed {timeAgo} on desktop",
+ "UakIAw": "Customer support will send the team member an email with instructions on how to gain access to the account.",
+ "UbKsgI": "With {plan_space} of space and powerful sharing features, {dropbox_plan} keeps your stuff accessible and safe wherever you are. For a limited time, get {discount,number,::percent .##} off with your first year of {dropbox_plan} when billed yearly!*",
+ "Ubk+Of": "Do your best work from wherever you need to be.",
+ "Ubo/+W": "Removed members ({num})",
+ "UbqDsE": "Choose a default for files added on dropbox.com. Online only saves space for teams with\n large files. Local keeps files available offline. Members can change this setting.",
+ "UcT0sN": "You and all admins in your team will lose admin privileges",
+ "UcTa6V": "Note: When using the audio CAPTCHA, please use the Download button instead of the Play button.",
+ "UcYcHG": "File locking",
+ "UcbZSY": "{trademark_plus} for individuals",
+ "Ucjzq4": "Since you\u2019re the only admin of {team_name}, you need to give someone else on your team admin permissions before you leave the team. You can do this by clicking the gear icon to the right of a team member\u2019s name and selecting \u201cGive admin permissions\u201d.",
+ "Ud2R3J": "Start again",
+ "UdCRcC": "Business",
+ "UdFJxn": "{value, plural, one {1 member works with them} other {{value} members work with them}}",
+ "UdPKgS": "Lead: @angela",
+ "UdUQvg": "Plans & pricing",
+ "UdXW3l": "Store all of your work with space to spare",
+ "UdcbDk": "Classification",
+ "Udcmao": "Choose the Dropbox files you want to attach",
+ "Udug8i": "How we use your response",
+ "UeLSlX": "Active",
+ "UeLcea": "Sign-in help",
+ "UeUj1o": "{federation_name} organisation admins",
+ "UfFyft": "Company name updated.",
+ "UfHHBh": "Members of \u201c{folder_name}\u201d folder",
+ "Ufb68N": "Send with",
+ "UfuZTt": "Open in",
+ "Ufvtdi": "Your trial ends on {date}. If you don\u2019t cancel your free trial by that date, we\u2019ll charge you {scheduled_total} per {schedule} (including applicable taxes) until you cancel your plan. If you have any charges after your trial, they won\u2019t be refunded when you cancel, unless it\u2019s legally required. All amounts shown are in {currency}.",
+ "Ug1XLX": "New value",
+ "UgH/WV": "Strikethrough",
+ "UgIE6p": "If all agents are busy, you can send an email to Dropbox Support directly from the chat box.",
+ "Ugdb/e": "Ask to join",
+ "UhEDyY": "Sell something amazing",
+ "UhMk+M": "Uploading {filename}",
+ "Ui1I/f": "You\u2019ve already cancelled your trial.",
+ "UicSWC": "Experiences",
+ "Uj/CzJ": "New shared folder modal",
+ "UjNP9a": "Rewind to a previous time",
+ "UjVaKF": "Error creating report.",
+ "UjZewP": "Open, share and collaborate on your content with these apps you can launch while using Dropbox.",
+ "UjnZMy": "Click here to describe this folder.",
+ "UjpizQ": "Invite colleagues to join your work Dropbox here.",
+ "Uk7/ur": "It looks as though someone removed you from this file",
+ "Uk8v6w": "Only an admin can permanently delete",
+ "UkLHE0": "Meal plan",
+ "UkMX17": "Give and get feedback",
+ "UkQZnd": "Trusted devices will never ask you for a security code again. You should only trust this device if you trust everyone who uses it.",
+ "Ukz1C1": "Cookies",
+ "Ul0kIv": "Your {plan} will be downgraded to Dropbox Basic on {date}. {billing_summary}",
+ "UlLDLI": "Branded sharing",
+ "UmC3zH": "Links with no expiry date",
+ "UnFd0B": "Are you sure you want to disconnect {service_name}? You\u2019ll need to reconnect to continue using {service_name} integrations on Dropbox.",
+ "Uo2bi4": "Help with billing and payments",
+ "Up1LaJ": "Trello",
+ "UpDkTB": "Create file in...",
+ "UpN7ap": "Find out more about team merges",
+ "UpPnqL": "{owner} shared this with you.",
+ "UpWoGT": "Activity: last week",
+ "Uq7qHV": "You\u2019ve got the basics down \u2013 now you\u2019re ready to go.",
+ "UqoZNX": "{name} rewound {item_name}",
+ "UraGyT": "Trusted computers will never ask you for a security code again. You should only trust this computer if you trust everyone who uses it.",
+ "Us//SY": "Manage options",
+ "Us2jrN": "Powerful sharing, collaboration tools and {plan_space} of space.",
+ "Us3rQZ": "To",
+ "Us4cL6": "Dropbox doesn\u2019t currently offer HIPAA support for Paper.",
+ "Us8RQ2": "Continue",
+ "UsxvcU": "Try adjusting filters.",
+ "UtDXzH": "Remove your access to this folder?",
+ "UtzS9V": "Add members from any team you manage",
+ "Uu2ETy": "That comment has been resolved.",
+ "Uu4dKU": "If you or a member of your plan are using more than {free_quota} of storage, you\u2019ll be over quota. That means your files will stop syncing, you won\u2019t be able to upload any new files or folders, and you won\u2019t be able to restore earlier versions of your files.",
+ "UuNNEL": "Can\u2019t find the verification email?",
+ "UvWmPe": "Dropbox {trademarkPlus}",
+ "Uw3Mp/": "Starts with {standard_plan_size}",
+ "UwFkjc": "Edit",
+ "UwJTAY": "Morten Thomsen, Global IT Lead",
+ "Uwr6W8": "Loading...",
+ "UwsrpY": "Product",
+ "Uwu+xo": "Business and teams",
+ "UwyAjF": "Error sending invitation.",
+ "UwzCW9": "Backups",
+ "Uy22M1": "Mobile",
+ "UyNJZ6": "Nothing, they won\u2019t be deleted forever or hidden. Only an admin can delete these items permanently.",
+ "Uyxn/h": "Desktop",
+ "UzKKzX": "To upload a file from Dropbox:",
+ "V+OMEd": "Everyone in your team",
+ "V+vqyG": "Connect Zoom",
+ "V/EGBQ": "Share your brand \u2013 add your custom branding to stuff you share",
+ "V/X177": "Menu",
+ "V/s9ms": "Dropbox Paper is more than a doc, it\u2019s a workspace that brings creation and coordination together in one place.",
+ "V09hHN": "Are you sure you want to disconnect {name}? This app will no\n longer have permission to access your Dropbox.",
+ "V0Dir9": "Access your files and folders from anywhere",
+ "V0REWL": "Purge confirmation",
+ "V0x5kM": "As a support admin, they can handle some basic tasks for a single team, such as resetting passwords and contacting support.",
+ "V0xNhF": "Continue in this browser",
+ "V1H0x+": "{count, plural, one {{count,number} minute} other {{count,number} minutes}}",
+ "V1HktT": "Your scheduled changes have been cancelled.",
+ "V1RmAH": "See my account details",
+ "V1eUAq": "Can I purchase a gift now but send it later?",
+ "V1gDEG": "from {owner} ({team})",
+ "V1uLI/": "Cancel your {trademark_business} trial.",
+ "V2lejD": "Something went wrong. Please reload the page.",
+ "V2uoqS": "Enables HIPAA compliance",
+ "V2wwgQ": "Something went wrong. Please try again.",
+ "V3Sp4n": "{numMonths, plural, one {Get {discount,number,::percent .##} off {numMonths,number} month of {dropbox_plan}*. This offer expires on {expiration_date}.} other {Get {discount,number,::percent .##} off {numMonths,number} months of {dropbox_plan}*. This offer expires on {expiration_date}.}}",
+ "V3rkGP": "Questions? Check out the Family plan overview.",
+ "V4x10U": "Add to Paper doc",
+ "V59AFj": "Update access to this folder?",
+ "V5Cskr": "Info types",
+ "V5EJmv": "Delete account photo",
+ "V5KZzi": "Delete files?",
+ "V5VsmR": "Start in Dropbox",
+ "V5WMXh": "Share",
+ "V5WlNn": "Whose content",
+ "V5oSno": "Show actions",
+ "V6/bVk": "Those files already exist in that folder.",
+ "V6/f3E": "You can invite up to 5 other members aged 13 and up.",
+ "V61cBn": "Team folders",
+ "V6J1qX": "Will you need advanced admin features such as device approvals, tiered admin\nroles or phone support?",
+ "V6wEfP": "(save {discount,number,::percent})",
+ "V7BfLN": "Name",
+ "V7cE99": "Off (team only)",
+ "V7lg8n": "Thank you for your feedback.",
+ "V7zqnY": "Get security codes to use when you can\u2019t access your phone.",
+ "V81LjE": "This must be a whole number",
+ "V8LEQk": "They'll be able to do things like access, manage or delete any team folders.",
+ "V8NY3Q": "Your file request was sent. We\u2019ll send you an email when someone uploads a file.",
+ "V8ZjR5": "Get started with Paper",
+ "V9NIqc": "There has been an error connecting to {referral_type}",
+ "V9uCyQ": "Other",
+ "V9xVMI": "The folder \u2018{old_name}\u2019 has been renamed to \u2018{new_name}\u2019",
+ "VA5gUe": "This lets members save files to Dropbox directly from Microsoft Word, Excel and PowerPoint.",
+ "VAK/xg": "\u201cOur design process begins with our customers. They constantly give us great ideas on fit, style, colours and materials. And we do that all in Paper.\u201d",
+ "VAWgqj": "
For limited functionality, try
Dropbox on mobile web",
+ "VBZAUX": "Dropbox needs to verify your email address {email} to add members to your team. It\u2019s as simple as clicking the link in the verification email we send you.",
+ "VC0THb": "Your {trademark_business} team has been downgraded",
+ "VCIDGl": "IT",
+ "VDSuu6": "{app_name} needs access to this file",
+ "VDhZk7": "I want to look up information relating to:",
+ "VDjS9+": "Create folder",
+ "VEAPwH": "Please give us feedback on your Family Room",
+ "VEBMFf": "Add a file",
+ "VEFEJI": "Every three years",
+ "VEb96o": "See available plans",
+ "VEq+Pm": "No",
+ "VF6r2c": "From",
+ "VF7AsU": "Apps managed for your team",
+ "VFuENR": "Couldn\u2019t open this file. Please try again later.",
+ "VFvg1T": "Joining the team",
+ "VG54To": "means Dropbox Business, Dropbox Enterprise and Dropbox Education, but does not include Beta Services or Excluded Features.",
+ "VGAghr": "Get {discount_percentage,number,::percent .##} off your annual {trademark_business} subscription!",
+ "VGD5gM": "You and your family members will be downgraded to {dropbox_basic} and you\u2019ll lose access to the plan\u2019s features.",
+ "VGO9WL": "{count, plural, one {Anyone with this link can view the file. Expires in {count} day.} other {Anyone with this link can view the file. Expires in {count} days.}}",
+ "VGjlS3": "You have reached the maximum number of outgoing requests",
+ "VHDgwR": "Work with your favourite tools",
+ "VHcDOU": "Create new",
+ "VI/pz9": "Cancelling {trademark_business} \u2013 refunds and other info",
+ "VI0AtB": "What's the difference between {trademark_business} {standard_plan_name} and {trademark_business} {advanced_plan_name}?",
+ "VIDWC/": "Save to {cdm_tmf_name} folder",
+ "VIwHaT": "Updating...",
+ "VJBWIU": "What next?",
+ "VJMWwF": "Business logo",
+ "VJVYfQ": "Desktop",
+ "VJewNj": "Set notification options",
+ "VJrUt1": "Once they accept, they\u2019ll be added to your organisation",
+ "VK+2VG": "Free one-year file version history",
+ "VK0jfH": "Dismiss",
+ "VK8T8E": "School project plan",
+ "VKA3hu": "While members can\u2019t lock editing in the future, editing might still be locked for some files. To unlock those files, go to Content.",
+ "VKLPXm": "Browser",
+ "VKi3Pj": "Now you can send files to Slack or present in Zoom without leaving Dropbox.",
+ "VKtrco": "See who\u2019s viewed your files and when",
+ "VLOw+F": "I wasn\u2019t able to connect\u2026",
+ "VLPo6o": "Add invoice details",
+ "VLT6/6": "{trademark_hs_dbx_pro_bundle}",
+ "VLVJyp": "We can\u2019t find the meta tag",
+ "VM/Im4": "Premium productivity package",
+ "VMGE6I": "Group names",
+ "VMVrbc": "Are you sure you want to change permissions for {name} from {old_role} to {new_role}?",
+ "VMaRsa": "terms for beta services",
+ "VN3FDd": "Note that only active team admins will receive notifications",
+ "VN5PJ9": "Continue to set up payment",
+ "VNMIXK": "Only approved campaigns can be activated",
+ "VNgZtl": "If you appear in the content or need more help, please\nprovide your email address and we will get in touch if necessary.",
+ "VNpXkC": "Upload",
+ "VOB6rZ": "Invalid",
+ "VOTWDQ": "Issue date",
+ "VOUQh/": "Be productive",
+ "VOh/Vl": "
{name},
Would you like to connect the computer {device_name} to your Dropbox account ({email})? If you didn\u2019t request this, please click 'Cancel'.
",
+ "VOwTOw": "Invalid two-factor code",
+ "VPeXVB": "Can\u2019t show content because it has been taken down.",
+ "VQ7cBR": "Click \u201cYes\u201d if you no longer have access to your {email} email. We might be able to recover your account and change your Dropbox email address.",
+ "VQBu6a": "Large restorations may take a few hours to complete. Please check back later.",
+ "VQPsrL": "The secondary team\u2019s content, including sharing permissions, will be moved into your team\u2019s account.",
+ "VQpCZZ": "Create new group",
+ "VRIKXC": "Only you can add members to this group",
+ "VRlO+B": "Please enter the security code",
+ "VRnHfF": "Exclude activities in file operations",
+ "VRob09": "Content \u2013 Dropbox",
+ "VS2L6u": "New to Slack? Get started",
+ "VSSd4j": "Images",
+ "VSiE+b": "Create account",
+ "VSilQP": "Is renewed on {date}",
+ "VSzTxy": "Account created.",
+ "VT66qw": "SymLink files cannot be previewed.",
+ "VTOQTA": "Please check your Internet connection and refresh the page in a bit.",
+ "VTX0Qd": "This can take a while. We\u2019ll email you when the policy has been updated.",
+ "VTYsO8": "Invite members to your team",
+ "VTcp/5": "Partner portal",
+ "VTmRD4": "and your new monthly total is {recurring_amount_including_tax}. Watch out for an email with all of the details.",
+ "VTt2H7": "eSign",
+ "VUIAfM": "{value, plural, one {{value,number} day} other {{value,number} days}}",
+ "VUQimt": "You\u2019ve already scheduled a change to your billing schedule. If you want to choose a different billing schedule, first cancel your scheduled change.",
+ "VUbhV1": "{count, plural, one {{name} shared this file with {entity} and {count} other} other {{name} shared this file with {entity} and {count} others}}",
+ "VV/eYK": "You restored {single_item_name}",
+ "VVndBB": "view only",
+ "VW8Ib2": "Select labels to sync",
+ "VWJfAa": "For immediate help with signing in, visit our Help Centre for useful articles about account access, or visit the community to explore the help forums.",
+ "VWbMnR": "Add details such as the requesting lawyer and the reason for this hold",
+ "VWd41r": "Disconnect",
+ "VX2MOj": "Join the waiting list",
+ "VX4Xrf": "Get Dropbox for Android",
+ "VXEuAU": "Signed-in devices ({num})",
+ "VXH1tW": "Unmanaged users who changed their email and are no longer in your domain.",
+ "VXM7Tc": "Project Space",
+ "VXfkhw": "Showcase",
+ "VXsPAn": "Attach a Dropbox link and they\u2019ll always have the latest version.",
+ "VXuzqP": "The domain portion of the email address is invalid (the portion after the @: {domain})",
+ "VYO2JK": "End date (UTC):",
+ "VYQtwl": "Sign in",
+ "VYh0UK": "I agree to the HelloSign Terms and Privacy Policy.",
+ "VYifwL": "Background",
+ "VYioi5": "{count, plural, one {and {count} more} other {and {count} more}}",
+ "VZ71VE": "PayPal",
+ "VZE6IM": "The folder \u2018{path}\u2019 doesn\u2019t exist.",
+ "VZa0Ni": "Dropbox system extension",
+ "VZa8uZ": "Member space limit",
+ "VZewu0": "More about data governance",
+ "VZo77c": "And make clients happy too",
+ "VZq05E": "{count, plural, one {Once} other {{count} times}}",
+ "VZsav0": "You did it!",
+ "VZtrMS": "See what\u2019s inside with file previews",
+ "VacdFW": "{actor_name} shared this file in Slack",
+ "Vat0lJ": "Please accept Google\u2019s request in order to sign in.",
+ "VbRtEL": "Preview",
+ "Vc3rbO": "Your {standard} plan gives you {quota} of storage, simple sharing and collaboration tools. For more space and other features, you can upgrade to Advanced.",
+ "VcTut+": "{count, plural, one {As a member of the parent folder listed below, {member_name} can still edit \u201c{content_name}\u201d.} other {As a member of the parent folders listed below, {member_name} can still edit \u201c{content_name}\u201d.}}",
+ "VciIXA": "Now",
+ "VcpecB": "/month",
+ "VcxmM3": "{initiator_name} has initiated file recovery. This could take up to a few\n hours if there are a lot of files in {initiator_name}\u2019s Dropbox\n account. You can go ahead and close this screen. Rest assured, recovery will\n continue at our end. In the meantime, you can start working with\n {initiator_name} to remove the ransomware from the infected computer.\n We\u2019ll email you when their files are ready to use again.",
+ "VdDI7M": "Upload\u2026",
+ "Vdi01+": "Auto, fired, red-eye reduction, return not detected",
+ "VdufK7": "Send files to Slack from Dropbox",
+ "VeAz6Q": "Delete '{'group_name'}'",
+ "VeFhFg": "Are you sure you want to cancel?",
+ "VeKS9s": "Billed yearly",
+ "VeKs4S": "Off, did not fire",
+ "VeQVlR": "Back",
+ "Vep7Pr": "Resend email",
+ "Vf5SED": "Warning: To avoid potential sync issues, name should not contain \" * '<' '>' ? |",
+ "VfBTyj": "Your Internet connection isn\u2019t fast enough to download multiple files at the same time. Try downloading each file individually, or move to a location with better signal.",
+ "VfjryA": "Description",
+ "VftUGN": "Get your time back",
+ "Vg1D7j": "In order to perform this action, Dropbox needs to verify your email address to share links.",
+ "Vg93YJ": "{count, plural, one {/user/month, starting with {count} user} other {/user/month, starting with {count} users}}",
+ "VgH9Ou": "Deleted member folder",
+ "Vgd16U": "We were unable to mark the thread as read.",
+ "VgwMdM": "Name set",
+ "VhDnE6": "Remove me from this file?",
+ "Vhiogk": "Add to list",
+ "Vhipzc": "{remainingLicenses, plural, one {{remainingLicenses,number} licence available} other {{remainingLicenses,number} licences available}}",
+ "VihvjZ": "Read the case study",
+ "Vj13+e": "Send up to {upload_size} of files in each transfer",
+ "Vj2I5i": "New licence total:",
+ "VjY2Wx": "{target_user} is not a member of your Slack workspace",
+ "VjdrXm": "Leaving this page will cancel your uploads.",
+ "Vktr+0": "{name} edited just now",
+ "VkzHp1": "Apps you connect will show up here. Get started in App Centre.",
+ "VlArQA": "More about sharing",
+ "VlErup": "Upgrade to Professional to get watermarking",
+ "VlUxAL": "Reset filters",
+ "VlZABW": "Publish",
+ "Vla5t5": "Wednesday",
+ "VloA8O": "Show who\u2019s viewing this file to people who can edit.",
+ "VmFIqC": "Optional",
+ "VmspO5": "Assigned by you to other users",
+ "VnOv6W": "15-day trial",
+ "Vo1r9t": "This group was created automatically and includes invited members. To change who\u2019s in the group, admins can add or remove members of {team_name}",
+ "VoFStx": "I still want to downgrade",
+ "VoOTRI": "{count, plural, one {Remind your {team_name} admin to purchase {trademark_business}} other {Remind your {team_name} admins to purchase {trademark_business}}}",
+ "VogVc2": "Step 2 of 2",
+ "VomL62": "I don\u2019t understand how to use the features on this plan",
+ "VoogPu": "You won\u2019t be signed out, but you will be prompted to reset your password.",
+ "VopzGG": "Do more with your files",
+ "VpeS7h": "Restore content",
+ "Vq9cpR": "Manage",
+ "VqJgyP": "Force invited users with a Dropbox account in your domain to join the team account.",
+ "Vqx50y": "To reply and view more detail, open this file.",
+ "Vqyg65": "Show this ad on",
+ "Vr+yFX": "Easy-to-use sharing and collaboration tools",
+ "VrAscR": "Sign in to view",
+ "VrDLj+": "{count, plural, one {Change how this folder is synced to new members\u2019 computers. The change doesn\u2019t affect current members.} other {Change how these folders are synced to new members\u2019 computers. The change doesn\u2019t affect current computers.}}",
+ "VrehFA": "Coming soon! ",
+ "VrzLlO": "Before you continue with your {trademark_business} trial, please note that you have a Dropbox {trademark_plus} subscription managed through the {billing_store}. You must cancel it to avoid paying for two subscriptions.",
+ "Vs6oAH": "Dropbox is set up and ready to use.",
+ "VsOpFf": "deleted document",
+ "VsWgR6": "The Cadastro Nacional da Pessoa Jur\u00eddica, most commonly known as a CNPJ, is a number that identifies legal entities and other legal arrangements with the Federal Revenue Service of Brazil. It has similar functions to those of the CPF, the only difference being that it is unique to the use of legal entities. It is a 14-digit number with a specific format, like the following example: 00.000.000/0001-00",
+ "VsYlV4": "Try refreshing the page.",
+ "VtCAjE": "No credit card needed",
+ "VtNcy7": "{count, plural, one {{count} folder} other {{count} folders}}",
+ "VtuOEk": "Tidy up by month",
+ "Vu1ffz": "See plan details",
+ "VuKyiI": "Include all subdomains",
+ "VuL102": "Later",
+ "VuO63E": "Refresh",
+ "Vv9iwA": "Create",
+ "VvCRPI": "It won\u2019t interrupt your free trial period, and you\u2019ll transition seamlessly at the end of the {trial_days} days.",
+ "VvOgoh": "Upgrade to Dropbox {trademark_professional} to enable all link settings.",
+ "VvZ36k": "Confirm email",
+ "VwWRwG": "Enter password",
+ "VwpdMs": "Upgrade your{br}Transfer experience",
+ "Vwyfvj": "Member name or email address",
+ "Vx8YCV": "Great! It\u2019s all just a click away.",
+ "VxPVhW": "Secure from everyone else",
+ "VxV63U": "Only applies to your configured corporate network. This prevents people who are not in your team from sending and receiving Dropbox traffic.",
+ "VxmCCz": "No match found",
+ "Vy0v7n": "To open this file, make sure you\u2019re signed in to Google and Dropbox with the same email address.",
+ "VyFFNm": "Add admin",
+ "VyW7ZK": "
Below are some articles with information on common account downgrade and deletion questions. Please see if one of these articles addresses your question.
How to cancel your Dropbox subscription
Cancel a free Dropbox trial
How to delete a Dropbox account
Find a billing receipt or invoice
Change your billing information
How to edit information on a Dropbox invoice
Look up a credit card transaction
Find out more about refunds
",
+ "VyiLYJ": "{years, plural, one {Retention: {years} year since last activity} other {Retention: {years} years since last activity}}",
+ "Vz0Lur": "Give and get better feedback",
+ "VzD9xP": "Your plan after {trial_end_date}",
+ "Vzgmep": "You must select at least one folder",
+ "VzxkTo": "Get maximum security for your valuable files.",
+ "VzyR9o": "{count, plural, one {{count} folder} other {{count} folders}}",
+ "W+O/kh": "Your files will be uploaded securely to {name}'s Dropbox account. ",
+ "W+VWV3": "Loading...",
+ "W+aYVh": "Reset filters",
+ "W/23CF": "Loading...",
+ "W/B6jo": "Team folder renamed.",
+ "W/DI0T": "Unable to share the file",
+ "W/Ycc7": "Dropbox can help you remember to come back and add files \u2013 we\u2019ll send a reminder email in 1 week.",
+ "W/iS2m": "Dropbox will send an email to {email} with further instructions.\n You may need to check your spam folder or unblock no-reply@dropbox.com.",
+ "W/zj2A": "Send email notifications",
+ "W0TT1w": "Paper embeds any type of content beautifully and automatically, from code and design mocks to videos and sound. So, whether your team is making mood boards in Pinterest or choosing video clips from YouTube, everything related to their project is in one central place. And, because Paper is from Dropbox, the files you embed from your account are updated automatically whenever the file changes.",
+ "W1fhQk": "Select anything you think your team could use. Everything else will live safely in your personal folder.",
+ "W24U0i": "File or folder",
+ "W26068": "Set PIN",
+ "W2Lck+": "{count, plural, one {Moved {count} item to {dest}.} other {Moved {count} items to {dest}.}}",
+ "W2a+Sl": "Open Microsoft files with Google, and save back to the original file and format. Set your editor of choice as the default.",
+ "W2wrK9": "deleted shared folder",
+ "W3Vpv5": "When a lot goes wrong, Dropbox Rewind can help you undo it all. That way you can get back to the way things were.",
+ "W3tNbf": "Add email addresses",
+ "W42X9i": "Filter by",
+ "W4An+g": "Got it",
+ "W4EY4T": "Templates for HR teams",
+ "W4MpUS": "Please auth at least one user or team with the OAuth flow",
+ "W4Oj39": "
{name},
Which account would you like to connect to this computer? If you didn\u2019t request this, please close this browser tab.
",
+ "W4cJvK": "At-a-glance stats",
+ "W4vRXF": "Manage licences",
+ "W594l5": "{actor_name} shared this file in {meeting_name}",
+ "W5B/Ny": "Bringing stories to life",
+ "W5GSX/": "Try free for {trial_duration}",
+ "W5GXue": "Created {date,date,::MMM d, yyyy} at {timestamp} by {creator}",
+ "W5IO5F": "Results less than 24 hours old may still be being populated.",
+ "W5doya": "Removed from {sharedFolderName}",
+ "W5pK97": "You started a Dropbox {dropbox_plan} trial via the iOS app.",
+ "W5raf5": "Sales call notes",
+ "W5uw4O": "{count, plural, one {You restored a previous version of {count} item} other {You restored a previous version of {count} items}}",
+ "W6GbgF": "To set up a BAA, you\u2019ll need to turn off Paper and turn off Showcase for your team. Learn about HIPAA",
+ "W6uFFY": "Don\u2019t allow",
+ "W7CDSj": "Your billing location requires additional taxes. Your selected plan\n is {monthly_per_user}/user/month ({monthly_price} charged monthly).\n You\u2019ll only be charged if you don\u2019t cancel your trial before it\n ends on {trial_end_date}.",
+ "W7X9jY": "Extended version history",
+ "W7c2ld": "Failed to create invitation link.",
+ "W7oflT": "Calculate size",
+ "W853K9": "Text of watermark",
+ "W8LAoH": "Unable to hide section.",
+ "W8MK9H": "{count, plural, one {Can\u2019t add more than {count} member} other {Can\u2019t add more than {count} members}}",
+ "W8NaLw": "Connect {app_name}",
+ "W8PtDB": "As an enterprise admin, they can manage your entire organisation in the enterprise console, and sign in to the admin console of any team. They\u2019ll also become a team admin in their current team.",
+ "W8VyE0": "Unable to release the selected legal hold \u2013 please try again later",
+ "W99tYl": "Check your email to get started",
+ "W99vjf": "Not included in the report: files and folders that are only shared because they\u2019re in a shared folder. Find out more about sharing methods",
+ "W9eSr2": "I agree to the {trademark_business} Agreement and Terms.",
+ "W9zTwN": "Support",
+ "WACJND": "Members managed by",
+ "WAEQqE": "Project plan",
+ "WAMYrD": "Neutral",
+ "WANpxH": "Send for signature",
+ "WAQpuN": "Close",
+ "WAXhkk": "Extremely satisfied",
+ "WAYapU": "Alpha",
+ "WAod+y": "Connecting Dropbox",
+ "WBpV97": "Track views and downloads",
+ "WBqCIm": "This folder is shared",
+ "WC+jtc": "Edit",
+ "WC+meb": "Couldn\u2019t start signature request",
+ "WC105I": "Email my team to let them know about the move. View a preview",
+ "WCc1iu": "(current plan)",
+ "WDBNKp": "Client type",
+ "WDKLwG": "There was an error changing the plan.",
+ "WDoD3H": "Please sign in to the account that owns this file request.",
+ "WElJu0": "Search",
+ "WFVf8/": "Works with all types of content",
+ "WFtsee": "Priority support",
+ "WGQelc": "New state",
+ "WGjJzr": "How much space does my team get?",
+ "WGoyWQ": "Estimated time:",
+ "WH73xS": "Single sign-on enabled",
+ "WHRTbc": "Couldn\u2019t load settings. Please try again later.",
+ "WIBZO6": "Flash",
+ "WIDX5l": "Auto, fired, red-eye reduction, return detected",
+ "WIZvt9": "Approve campaign",
+ "WIcUMB": "Replace original",
+ "WJD8Gt": "Get powerful features and {space} of space with Dropbox {trademark_plus}. That\u2019s enough to store a lifetime of photos or a filing cabinet\u2019s worth of documents. Upgrade now",
+ "WJEoV5": "Please update your filter and try again",
+ "WJh9RW": "Message sent to {user_name} successfully.",
+ "WKcSo6": "Change settings...",
+ "WL0qyn": "This member has been suspended",
+ "WLCuyG": "Customisation",
+ "WLFHmg": "I\u2019ve set a password",
+ "WLyYYS": "Sign out of Dropbox",
+ "WM/qoc": "Choose the right Dropbox for you",
+ "WMBBSJ": "If you change from Dropbox {currentPlanName} to {backupPlanName}, your new plan will take effect during the next billing cycle. From {chargeDate}, your card ending in {lastFourCreditCard} will be charged {monthlyPrice} plus any applicable tax per month. Charges will continue until you cancel, and previous charges are not refundable unless legally required. Update your billing information here.",
+ "WMGEFi": "Create link",
+ "WMJEtg": "The file you selected is larger than what is supported. Please try again with a smaller file.",
+ "WMVhP0": "Deleted files",
+ "WN86F9": "How many phones and tablets can each member connect to Dropbox via Dropbox mobile apps?",
+ "WNFBjZ": "Paper removes a lot of the unnecessary work around projects so your team can focus on creating great work. Within one shared doc, your team can take meeting notes, brainstorm ideas, track projects and share feedback on work in progress.",
+ "WNQ2NC": "You\u2019ll be charged {prorated_price} for the new billing schedule, pro rata for the current billing period. {scheduled}",
+ "WNWE8B": "Close",
+ "WO+7U9": "Permission to view link not available",
+ "WOBbRk": "Included functionality.",
+ "WONnN7": "Downloads",
+ "WOwRDU": "f/{aperture}",
+ "WPbdqU": "{count, plural, one {{count} {plural_text}} other {{count} {plural_text}}}",
+ "WPpsFp": "Edit",
+ "WQDOGQ": "This file is not supported by Dropbox and cannot be uploaded.",
+ "WQpgoO": "You have subscribed to the file.",
+ "WQpwQ8": "Learn more about the support options and expected response times.",
+ "WR19Bf": "Password reset",
+ "WR5EDI": "Show deleted files",
+ "WRAFV/": "Licences remaining",
+ "WRCs8D": "Choose files",
+ "WRNz4t": "Protect your valuable data by storing usernames and passwords in Dropbox Passwords \u2013 secured with full encryption.",
+ "WRV83p": "Users per account",
+ "WRnWCY": "Whoa there, don't take advice from a webcomic too literally ;)",
+ "WRzvI1": "Company",
+ "WSKInX": "Locked successfully",
+ "WSNPap": "You can\u2019t reset passwords while modifying password strength. To reset passwords,{br}first discard your changes, then choose Reset passwords.",
+ "WSerAB": "Add a message (optional)",
+ "WSrUNs": "RefundLink",
+ "WSu3k3": "Already have a Dropbox account?",
+ "WTyK3N": "Trusted team activity",
+ "WU6xk6": "You\u2019ll also see the device (Mac, Android, iPhone) and maybe the browser (Chrome, Internet Explorer, Safari). If this device or browser isn\u2019t one that you usually use, that\u2019s another sign this might not have been you.",
+ "WUAMl2": "Open DWG files",
+ "WUSz8c": "You already have a hold with that name. Please try another one.",
+ "WUxb3N": "End date",
+ "WV5Q3y": "Just now",
+ "WVqK1l": "Logo",
+ "WVyMlf": "Suggested searches",
+ "WWCt7I": "Something went wrong. Please try again.",
+ "WWEpkK": "I understand this can\u2019t be undone and {team_name} will be transferred to my team\u2019s account",
+ "WWYO//": "Cancel {business} and disband my team",
+ "WX3rjN": "Get graphs and stats showing who's looking at this file. Upgrade to Dropbox Professional to start tracking.",
+ "WXEWl0": "Collaborate on files with teammates, contractors and clients \u2013 in the office or on the road.",
+ "WXFbJn": "{count, plural, one {{name} restored {count} item} other {{name} restored {count} items}}",
+ "WXJfQ5": "{name} can edit",
+ "WXQmpV": "That\u2019s as far back as it goes",
+ "WXivHK": "Get started for free",
+ "WYQtmB": "More info",
+ "WYezR2": "Your existing files moved here.",
+ "WYkgG7": "Keep an overview of all content. Streamline your content strategy by building a calendar, drafting upcoming posts and tracking progress in Paper.",
+ "WZHfy+": "Who should be notified when you sign in to this member\u2019s account? They will receive an email stating that you signed in as {display_name}.",
+ "WZI4HR": "New PIN",
+ "WZNhfY": "Agents and Subcontractors.",
+ "WZe1es": "For individuals",
+ "WZs0R0": "You\u2019ll create a new, personal Dropbox account for your existing files and Paper docs.\nThis will give you two accounts \u2013 your {work_email} account for {team_name} work and a new\npersonal account for your existing files.",
+ "WaPg2c": "You might be able to find it in your deleted files. If it's not there, try asking the person who shared it with you.",
+ "WaXaGh": "{plusSpaceShortFormTB} of space",
+ "WaiYkf": "Slack icon",
+ "Wb0KP/": "Info",
+ "Wb0pm2": "Couldn\u2019t find that hold. Refresh the page, then try again.",
+ "Wb25AZ": "Send email to '{'user_name'}'",
+ "Wb3p1L": "Invitation sent",
+ "WbA1Nn": "Design",
+ "WbVH1z": "Metering",
+ "Wc4dM+": "You are editing details for the {date} invoice.",
+ "Wc8zCA": "72 hours",
+ "WcJbLV": "Everyone",
+ "WcLdk3": "Add to Trello from Dropbox",
+ "WdxNG3": "Unknown",
+ "WeDjiD": "People can no longer download this transfer",
+ "WeEZAr": "Safari",
+ "WeJGtg": "Previous sensitivity",
+ "WebGPE": "Markup",
+ "Wf4OR8": "{number, plural, one {{number,number} page} other {{number,number} pages}}",
+ "WfVgEs": "{member_name} can't access.",
+ "WglrWR": "Create",
+ "WgscFw": "Create group",
+ "WhCRuT": "Report problem",
+ "WhDe/z": "Do less switching between tools",
+ "WhTMQI": "Priority email and live chat support",
+ "Wi4w+P": "Share",
+ "WiO4Bm": "The Dropbox mobile app is available for iOS, Android and Windows devices.",
+ "WiO7Ve": "How do you cancel a Dropbox subscription?",
+ "Wj0KDA": "Auto-PDF folder",
+ "Wj8EFS": "Coordinate a project from start to finish with to-do lists and timelines that live alongside your work. Run brainstorms, hold meetings, assign and track tasks, and review work too \u2013 teammates can leave comments inside your actual docs.",
+ "WjJYkf": "Previous expiry date",
+ "WjN2tU": "{licenseOverage, plural, one {You\u2019ll be charged for {licenseOverage,number} more person, and your new monthly total is {recurringCostIncludingTaxText}. Watch out for an email with all the details.} other {You\u2019ll be charged for {licenseOverage,number} more people, and your new monthly total is {recurringCostIncludingTaxText}. Watch out for an email with all the details.}}",
+ "WjXFCI": "Got it",
+ "Wk19D8": "{sender_name} wants to share the folder {content_name} with you.",
+ "Wk1UkT": "Duration",
+ "Wkcpyr": "Let\u2019s double-check that everything looks OK",
+ "Wkf4xC": "There was a problem starring {item_name}",
+ "Wko3oQ": "From {date}, we\u2019ll bill you once a {schedule_noun} for your Dropbox {plan_name} plan and your new {schedule} total will be {scheduled_total}.",
+ "Wl8Ylh": "This member\u2019s limit will return to the default space limit.",
+ "Wm5PXm": "Simplify electronic signatures",
+ "Wm6cD6": "With {plan}, get {plus_space_long_form_rounded} for all of your photos, videos, docs and other files. Keep everything stored safely and at your fingertips.",
+ "WmHmNO": "Plan",
+ "WmoQCS": "Unable to sign in with Google.",
+ "WmvY3S": "User root folder cannot be chosen.",
+ "WnTqOA": "save attachments",
+ "WnWL5z": "Enable watermarking",
+ "Wng32y": "
Open the Google Play Store on your Android phone or tablet.
Tap the three horizontal lines (Menu) in the top left-hand corner.
Make sure you\u2019re signed in to the Google account you used to purchase the subscription.
Tap Subscriptions.
Tap Dropbox.
Tap Cancel subscription.
Select a reason why you\u2019re cancelling and tap Continue.
Tap Cancel subscription or Cancel trial.
You\u2019ll receive an email to your Google account to confirm your cancellation, and your account will be downgraded to Dropbox Basic (free) at the end of your billing cycle.
You can find more information here about requesting a refund from Google.
",
+ "WoKbfQ": "You must provide an X.509 certificate to enable single sign-on.",
+ "Wod2T4": "Create link",
+ "Wosw1V": "{name} sent you this request",
+ "WplXdS": "Priority email and chat support",
+ "WqYWha": "Allow cookies",
+ "Wqlbx3": "Number is invalid",
+ "Wr2MZ4": "Showcase",
+ "Wr8iTc": "empty team folder",
+ "WrNH0Y": "Lonely Planet",
+ "WrPpf6": "Select a payment method",
+ "WrRpjL": "Jul",
+ "WrjTjR": "Email me the link",
+ "WsG80O": "You can add your business address to your account.",
+ "WsbIo+": "Members of the file with this link and password can edit.",
+ "WsvIqV": "Convert to individual Dropbox Basic account instead",
+ "WtHEfL": "Something went wrong and we couldn't create the policy.",
+ "WtNVJv": "Powered using HelloSign by Dropbox",
+ "WtTd1Y": "Don\u2019t mix up your personal files with your work files. Set up your separate personal Dropbox, which comes with 2 GB for the stuff that\u2019s just for you.",
+ "WtcKj/": "Add other Dropbox teams you trust",
+ "WtvdB+": "Most popular",
+ "WuUusl": "This will automatically remove and disconnect these members\u2019 devices.",
+ "WukOiD": "If you think you\u2019re getting too many alerts, try lowering the sensitivity.",
+ "WuvFN5": "Unsyncable",
+ "Wv1IVj": "Let team members copy Zoom cloud recordings to Dropbox automatically",
+ "Wv3x3g": "There was an error uploading your photo.",
+ "Ww0HWC": "Change PIN",
+ "WwB3rT": "Fullscreen",
+ "WwQaUv": "Anything in your Dropbox will stay up to date across all of your computers and mobile devices. Your information is always where you need it.",
+ "WwXu7L": "Draw",
+ "Wwfok2": "Set password requirements or reset passwords for your team",
+ "Wwl/lW": "Done",
+ "Wx1tuk": "As a Dropbox account holder, there are certain support options available to you listed below.",
+ "WxV0Sy": "Dismiss",
+ "WxkNeG": "{whitelist_subject} will still have access to anything that\u2019s already shared.",
+ "WxlKj9": "Try it",
+ "WxnuE0": "You are now logged in to {email}.",
+ "Wy/CKN": "Selective sync",
+ "Wy6QpH": "Upload to Dropbox",
+ "WyGq0q": "Link not found",
+ "WyIenC": "Print",
+ "WyW2Um": "Sharing...",
+ "Wya2OR": "Install Dropbox to get \u201c{folder_name}\u201d on your computer",
+ "WyhmLg": "There was a problem completing this request",
+ "WzCl9b": "Manage team members",
+ "WzQjtR": "Usually this happens when the link wasn't copied correctly.",
+ "Wzk4tW": "Only members of the shared folder \u201c{shared_folder_name}\u201d can view this link.",
+ "Wzr+Eu": "Unfollow",
+ "X+4Q+L": "Off",
+ "X+BzF3": "Add admin permissions for {display_name}",
+ "X+IYXP": "This link type isn\u2019t supported.",
+ "X+Llr7": "You won\u2019t get an alert if a member makes too many unsuccessful sign-in attempts.",
+ "X+i036": "You\u2019ll need the latest version of Dropbox for desktop.",
+ "X+mLhb": "Expires in 1 minute",
+ "X/07sw": "Delete secondary email?",
+ "X/E7P2": "Please enter a valid name or email address",
+ "X/GYfj": "Are you sure you want to add admin permissions for {display_name}?",
+ "X/OVmI": "{price}/{duration}{line_break}({tax_string})",
+ "X/rSyR": "To link your computer, you need to enter a security code. We sent a code to your email address, {email}.",
+ "X/uvE2": "Changes saved.",
+ "X00Q2k": "A folder with that name already exists.",
+ "X0i16w": "Starred",
+ "X0uDO4": "Not satisfied with the product",
+ "X0wsLF": "You\u2019re a member of the {team_name} Dropbox account.",
+ "X0xlzt": "Confirm change",
+ "X1+HWP": "failed",
+ "X1BqiH": "{name} moved {single_item_name} from {src_folder} to this folder",
+ "X1C5SI": "Send for signature",
+ "X1Olog": "Select from your Gmail contacts",
+ "X2HMIy": "Search for your tickets",
+ "X2uBND": "The Dropbox installer window should open shortly.",
+ "X391/K": "Allow",
+ "X3DNAi": "You\u2019ll get an alert if a member shares malware.",
+ "X3FlZ7": "Your {trademark_business} {plan} plan will be renewed on {date}. Your current {schedule} total is {recurring_total}.",
+ "X3U3zw": "TRIAL",
+ "X4Crql": "If you want to keep {trademark_business}, it only takes a few minutes to add your billing information.",
+ "X4DXqP": "Create new task",
+ "X4p8NC": "Because you\u2019ve already reached your quota, your Dropbox will stop syncing files and you won\u2019t be able to add any new files or restore deleted files.",
+ "X5CFvn": "Personal account",
+ "X5Hrgk": "Dropbox Binder",
+ "X5c+e0": "Multiple accounts",
+ "X69niz": "They\u2019ll lose access to team content",
+ "X6VaYA": "SSO",
+ "X6pZ1L": "Result",
+ "X6vQlG": "Please agree to the SEPA mandate terms by ticking this box.",
+ "X79zCh": "this file",
+ "X7A5AR": "{display_name} is now a user management admin.",
+ "X7Dg4C": "IT admin",
+ "X7MD13": "Add anything specific they should know",
+ "X7cqs/": "Advanced trial",
+ "X86+76": "Basics",
+ "X8A5bJ": "Need something from someone?",
+ "X8CKgJ": "Top restore and delete articles",
+ "X8FtXh": "Alert category",
+ "X8V+Qt": "in progress",
+ "X8b0kY": "Your access to these items was removed, so you can\u2019t restore or permanently delete them.",
+ "X9W8tF": "{count, plural, one {Are you sure you want to delete {item_count} items, including {count} shared folder, from your Dropbox?} other {Are you sure you want to delete {item_count} items, including {count} shared folders, from your Dropbox?}}",
+ "X9lTXt": "Share feedback with Dropbox",
+ "X9vyOj": "Integration logo",
+ "X9xK6f": "Could not open new window",
+ "XA+fmY": "We\u2019ll let you know when your request has been approved.",
+ "XA8wA2": "The percentage of active and suspended licences.",
+ "XALYae": "Download from here?",
+ "XAMjLd": "Apps with access to your Dropbox",
+ "XAmQfp": "Upgrade to Professional to apply your watermark.",
+ "XAo7sk": "Add comment",
+ "XAyzq5": "Drag files here",
+ "XB2c0q": "The Dropbox Migration Assistant is currently only available in English.",
+ "XBrFmA": "Tina Thorstenson, CISO",
+ "XBy/9X": "Cancel",
+ "XC+l/w": "Cancel plan",
+ "XD9xb9": "{plan_name} is {price_per_month} per month. You\u2019ll spend {price_per_year} per year.",
+ "XDEPFQ": "Allow file downloads after purchase",
+ "XDLsmJ": "You don\u2019t have permission to share with some of these people.",
+ "XDW1tJ": "Your session timed out",
+ "XE6vCf": "deleted folder",
+ "XEGwL2": "Computer/software engineering",
+ "XEaqiT": "Done",
+ "XEvJfu": "Reset password",
+ "XFA09U": "Connect apps",
+ "XFHH8i": "Can\u2019t upload folders in Internet Explorer. Upload the files separately or try another browser.",
+ "XFPaPp": "Back home",
+ "XFSWDX": "Team members won\u2019t be able to share docs, give or get feedback, or track tasks in Paper.",
+ "XGL6ZT": "Pin",
+ "XGWBlY": "You can view but not share",
+ "XGtbG3": "Off",
+ "XGvyXX": "Advanced admin controls",
+ "XH49SN": "Select",
+ "XHbTJ8": "Only groups can be added to team folders.",
+ "XHuFxJ": "We accept {payment_methods}",
+ "XIFY0Y": "Date",
+ "XInC/n": "How many people are part of your company or team?",
+ "XJ+Ri3": "See the big picture of projects and track your progress.",
+ "XJI7dZ": "Can\u2019t move {num_of_files} items",
+ "XJSB5R": "Dropbox for Android",
+ "XJTRCn": "{value, plural, one {{value,number} second} other {{value,number} seconds}}",
+ "XJeTuR": "{license, plural, one {
/ user / month,
starting at {license} user
} other {
/ user / month,
starting at {license} users
}}",
+ "XJqVGH": "You moved {single_item_name} into this folder",
+ "XJs18w": "View on Dropbox",
+ "XKEjMN": "Take your files anywhere",
+ "XKofxO": "Previous value",
+ "XLVCXi": "Set up payment account to claim revenue",
+ "XLVIFy": "View as list",
+ "XMHn5C": "{count, plural, one {{count,number} member} other {{count,number} members}}",
+ "XMYkNU": "Protect and secure",
+ "XMab6Q": "People can download this transfer again for 7 days",
+ "XMdpED": "Keep your launches on track",
+ "XNArvD": "Absolutely! As long as your team admin permits external sharing, you can share with any Dropbox users, even if they\u2019re not members of your {dropbox_business} team. However, shared folder members who are not in your Business team will be limited by their own storage quotas. So, whilst your team members will have more space to add and edit files in a shared folder, {dropbox_basic} or {trademark_plus} users will be restricted by their personal quota.",
+ "XNEmah": "Groups can only be viewed by group members",
+ "XNga+1": "Click 'Open with' and select Nitro to open PDFs.",
+ "XNzmrO": "year",
+ "XOIPc5": "IP address",
+ "XOXb1b": "HELD MEMBERS",
+ "XOl8qQ": "Connect or disconnect a personal account to Dropbox Business",
+ "XOn3VZ": "Get more space to add more files to your Dropbox. Upgrade now.",
+ "XOq31W": "Don't upload",
+ "XPjCGu": "Team sharing policy",
+ "XPkdu6": "This person is not in your Dropbox team.",
+ "XPsHGt": "",
+ "XPuitl": "{count, plural, one {{count} ticket requires your response} other {{count} tickets require your response}}",
+ "XQ+VGp": "Group type",
+ "XQ5hkI": "Click Add to enable Dropbox Gmail integration",
+ "XQNf7s": "Remove from starred",
+ "XQsB0Y": "Enter your Dropbox password and we'll email you at {email} to reset your PIN.",
+ "XRK9U1": "Play",
+ "XRYkKY": "Remove file.",
+ "XRtyZw": "Photo edit",
+ "XSL//t": "Powerful administrative tools",
+ "XSR4O8": "File not found.",
+ "XSRNUs": "Everything in {advanced_name}",
+ "XSYkSG": "All in team",
+ "XSulmh": "Sign in as",
+ "XSyeTi": "Manage",
+ "XT1/P1": "File event tracking",
+ "XTU3gF": "Personal account locked modal",
+ "XU/pE0": "Team name",
+ "XU3yxo": "{price}/month (includes GST)",
+ "XUKtF2": "exception",
+ "XULJtd": "Yes, unlink",
+ "XUeui+": "Enable two-step verification",
+ "XV9BFY": "Want Dropbox for your whole team?",
+ "XVzKiX": "Lock files when you edit them",
+ "XW733K": "Done. The user is given access to the customer console and the partner portal.",
+ "XX70v0": "{count, plural, one {{name} edited {count} item in {folder_path}} other {{name} edited {count} items in {folder_path}}}",
+ "XY8Z5t": "{dropbox_plus} or {trademark_professional} accounts",
+ "XYNoRW": "Your version has required fields missing",
+ "XYd1PR": "Changing address...",
+ "XYgPf3": "Smart Sync readiness",
+ "XaIZgy": "Not now",
+ "XaQPW9": "Comprehensive audit trail with signed documents",
+ "XaRMgG": "Take your teamwork to the next level. Get as much space as needed for all of your content.\n Powerful sharing features make it easy to create, share and work together.",
+ "XafwTO": "Chatbot",
+ "XarYzm": "Add any extra details about the request",
+ "Xat2Mu": "means the Secretary of the US Department of Health and Human Services.",
+ "XbAqHv": "You can only share a link for viewing for this type of file.",
+ "XbzaCH": "
Cancel a free Dropbox trial
How to delete a Dropbox account
Cancel a Dropbox subscription purchased through iTunes or Google Play
Find a billing receipt or invoice
Look up a credit card transaction
Find out more about refunds
",
+ "Xc9gZZ": "{price}/month",
+ "XcMi4Q": "Creating new file\u2026",
+ "XcPV81": "Create export",
+ "XcU1kt": "Do shared folders count against my storage space?",
+ "Xd0++m": "Finished uploading",
+ "XdelDJ": "Join more than {dfb_count} teams using {trademark_business}",
+ "XditG3": "90 days",
+ "Xe3IgJ": "\u2026",
+ "Xe94ba": "{numMonths, plural, one {{discount,number,::percent .##} off for {numMonths,number} month!} other {{discount,number,::percent .##} off for {numMonths,number} months!}}",
+ "XeXPUa": "{name} deleted {item_name}",
+ "XeeT6w": "Syncing & uploads",
+ "Xf67Ap": "The Customer will not ask Dropbox or the Services to use or disclose PHI in any manner that would not be permissible under HIPAA if done by a Covered Entity itself, unless otherwise expressly permitted under HIPAA for a Business Associate. In connection with the Customer\u2019s management and administration of the Services to End Users, the Customer is responsible for using the available controls within the Services to support its HIPAA compliance requirements. The Customer acknowledges that third-party products or services, such as the Customer\u2019s email provider, may be required to access certain features of the Included Functionality. The Customer authorises Dropbox to transmit PHI as directed by the Customer and to notify the Customer of information related to its account functionality through these third-party products or services for the sole purpose of providing the Services to the Customer. For example, when the Customer uses the Services to share a file or folder, Dropbox may send a sharing notification via email, and the email may display the applicable file or folder name, which may contain PHI.",
+ "XfAovr": "Join team",
+ "XfJxCN": "Family Room",
+ "XfS7WN": "(includes GST)",
+ "XfljSM": "Send with link",
+ "XfuLlF": "Sharing info such as who shared content, when and with whom",
+ "Xg+zFf": "Select file in previous row (hold Shift to select range)",
+ "Xg96cj": "People outside the company",
+ "Xggott": "Cancel request",
+ "XgtSHT": "reminder graphic",
+ "XhBRcx": "{initiator_name} (admin) initiated file recovery at {initiation_time}\n from {initiator_ip}. This could take up to a few hours if there are a lot\n of files in {infected_user_full_name}\u2019s Dropbox account. You can go\n ahead and close this screen. Rest assured, recovery will continue at our\n end. We\u2019ll email you when their files are ready to use again.",
+ "XhplWJ": "How helpful have shortcuts been for the way you work?",
+ "Xi248c": "All of your team\u2019s content, including sharing permissions, will be moved into the primary team\u2019s account.",
+ "Xi5sxu": "Can\u2019t convert account because they haven't signed in",
+ "XifDSb": "Welcome to {name}\u2019s {sku}",
+ "XimFFf": "You are part of {team_name}",
+ "XjTkfW": "We\u2019re sorry you\u2019re thinking of leaving us, {first_name}. Can you tell us why? We might be able to help!",
+ "XjVAbc": "Your tax rate on this invoice cannot be updated.",
+ "Xjl1kv": "Other...",
+ "XjsMWH": "Link",
+ "XkSHxz": "The free Dropbox mobile app helps you keep projects moving from anywhere, so you can stay focused on what matters. Access work, collaborate with colleagues and clients, and quickly take care of tasks \u2013 all from your phone or tablet.",
+ "Xkb8gG": "Only the owner of {file_name} can move it to a team folder.",
+ "XkbjSU": "Shared existing folder modal",
+ "Xkz5XK": "Sign in to PayPal to continue with this payment method:",
+ "Xlc8yC": "Save as PDF",
+ "XlsYW9": "Normally, synced files are downloaded fully to your computer and they take up hard drive space. With Smart Sync, you can make files and folders \"online only\". Online-only files only use a small amount of hard drive space to store information such as the file name, size and thumbnail, but the full contents of the files are stored securely in the Dropbox cloud. You\u2019ll always see your online-only files on your computer, so when you need them, you can open them with just a click.",
+ "XmdmiQ": "Share \u201c{folder_name}\u201d with everyone in {team_name}?",
+ "XnB7kl": "{display_name} (EMM)",
+ "XnGBel": "Processing could take a while. We\u2019ll email you when it\u2019s ready to download.",
+ "XokhaJ": "Send to anyone \u2013 they don\u2019t need an account to download",
+ "Xoz7Jw": "Contact sales",
+ "Xoza1y": "Can view",
+ "XpDNPJ": "Team members",
+ "Xphok/": "{count, plural, one {Anyone with the link and password can view this file. Expires in {count} day.} other {Anyone with the link and password can view this file. Expires in {count} days.}}",
+ "XqgOD/": "Members of the folder with this link can view.",
+ "XquJn2": "View more customer stories",
+ "Xr496Y": "Stay up to date on shared projects and see the latest work from your team.",
+ "XrHRhM": "Disable external sharing",
+ "XrLuJX": "Couldn\u2019t update setting. Please try again later.",
+ "Xrh3zC": "You moved {single_item_name} out of {src_folder}",
+ "Xrk94B": "Winning lotto numbers? The secret to happiness? You\u2019ll need more space in your account to see what\u2019s in that folder.",
+ "XrxDUO": "Couldn\u2019t generate report. Try again once your other reports are complete.",
+ "XsLts1": "Continue for free with Dropbox Basic",
+ "XsVWRJ": "Delete files from my personal Dropbox next time this computer comes online.",
+ "XsWhMa": "Please enter a reason",
+ "XscCkp": "Active",
+ "XssSQM": "Tax invoice for {name}",
+ "XthdPa": "Change notification settings",
+ "Xti6fG": "Audio details",
+ "Xtkx7N": "They will have access to the customer console and the partner portal.",
+ "XtuHtv": "If you purchased your Dropbox subscription through the Apple App Store, you'll have to request your refund from Apple directly.",
+ "Xv5W2O": "Dropbox Transfer up to {transferAmount}",
+ "Xw0FGS": "Folder type",
+ "XwGOZw": "You have an active Dropbox {plan} subscription through the {biller}.",
+ "XwJP33": "No meetings",
+ "XwXbCN": "Great! Now let\u2019s add the rest of your team",
+ "XwXyT/": "Invite people in your team to your new Dropbox account. You can start using your team space to access and work together on files easily.",
+ "XwceOe": "Got it",
+ "XwpHsG": "Unable to upload {filename}: {reason}",
+ "Xwxvln": "deleted document",
+ "Xx0Fjo": "Extracting {file_name} \u2013 {time_remaining}.",
+ "XxS5PN": "Work between {currentEmail} and {pairEmail} without signing in and out of Desktop.",
+ "Xxcol+": "Couldn't copy the link. You don't have permission to create a link to this content.",
+ "XxlRJN": "An app or feature I didn\u2019t find",
+ "Xy/Xlx": "expires: {expire_day}",
+ "Xy0hIZ": "You\u2019re logged in to your work account,",
+ "XyALRK": "Centralise my team\u2019s work in one place",
+ "XysI/L": "Customise design",
+ "XyseuH": "{noOfFiles, plural, one {{action}, applies to {fileName}} other {{action}, applies to {noOfFiles} selected files}}",
+ "XzAvwC": "Name or email address",
+ "XzCOeA": "Collect electronic signatures in minutes. Send documents from Dropbox that recipients can sign in seconds on any device, no downloads required. Powered by Adobe Document Cloud. New users get 5 free transactions every 30 days.",
+ "XzMI9t": "You now have two Dropbox accounts \u2013 one just for you and one for your {team_name} work.",
+ "XzsuOM": "You\u2019re about to unlink your {category}. It will stop syncing immediately and you won\u2019t be able to access files on this device without re-linking.",
+ "Y+0afH": "In a new tab, open the website of your domain host and sign in. Then locate the DNS settings for {domain}.",
+ "Y+6Itu": "Add your billing info now so your plan is upgraded without interruption on {trial_end}.",
+ "Y+Foy6": "QR code",
+ "Y+MchP": "Extension",
+ "Y+wf4j": "On",
+ "Y/LBQu": "Anyone with this link and password can edit the file.",
+ "Y/NN0h": "Older",
+ "Y/Xhbc": "Try it",
+ "Y/eR76": "Email team member",
+ "Y/r/in": "This email address has already been taken \u2013 please try another one",
+ "Y03muj": "User reviewing their list of notifications.",
+ "Y0Em2X": "Best for most teams. Passwords will need to be moderately complex with at least 8 characters.",
+ "Y0gPnW": "\u00b7",
+ "Y13a+w": "Looks as if you already have this! ",
+ "Y1EjrM": "Provide any errors that may have appeared relating to this issue",
+ "Y1FLWO": "Copy Zoom cloud recordings to Dropbox",
+ "Y1McLA": "Mobile devices",
+ "Y1c//y": "Couldn\u2019t add default background. Please try again.",
+ "Y1lxeI": "Unlock the power of your sales team by getting everyone on the same page, from account planning to collaborating on sales call notes.",
+ "Y26gHx": "Suspend team member",
+ "Y2LnVt": "{hours}:{minutes}:{seconds}",
+ "Y2X2cR": "Add branding when you share outside your {team_name} team",
+ "Y2fG07": "Click 'Open with' and select HelloFax.",
+ "Y3/QT/": "Policy type",
+ "Y3CfTf": "All members will be prompted to choose new passwords next time they sign in.",
+ "Y410Zf": "Generous",
+ "Y4DjtR": "None \u2013 general App Centre feedback",
+ "Y4TkRL": "Support",
+ "Y4jyXi": "Present",
+ "Y4o+17": "{name} has been downloaded",
+ "Y4x2gL": "View previous slide",
+ "Y4z5Mh": "Early releases",
+ "Y543bW": "Google Play Store",
+ "Y5AhQP": "try uploading files separately",
+ "Y5BVus": "View admin emails",
+ "Y5Mbej": "
If you\u2019re currently subscribed to a Dropbox Plus or Dropbox Professional plan, you can downgrade your account to a free Dropbox Basic plan immediately without the assistance of an agent.
Note: Downgrading your Dropbox plan to Basic is not the same as deleting your Dropbox account.
",
+ "Y5NDXW": "Name",
+ "Y5NH4V": "{count, plural, one {The invitation could not be sent.} other {The invitations could not be sent.}}",
+ "Y6042s": "Uploads will be disabled one week after the deadline.",
+ "Y60BJ8": "Save to Dropbox",
+ "Y65c9G": "Click 'Open with' and select Outlook.",
+ "Y66lfE": "It looks as though {infected_user_full_name}\u2019s linked computer,\n {infected_host_name}, has been infected. Dropbox can recover their\n files to a version that existed before they were locked by ransomware on\n {infection_date} at {infection_time}.\n {br}{br}\n Dropbox will pause syncing to the infected computer while recovering\n {infected_user_familiar_name}\u2019s files. During the pause,\n {infected_user_familiar_name} can access any recovered files at\n dropbox.com or on the Dropbox mobile app. Once the ransomware has been removed\n from the affected computer, we can resume syncing.\n {br}{br}\n File recovery usually takes about 15 minutes, but can take up to a few\n hours. The more files {infected_user_familiar_name} has in their Dropbox\n account, the longer it may take. We\u2019ll email you as soon as\n recovery is complete.",
+ "Y692Ud": "Error",
+ "Y6D/4x": "hour",
+ "Y6FDpY": "If you think this was an error, try contacting the creator of {filename}.",
+ "Y6RKJq": "Content to retain",
+ "Y6TflF": "Are you sure you want to disconnect {name}? You\u2019ll need to reconnect again to continue using {name} on Dropbox.",
+ "Y7+XCp": "Do any of these help with your account access and security?",
+ "Y73l91": "No access",
+ "Y7IkmD": "Cancel",
+ "Y7dZop": "Add activity",
+ "Y7uVJx": "Invalid code",
+ "Y87Mpn": "Management",
+ "Y8ClZB": "Refresh token",
+ "Y8Re5Q": "Membership request approved.",
+ "Y8SI6q": "For teams",
+ "Y8cVgK": "Choose folders to sync",
+ "Y8k/6r": "Previous page",
+ "Y8k4xN": "Auto, did not fire, red-eye reduction",
+ "Y8reib": "{quotaGb,number} GB",
+ "Y9FcUQ": "Word for the web",
+ "YA7OiJ": "Try again",
+ "YALbcv": "Cancel",
+ "YAig3a": "Due date",
+ "YAlWfX": "Zoom",
+ "YApL4x": "Rename directory",
+ "YAq6NB": "Other",
+ "YBc5zy": "Your member folder is full, so no new files can be added",
+ "YC4s0t": "Change settings",
+ "YC8JAS": "Shared by",
+ "YCPB+l": "Allow members to permanently delete files or prevent members from doing so",
+ "YCbjf0": "Cancel request",
+ "YCeuVG": "{count, plural, one {Sent {count} day ago} other {Sent {count} days ago}}",
+ "YDDsSH": "Download",
+ "YDIDVf": "All synced content will be deleted from this member\u2019s devices the next time they come online",
+ "YDw317": "Yesterday",
+ "YE+cZF": "Remind me later",
+ "YEJKA+": "If it's a one off, it might work if you refresh the page. You can also ask us for help.",
+ "YETueY": "Support admins",
+ "YF+G2c": "Request invitation",
+ "YF8NvF": "This file was skipped because files of this type cannot be uploaded.",
+ "YFBEap": "Not sure",
+ "YFhk/Q": "deleted app folder",
+ "YFmCHZ": "Removing members from {folder_name}\u2026",
+ "YFt3xj": "Ask for any other info you need.",
+ "YFukG2": "Unlink this client",
+ "YGBaO5": "Current address",
+ "YGF1+m": "{count, plural, one {Anyone with this link and password can edit the file. Expires in {count} day.} other {Anyone with this link and password can edit the file. Expires in {count} days.}}",
+ "YGcP7o": "What\u2019s at risk",
+ "YHeXt/": "Show more",
+ "YHiC6y": "Dropbox Fundamentals",
+ "YHoriR": "Unable to copy the link. Please copy manually.",
+ "YI5lkl": "People with password",
+ "YIK0Ns": "Start",
+ "YIUGO+": "Can view",
+ "YIbSGj": "Let {team_name} manage your team",
+ "YJCTjv": "Planning to keep lots of data here?{br}Choosing this option can affect performance during the initial sync. Instead, clear the tickbox to let members sync only the content they need. Learn more",
+ "YJc3aM": "Link copied. Allows editing.{br}{copiedUrlDisplay}",
+ "YJjQc8": "{display_name} is no longer an admin.",
+ "YK3cjd": "{recurring_amount} {tax_rate_text}",
+ "YKtDAX": "Links created that won\u2019t expire",
+ "YKzo6y": "Add details you\u2019ll need later, such as the reason for the policy or the items to include.",
+ "YLBqRL": "This folder is empty",
+ "YLIbxl": "Click and follow the directions to install.",
+ "YLMDDO": "Learn about file requests",
+ "YLa6Px": "A shared event plan using a Dropbox Paper template",
+ "YLmC/n": "Sometimes a face-to-face chat is the fastest way to unlock new ideas. And leading communication tools such as Slack and Zoom work directly from Dropbox. Now you can set up a quick session to touch base, or even a virtual conference room, with just a few clicks.",
+ "YMIjzS": "Your team\u2019s files stopped syncing {ago}",
+ "YNBvn+": "Other device",
+ "YNHINs": "Great! Now just open the installer and you'll be ready.",
+ "YNXVtr": "Members can join using this link until {expiration_date_time}.",
+ "YNn2+Z": "Stay on {tm_business} trial",
+ "YOWrDD": "{free_quota} (downgrade to {trademark_basic})",
+ "YOdcAD": "Top storage space articles",
+ "YP3Gbc": "\u201cWe\u2019ve always been a pioneer in the card industry, and we think of ourselves in the same way in the digital space. Thankfully, we pretty much have three words internally that keep us creating great work: \u2018It\u2019s on Dropbox\u2019.\u201d",
+ "YPQWtx": "You\u2019re eligible for a free {trial_length}-day trial.",
+ "YPWjDD": "Account menu",
+ "YPbHqP": "Restart the download",
+ "YPx+ti": "or continue on web",
+ "YQ7Jrt": "Go to admin console",
+ "YQJt5v": "?",
+ "YRatzw": "per month",
+ "YS2vUD": "File recovery failed",
+ "YT3Nkr": "Create Dropbox account",
+ "YT65KH": "Change to auto-PDF folder",
+ "YTQf/k": "Thank you for the feedback",
+ "YTZEp1": "Team members with this link can view the file.",
+ "YTkv+s": "{numUsers, plural, one {{price} / month for {numUsers,number} user} other {{price} / month for {numUsers,number} users}}",
+ "YU7/E1": "Transfer files up to 100 GB and add custom branding",
+ "YUkY7N": "{count, plural, one {Members of the folder with this link can view the folder. Expires in {count} day.} other {Members of the folder with this link can view the folder. Expires in {count} days.}}",
+ "YUrcyW": "Your billing location requires additional taxes. Your selected plan\nis {monthly_per_user}/user/month ({annual_price} charged yearly).\nYou\u2019ll only be charged if you don\u2019t cancel your trial before it\nends on {trial_end_date}.",
+ "YVNJrn": "Days",
+ "YVPxPt": "You haven\u2019t verified your email. Please check your email and try again.",
+ "YVlUTG": "{team} shared this with you.",
+ "YVqUaQ": "Search by company",
+ "YW2ltU": "Send big files fast with Dropbox Transfer",
+ "YWPyBU": "You won\u2019t get an alert if a member moves an unusually large amount of content.",
+ "YXDTD8": "{app_name} Calendar and Contacts are connected",
+ "YY2KqO": "Recruitment doc \u2192",
+ "YYEv7N": "Only enterprise admins can update this setting",
+ "YYLxxv": "{file_name} added to your Dropbox.",
+ "YYkIp8": "Remove me",
+ "YZ+Jsk": "Add watermark text",
+ "YZVk08": "2. Select important files from your Dropbox",
+ "YZdg41": "",
+ "YZqQHq": "Send email",
+ "Ya7MvO": "See all templates",
+ "YaLgOV": "All options in {label}",
+ "YarMQP": "Step 1 of 4: Intro",
+ "Yavejc": "More ways to protect your account",
+ "YaxVHQ": "Go to our Help Centre",
+ "Yb9Pun": "We couldn\u2019t reach that email address. Please check the spelling and try again.",
+ "YbQOF7": "Given name",
+ "Ybo+lA": "Play videos",
+ "YbpR0X": "Unknown error \u2013 turning off Paper",
+ "YbxnDa": "Free up space or upgrade now",
+ "Yc/u4f": "Try again",
+ "YcDQxL": "Personal account not accessible",
+ "YcKefr": "Share your photos, videos, music and more",
+ "YcXiNd": "Your plan includes as much space as you need and {api_limit} API calls. Please contact support if you have any questions.",
+ "Yca12x": "Bring the smart workspace to your business",
+ "YcxVqg": "Add",
+ "Yd7c8F": "Good",
+ "YdNfV/": "All other tickets",
+ "YdcNbo": "Publisher",
+ "YdhTJc": "Add files",
+ "Ye/4Vz": "Signed in to Dropbox successfully",
+ "YetG8G": "Fonts",
+ "YgP0SR": "Shared with",
+ "YgZF+b": "Pending member removed.",
+ "YgeJ84": "User- and company-managed groups",
+ "Ygjb7E": "{date,date,::MMM d}",
+ "Yh4ILa": "Problems downloading? Try again",
+ "YhLWQX": "We are uploading your Agreement to your Dropbox. This may take a few moments.",
+ "YhUh+a": "Untitled",
+ "Yhb4gK": "Control whether a shared folder moves too",
+ "Yi3xPt": "View more customer stories",
+ "YiWZ1G": "Do you have multiple accounts? Use this tool to check which account a credit card charge is for.",
+ "YiYyiA": "Already in another team",
+ "YigIZ0": "Trusted contact is a team user \u2013 their admin could access your files. Learn more",
+ "YiyrV3": "Remove me",
+ "Yj/qwl": "Unable to change lifecycle state because it is the last approved version of an approved campaign",
+ "Yj6MuL": "Your browser does not support this feature.",
+ "YjKebn": "(save {savePercentage,number,::percent})",
+ "Yk+F6B": "Changes saved. We\u2019ll start holding files straight away.",
+ "Yk84rP": "{team_name} \u2013 space",
+ "YkAOU3": "What should we notify you about?",
+ "YkS8kL": "The username portion of the email address (the portion before the @: {username}) is invalid.",
+ "Yl/19R": "If your distribution is not listed, choose \u201cCompile from source\u201d.",
+ "YlC/wH": "{quota} of space",
+ "YlsoG8": "Chat to {name} from here. Connect a communications app.",
+ "Ym41kj": "You are already part of this family.",
+ "YmEqih": "There was a problem dismissing {item_name}",
+ "YmPbCq": "Released on",
+ "YmUt2k": "Sent to {recipient_first} and {recipient_second}.",
+ "YmqZNZ": "{name}, get {free_months} months free with your first year of {dropbox_plan}*",
+ "Yn2gx1": "Unstarred {itemName}.",
+ "YnH6gd": "{count, plural, one {Restore any version from the past day} other {Restore any version from the past {count} days}}",
+ "YnJU7b": "An error occurred while loading.",
+ "YndfBt": "Discount",
+ "YnzfGW": "Couldn\u2019t sign in with {provider}",
+ "Yo/BWl": "There's already a policy with that name. Please try another name.",
+ "Yo7HBc": "Name this download",
+ "Yo8ikT": "Turn on capture",
+ "YoHXz2": "We need your permission to connect to your {provider} account.",
+ "Yoowb0": "Notification type",
+ "Yp6HFY": "Get help",
+ "YpDhtC": "
Cancel a free Dropbox trial
How to delete a Dropbox account
Find a billing receipt or invoice
Look up a credit card transaction
Find out more about refunds
",
+ "Ypoq22": "In Optional mode, you can use an email template to tell users about SSO manually. View template",
+ "Ypt8pd": "Pick a date",
+ "YptDRD": "Because working remotely has become more common in recent years, people and teams are now adjusting to the realities of a distributed workforce on a new scale. This presents unique challenges. Read about best practices for succeeding in a distributed work environment.",
+ "YqAQbW": "Trello is not responding. Please try again later.",
+ "YqHzHk": "App icon",
+ "YqY3aM": "Select date",
+ "YqrPC/": "custom",
+ "YrOVxB": "Invited users",
+ "YrReAj": "Confirm",
+ "Ys93fl": "{count, plural, one {{count}+ members ({outside_team_string})} other {{count}+ members ({outside_team_string})}}",
+ "Ysbdxw": "Other",
+ "YssdR5": "Search our Help Centre",
+ "YtM4Ew": "Absolutely! As long as your team admin permits external sharing, you can share with any Dropbox users, even if they\u2019re not members of your {trademark_business} team. However, shared folder members who are not in your Business team will be limited by their own storage quotas. So, whilst your team members will have more space to add and edit files in a shared folder, Dropbox Basic or {trademark_plus} users will be restricted by their personal quota.",
+ "YtPMDZ": "Computers",
+ "Ytk0Pr": "Import members with CSV file",
+ "Yu/P9I": "Easily recover deleted files and restore previous file versions.",
+ "YuCDiu": "Purchase now",
+ "Yutfxu": "This account\u2019s licence key will be activated and no charge made to the payment method on file.",
+ "YvVUse": "Aug",
+ "YvjNnL": "Storage devices",
+ "YvxIv0": "Members can invite people on this list to files and folders. Bear in mind that each folder also has access settings that can be managed by the owner.",
+ "YvxWFF": "Keep request",
+ "YwJTo6": "Dropbox for iPhone",
+ "YwaMN9": "Fifth highest activity",
+ "Yx7Czy": "Shared",
+ "YxSS4y": "\u201cWe\u2019ve always had a global presence, but before Dropbox, we couldn\u2019t be as spread out as we are now. Dropbox makes our employees feel as though they\u2019re all in the same office.\u201d",
+ "YxsBme": "{count, plural, one {Anyone in the {trademark_business} team with this link can view the file. Expires in {count} day. Downloads disabled.} other {Anyone in the {trademark_business} team with this link can view the file. Expires in {count} days. Downloads disabled.}}",
+ "YxtfcM": "Minimum requirements",
+ "YyB3le": "Your account will be merged into the {team_name} Dropbox account, where you\u2019ll have\na private area for your stuff. {team_name} admins can manage your files and Paper docs if they\nupgrade the account to {trademark_business}.",
+ "YyNrxO": "Selective sync",
+ "YyR23e": "or sign in",
+ "YyS/vw": "Admin required",
+ "Yz+eoy": "Bear in mind:",
+ "Yz4sxa": "Unlink device",
+ "YzKUrr": "Lets members share showcases with people outside your team. Changing this will only affect sharing going forwards.",
+ "YzMs/g": "Select all",
+ "YzRKD+": "Now let\u2019s enable Smart Sync",
+ "Yza87k": "No credit card needed",
+ "YzaJIx": "Hi {user_name}, I @mentioned you in the {folder_name} folder. Take a look.",
+ "Yzabjr": "Adjust",
+ "YzjBDz": "{count, plural, one {Sign out of {count} device?} other {Sign out of {count} devices?}}",
+ "Z+nyo4": "Using a PIN for access, {vault} provides an extra layer of security for all of your family\u2019s important files, such as IDs, wills and pay slips. Personal files are safe and on hand whenever you need them.",
+ "Z+rZ7B": "Message sent",
+ "Z+zjTM": "{quotaTb,number} TB ({quotaGb,number} GB)",
+ "Z/+b6+": "Members can join your team using this link while there are licences available",
+ "Z/75PR": "Patreon",
+ "Z/XPvC": "Keep your team up to date with easily accessible style guides. Craft guidelines that help everyone create written and visual materials that are on message.",
+ "Z/ui0F": "With {trademark_business}, you\u2019ll get more space, controls and support.",
+ "Z0+vcG": "We have resent the verification email to {email}. Check your inbox.",
+ "Z0CQak": "Folder membership",
+ "Z0Yrxr": "Send, receive and sign faxes online.",
+ "Z0capp": "Set the amount of Dropbox space members can use",
+ "Z0ouq2": "This team is already part of your organisation",
+ "Z1BdZ2": "CPF/CNPJ",
+ "Z1gIYu": "There were too many changes for us to display, but we can still help you use Rewind.",
+ "Z1jqLM": "Try Capture for free",
+ "Z1mk0r": "The destination must be a folder. Please choose another destination.",
+ "Z217SR": "{count, plural, one {{name} and {count} other viewed} other {{name} and {count} others viewed}}",
+ "Z2P2Q/": "Create",
+ "Z2u8Ye": "Couldn't remove you, but it might be a one-off. Please try again.",
+ "Z3Gt5u": "Attachments",
+ "Z3IK4K": "Partner permissions",
+ "Z3ck27": "{title}: {active}{separator}{in_progress}",
+ "Z43Z5g": "View on App Centre",
+ "Z4921H": "Learn more about how Smart Sync works",
+ "Z4B53Q": "Every version available",
+ "Z4BYdz": "{count, plural, one {{count} day left} other {{count} days left}}",
+ "Z4ErxL": "Unshare album?",
+ "Z4b4y4": "App education modal image",
+ "Z4c55e": "Couldn\u2019t share folder. Try sharing again.",
+ "Z4gA1J": "For teams and businesses of any size",
+ "Z4l8Wv": "Delete policy",
+ "Z4lM4L": "Dropbox centralises your team\u2019s content and tools \u2013 whether you\u2019re working across the globe or from your sofa.",
+ "Z58Eak": "Need more info about plans, features and security? Compare plans",
+ "Z5FYqM": "Close",
+ "Z6+Jvy": "Link deleted. People can no longer join your team with this link.",
+ "Z6PuN1": "Simply add signers",
+ "Z81Qt6": "Fired, red-eye reduction, return detected",
+ "Z8RJeT": "3. Choose the course. You can upload any file type that Canvas supports.",
+ "Z8TQMl": "Now that Smart Sync is set up, choose items to move into Dropbox. Everything you move will still be visible on your computer \u2013 ready to access, edit and share \u2013 even though they\u2019re off your hard drive.",
+ "Z8ZcZc": "You\u2019re all set",
+ "Z9FaUX": "Name and new path",
+ "Z9HlH9": "Delete folder?",
+ "Z9VtWb": "in {parentFolderName}",
+ "Z9oF6G": "Host name",
+ "ZAPyt+": "New",
+ "ZB5/iN": "{count, plural, one {{name} unshared {count} item} other {{name} unshared {count} items}}",
+ "ZBGHZU": "{count, plural, one {To automatically sync {folder_name}, we also need to sync its top-level folder, {parent_folder_name}.{br}{br}This change applies to new members only. Find out about Selective Sync} other {To automatically sync the selected folders, we also need to sync their top-level folder, {parent_folder_name}.{br}{br}This change applies to new members only. Find out about Selective Sync}}",
+ "ZBKxLG": "Holding a copy of any available files that members edit between the hold dates",
+ "ZBTFWh": "Share",
+ "ZBbRHf": "Unlinked {device_name}",
+ "ZBlB2P": "Family",
+ "ZBqWRu": "We were unable to unlink the device. Please try again.",
+ "ZBskvc": "Everyone \u2013 please put your drafts here. Create a subfolder with your name.",
+ "ZCkVHN": "Confirm change",
+ "ZDCfCa": "From Excel",
+ "ZDEXPL": "Send me a copy of this email",
+ "ZDj5bt": "File recovery",
+ "ZDuI+U": "The name will be changed for everyone on your team. If a member already has another folder with the same name, their folder will be renamed automatically to avoid a conflict.",
+ "ZES8sE": "min",
+ "ZEbwf+": "Emergency access so family can get your records if anything happens to you",
+ "ZEkZEV": "You can only copy this link.",
+ "ZEnulX": "Cannot share with this many people.",
+ "ZFZrNG": "Search for {query}",
+ "ZFfsQG": "{audio_freq} kHz {audio_chan_layout}",
+ "ZFo+nW": "Connect and automate how you prepare, sign, act on and manage agreements across your entire organisation. Sign electronically on practically any device, from almost anywhere, at any time. New users get 10 free envelope sends.",
+ "ZFygrn": "Are you sure you want to delete {item_count} items from your {team_name}workspace?",
+ "ZG+/LS": "Watermarking is not available for this file type.",
+ "ZG9+mS": "What\u2019s your business called?",
+ "ZGe6o7": "Member",
+ "ZGmdWK": "Legal holds Help Centre.",
+ "ZGzw+X": "Use at least 8 characters, and make sure it\u2019s four bars strong:",
+ "ZHnJSP": "View as",
+ "ZHuo5y": "Upload certificate",
+ "ZHxWVU": "You\u2019ll get everything in Basic, such as access across devices, shared folders and links, and Dropbox Paper \u2013 plus more space and features to meet your needs",
+ "ZI39vb": "Add security keys",
+ "ZIhxvx": "Name",
+ "ZJ1DL/": "Organise team content in one safe, collaborative workspace",
+ "ZJf1Qz": "Dropbox is here to help",
+ "ZJfxlG": "The following characters are not allowed: angle brackets \\ / : ? * \" |",
+ "ZJiM3O": "Team folders",
+ "ZJlrl5": "To upload a file while you\u2019re in Canvas:",
+ "ZJmJez": "Sign in successful. Your browser will be redirected in a few seconds.",
+ "ZJucV9": "You successfully upgraded{br}to {planName}",
+ "ZK0Cyi": "This option is permanent. Please review the list above carefully before converting, as members might retain company data. You won\u2019t be able to restore the account or make any changes to it.",
+ "ZKnTqo": "Can only filter by your team\u2019s devices",
+ "ZKpC55": "This account has been disabled.",
+ "ZL/RTm": "Link will work for 3 days",
+ "ZL0s+u": "Store all of your edits to the file in Dropbox.",
+ "ZLjULL": "Loading",
+ "ZLtMBf": "CREATE AN ITEM FOR SALE",
+ "ZM6bHJ": "Files & folders",
+ "ZM6uKo": "Please note that you have an active Dropbox {trademark_plus} trial managed through the {billing_store}. You must cancel it to avoid paying for two subscriptions.",
+ "ZMB/Ar": "All members can still access company files using the normal Dropbox app",
+ "ZMJOlD": "Printing is turned off for this file.",
+ "ZMOjWK": "For 15 or more licences, we accept payments by bank transfer or cheque. Please contact sales for an invoice.",
+ "ZNGKB2": "Ways to contact Dropbox customer support",
+ "ZNK2lg": "To:",
+ "ZOWi44": "Custom solutions and individualised support to help IT professionals manage at scale.",
+ "ZOXxeC": "3-year plan",
+ "ZOboWS": "Loading your Slack conversations for the first time. This may take a few seconds.",
+ "ZOqUOm": "Take the Dropbox tour",
+ "ZOs18W": "Previous {trademark_business} trial",
+ "ZP13nE": "File operations",
+ "ZP6Ear": "Only you",
+ "ZPJ8Hv": "Try again",
+ "ZPLMFQ": "Four triangular prisms, each representing a different iteration of a project. The first three prisms have a cloud badge, while the last one has a green tick badge.",
+ "ZPbWOT": "Something went wrong with your team join request. Redirecting...",
+ "ZPsieU": "Privacy",
+ "ZPvZld": "Change",
+ "ZQIbpg": "Cancelling your Dropbox {trademark_plus} subscription in the {billing_store} will not affect your {trademark_business} trial.",
+ "ZRCJDk": "Do you want to delete {num} files?",
+ "ZRfUoB": "File requests",
+ "ZRqrRy": "Email {admin_fname}",
+ "ZRy2A0": "Pages",
+ "ZRz+6B": "Requests",
+ "ZS4+LJ": "Cancel",
+ "ZS7dvy": "I'm running out of space",
+ "ZSM6XN": "Off",
+ "ZShsIh": "Make comments",
+ "ZSvUbw": "",
+ "ZT/qA2": "Create summary",
+ "ZTM8N3": "{actor_name} shared this file in {slack_conversation_name}",
+ "ZTRokr": "Collaborators",
+ "ZTaPQk": "From",
+ "ZTkEWF": "Start rewinding?",
+ "ZTukLA": "New recruit onboarding",
+ "ZU3zxA": "Send large project files in a few clicks. And add custom branding to your shared links and download pages. You can sign NDAs and contracts in Dropbox too.",
+ "ZUXzl/": "Save as draft",
+ "ZV7+H+": "That link no longer works. If you already have an account, sign in or reset your password.",
+ "ZV8oAs": "Loading teams you can join",
+ "ZVOq7n": "Send to anyone, even if they don\u2019t have a Dropbox account",
+ "ZWIVFP": "You\u2019ll lose access to the {team_name} team folder and all {team_name} groups. Your account will be converted to a personal Dropbox.",
+ "ZWKyL3": "Contact your admin to get access",
+ "ZWTwJC": "Work on Google Sheets",
+ "ZWvP4o": "Extensions",
+ "ZX2QJp": "Team up with Dropbox Paper and Slack",
+ "ZXDoHc": "Dismiss completed module",
+ "ZXI9uh": "You\u2019ve hit the limit of invitations for today. Please try again later.",
+ "ZXY9/v": "MOV, WMV, MP4 and more",
+ "ZY55+d": "No results found",
+ "ZY8vQB": "Check your browser \u2013 you should now be signed in to Dropbox.",
+ "ZYA+JM": "{step} of {total}",
+ "ZZCH08": "Extension",
+ "ZZGKDu": "Too many wrong passwords \u2013 please ask the sender for a new link",
+ "ZZPag5": "Accessing government data",
+ "ZZU2Yr": "Delete",
+ "ZZVC1L": "What are manually added contacts?",
+ "ZZaddC": "Added",
+ "ZZo5Pe": "Edit with fewer tools",
+ "ZZs8no": "No, thanks. Stay on this page",
+ "ZaB4kV": "All files live locally",
+ "ZbJFCw": "Yes, set as default",
+ "ZbPQQW": "Used for gating this campaign. Specific variants for the selected Stormcrow feature are set in the sidebar under Version settings.",
+ "ZbTBdC": "Email",
+ "ZbTwYS": "{exposure_time} s",
+ "ZcFVDv": "{count, plural, one {Invite {count} member} other {Invite all {count} members}}",
+ "ZcKBEj": "example.pdf",
+ "Zd2yaf": "How much space does my team receive?",
+ "Zd4uKj": "Partial",
+ "Zd8jt8": "Adding to your Dropbox...",
+ "ZdEAP/": "Forgotten your PIN?",
+ "Zduv89": "Activity",
+ "ZeS8me": "Send documents and manage the signature process.",
+ "ZeTVlG": "Selected watermark image",
+ "Zeh+SK": "{count, plural, one {Anyone in your Dropbox team with this link and the password can view the file. Expires in {count} day.} other {Anyone in your Dropbox team with this link and the password can view the file. Expires in {count} days.}}",
+ "Zez4O8": "Cancel",
+ "ZfPA5x": "Layout",
+ "ZfZOOQ": "Work without space limits",
+ "ZfaZXL": "You\u2019ve lost the additional space you\u2019ve been using and access to features such as the admin console, extended version history and Smart Sync. Add your billing info now and you can pick up where you left off.",
+ "ZfdQEn": "Deleted",
+ "ZgQl3u": "Find the {trademark_businesss} plan for you",
+ "ZgSz4H": "Your {primary_label} Dropbox was successfully installed. Now you can add your personal Dropbox.",
+ "Zgc/hY": "{RecycleDelay} days after dismissal",
+ "Zgls1Y": "This person viewed via a link",
+ "ZguOmu": "{dropbox_plus} or {trademark_professional}",
+ "Zgzay7": "Restrict access to sensitive folders with powerful admin controls",
+ "Zh0I5b": "Save space with Plus",
+ "ZhA5oO": "View personal",
+ "ZhXcoe": "Anyone can be invited",
+ "Zhhud8": "{team_name} members won\u2019t be able to see future changes to {current_folder} automatically.{br}To give people access to this folder in the future, you\u2019ll need to invite them directly.",
+ "ZhlNXH": "Rotate anticlockwise",
+ "ZhzxQn": "Invite people and start using your team folder as a shared workspace to access and comment on files easily.",
+ "ZiMXGI": "Connect apps to Dropbox",
+ "ZiMZPz": "Reset two-step verification",
+ "ZiOLy9": "Billing charges",
+ "Zidtlx": "Apps that your team admin has enabled may be available by selecting a file in Dropbox and clicking Open or Share. You can also access App Centre with a personal account.",
+ "Zipm/8": "Learn about HIPAA",
+ "Zj5CDq": "First 6 digits of card number",
+ "Zj75v/": "Sales / Business Development",
+ "ZjG8ga": "",
+ "ZjLUew": "Disposition",
+ "ZjSuhw": "Your family",
+ "ZjtfCT": "{name} renamed this file",
+ "Zjv7Mi": "Download {displayName}'s vault",
+ "ZkCRSR": "Access files from anywhere, on any device",
+ "ZkRFrQ": "Microsoft details",
+ "ZkjH8i": "{quotaTb,number} TB ({roundedGb,number} GB)",
+ "Zkr/e/": "{count, plural, one {Anyone with the link and password can view this folder. Expires in {count} day. Downloads disabled.} other {Anyone with the link and password can view this folder. Expires in {count} days. Downloads disabled.}}",
+ "Zl9bOH": "Plan",
+ "Zmr3dn": "View all results for {query}",
+ "ZmstxO": "Add files and folders to the team space",
+ "Zn+Ije": "Due {date,date,::MMMMdyyyy}",
+ "ZnIqIh": "Prevent non-members from accessing this folder via link.",
+ "ZnS57e": "Images",
+ "ZnSlSp": "Alert sensitivity",
+ "Zo28sX": "Invalid email.",
+ "ZoO+/M": "Apple Pay",
+ "ZomjbB": "Send members a reminder",
+ "ZpOBV4": "An error occurred. Please refresh the page to try again.",
+ "Zpkc7x": "Other",
+ "Zq3Ehi": "You\u2019re sharing with too many people.",
+ "Zq8VvX": "Import contacts",
+ "ZqTi8N": "Marketing, Design, etc.",
+ "ZqhtP3": "The {team_name} admins are making it a requirement for everyone using Dropbox with a {team_name} email address\nto join the shared {trademark_business} account. What would you like to do? Learn more",
+ "Zr0G++": "Everyone is required to enable two-step verification, unless you make it optional for specific members.",
+ "ZrSQce": "Get organised",
+ "ZrbA3v": "Add exception",
+ "Zrj25A": "Upgrade to Advanced to add space",
+ "ZsUnxy": "Dropbox {showcase}",
+ "ZsZMpZ": "Please enter a phone number.",
+ "ZtDF5r": "Pro",
+ "ZtDUlL": "Find out more about admin roles",
+ "ZtOyAr": "Team shared folder, {alt}",
+ "Zu0jl4": "Are you sure you want to disable this security key?",
+ "ZuKPpH": "Email",
+ "ZuQKyp": "Cancel this trusted team request?",
+ "ZuZZUx": "Use template",
+ "Zuhe4j": "What happened",
+ "ZvH26K": "Attempted to zip too many files.",
+ "ZvJBIS": "Sorry, saving attachments in Gmail accounts is not supported.",
+ "ZvMuf8": "Sorry, it looks as though we failed to load your file. Please return to Dropbox and try again.",
+ "Zw8AYm": "Security keys",
+ "Zw9/eC": "We\u2019ll hold a copy of any available files that members edit between these dates",
+ "ZwAc+t": "Dropbox and the Customer will use appropriate safeguards designed to prevent unauthorised use or disclosure of PHI, consistent with this HIPAA BAA, and as otherwise required under the Security Rule, with respect to the Included Functionality.",
+ "ZwDOUz": "That\u2019s a bit too long ({count}/{max} max)",
+ "ZwQZM3": "Main modal image.",
+ "ZwrDDI": "This file is password protected.",
+ "ZxTpZJ": "Your member folder can\u2019t be moved.",
+ "ZxW0dN": "Great! Now drag the {trademark_passwords} app icon into the Applications folder.",
+ "ZyB1k3": "Find information shared in recorded Zoom meetings with video recordings and transcripts automatically copied to Dropbox.",
+ "ZyFp/R": "Don\u2019t cancel",
+ "ZyXIYZ": "Connect your personal Dropbox",
+ "ZysizF": "Final",
+ "ZyvE2M": "Your favourite e-signature tool now integrates and works seamlessly with Dropbox. Just choose a file, click 'Open with' and send for signature through DocuSign. With DocuSign eSignature, your first 10 envelope sends are free.",
+ "ZzAND+": "Clear search",
+ "ZzBeiz": "You\u2019re just a (double) click away",
+ "Zzad7F": "Cancelling...",
+ "Zzh7oC": "Over to the right, you\u2019ll find options to share, rename, move and more.",
+ "Zzhtmv": "Want to reduce your bill?",
+ "ZzwsG9": "Third party",
+ "_Loading": "Loading",
+ "a+++jI": "Backup method",
+ "a+62tB": "Compare plans",
+ "a/PmJ5": "Import contacts",
+ "a/XanA": "Options",
+ "a/xfA5": "Your shortcut to {underlying_filename} was created in {folder_name}",
+ "a0FTw9": "Recents",
+ "a0QM1Q": "Expiry date",
+ "a0fq6E": "You will be prompted to reset your password.",
+ "a0rQ8w": "Learn how",
+ "a1DjGn": "Thank you",
+ "a1XInm": "Team",
+ "a1oLXU": "Delete files from these Dropboxes next time this computer comes online.",
+ "a1wWU+": "Help Centre",
+ "a24I3G": "2. Set your Canvas domain below",
+ "a26imc": "Folder created.",
+ "a2NBnL": "Please agree to the Terms of Service.",
+ "a2rDhR": "Close",
+ "a2yPLP": "or upgrade now",
+ "a3Sd0R": "Anyone with this link can edit the file.",
+ "a3fnYg": "For work",
+ "a3ioU3": "Are you sure you want to cancel {email}'s invitation?",
+ "a3r8zo": "Make sure you don\u2019t get double charged",
+ "a3uqT3": "Account recovery with Facebook is a simple way to recover your account and increase security.",
+ "a5+ACa": "We suggest moving your files into your team account",
+ "a5EQjJ": "{folder_name} shared with everyone.",
+ "a5J2TR": "There are no open assignments. You may want to contact your lecturer.",
+ "a5RjJK": "Could not communicate with {target_origin}",
+ "a5Sp3R": "Please see if one of these articles addresses your question.",
+ "a5VeiF": "Granular sharing permissions",
+ "a5zn2G": "Stay up to date",
+ "a6Ka8X": "Members of the containing shared folder with this link can view the file.",
+ "a6UocB": "Campaign names must contain only lower case characters and dashes",
+ "a6eZsA": "If you\u2019re using a file collaboration tool without a feature like Smart Sync, you\u2019re always going to hit a wall and, as a highly mobile consulting firm, we had hit a couple. Across all levels, Smart Sync has addressed pain points for us and seriously changes the game when it comes to simplifying collaboration.",
+ "a7PP/5": "Files",
+ "a7m1vb": "Can\u2019t talk right now? Choose a day and time that works for you.",
+ "a7nv2w": "Don\u2019t recognise this ticket?",
+ "a8+LVV": "Keywords",
+ "a8C/rm": "You\u2019ve successfully cancelled your team\u2019s Paper move.",
+ "a8aV+r": "Learn more about antivirus software",
+ "a8vutU": "Auto-PDF folder",
+ "a9AKIw": "Additional Notice.",
+ "a9CxmM": "Look like a pro \u2013 use your personal logo and customise the design",
+ "a9L1AQ": "{count, plural, one {{count} request to join your team} other {{count} requests to join your team}}",
+ "a9VA9l": "Top sharing articles",
+ "a9nQg6": "AM",
+ "aAdw66": "{count, plural, one {{requested_str} \u2022 {count} day to accept} other {{requested_str} \u2022 {count} days to accept}}",
+ "aAutLY": "Report generation failed",
+ "aBKIh/": "You\u2019ve used all of your invitations. Remove a trusted contact to add another.",
+ "aBnSRC": "Available: {Timings}",
+ "aC945l": "Set up Smart Sync for your team",
+ "aCaq4h": "Last month",
+ "aCyxpq": "Back",
+ "aD+9i/": "You can\u2019t use this feature because your legal holds subscription has ended.",
+ "aDNTo1": "Success! You\u2019ll receive a text shortly.",
+ "aE+E2Z": "Smart Sync.",
+ "aE4CAA": "Share {space} of encrypted cloud storage",
+ "aEL0+O": "Anyone in the {trademark_business} team with this link and password can view the file. Downloads disabled.",
+ "aEeK+5": "Send file to Slack{workspace}",
+ "aEq3H6": "Email a Dropbox file as a link via Gmail",
+ "aFGv5u": "Share a folder from your personal Dropbox",
+ "aFPJim": "Member",
+ "aG7Srv": "App folder",
+ "aHgFUm": "Assigned cards",
+ "aHwEwV": "Share folder",
+ "aHxPGi": "Animation of multiple personal folders becoming a single team folder",
+ "aI/ARD": "That phone number doesn\u2019t appear to be a valid mobile number.",
+ "aIJ20g": "Team admin",
+ "aIQiHy": "PDF editing",
+ "aIaHX5": "The Dropbox daemon works fine on all 32-bit and 64-bit Linux servers. To install it, run the following command in your Linux terminal.",
+ "aImuAn": "Use this feature to enable extra security for your team\u2019s Dropbox account passwords.",
+ "aJ93qP": "You are connected to {account}",
+ "aJCYRv": "Applying new policy. We'll email you when we finish.",
+ "aJOQtC": "Files with sensitive info",
+ "aJUUxa": "Always be backed up",
+ "aJaiZZ": "{dropbox_plus} or {trademark_professional} accounts",
+ "aJv1kI": "Show newer history",
+ "aK7bwG": "Cannot upload folders with this browser. Try another browser or upload just the files.",
+ "aKjaSP": "\u201cWe\u2019re receiving tons of pictures and we're constantly overriding things that couldn\u2019t be managed in email. Dropbox saves us a huge amount of miscommunication by allowing the latest versions of documents to be available to everybody at all times.\u201d",
+ "aKuCRk": "{count, plural, one {Unlock editing for {count} file?} other {Unlock editing for {count} files?}}",
+ "aL2iGX": "{count, plural, one {Anyone in your {trademark_business} team with this link can edit the file. Expires in {count} day.} other {Anyone in your {trademark_business} team with this link can edit the file. Expires in {count} days.}}",
+ "aL6c1a": "Settings for this folder will now be managed by {collaboratorName}. Bear in mind that you won't be able to manage this folder here any more.",
+ "aLjbdr": "Added members ({num})",
+ "aLnvYH": "Sign and request signatures for documents. Track envelope status from one place.",
+ "aLuHYX": "You\u2019ll be charged for a licence if you don\u2019t have any available when someone is invited",
+ "aM022A": "Comment",
+ "aMDfLT": "Please enter the account holder's name.",
+ "aMIfrN": "Send documents for signature directly from your Dropbox account with HelloSign. Your first 30 days of HelloSign are free.",
+ "aMTr6g": "Now you can only view {filename}. If you still need to make edits, try contacting someone with edit access.",
+ "aMixzH": "This app or feature would be useful\u2026",
+ "aMzIbX": "A screen capture that shows pulling a file that is stored as \u201conline only\u201d in the cloud and working on it from your desktop locally.",
+ "aN7Wkr": "A drawing of a folder with a red X",
+ "aNHFm3": "{count, plural, one {{count} other} other {{count} others}}",
+ "aNSBNQ": "What else can you tell us? (optional)",
+ "aNfH1w": "Cancel",
+ "aNjiD3": "The report shows files and folders shared directly outside your team.",
+ "aNs7i0": "Begin typing your reply...",
+ "aO9iCM": "Learn how to manage cookies in Microsoft Edge Legacy.",
+ "aPVWQg": "Invite collaborators to add time-coded notes and respond to comments, in the video itself.",
+ "aPhz2c": "Remove",
+ "aPxlt0": "Can\u2019t merge without data governance",
+ "aQ8dzK": "We\u2019ll save a CSV report in your Dropbox Business Reports folder and email you when it\u2019s ready.",
+ "aQ9deh": "We\u2019ll charge your PayPal account.",
+ "aR2in8": "Archive team folder?",
+ "aRC8HF": "A free work Dropbox includes:",
+ "aRPI1y": "Join the {team_name} account",
+ "aRZUAa": "{folder_name} will start as unsynced.",
+ "aRido1": "We couldn\u2019t complete this operation. Please refresh the page and try again.",
+ "aRqaxY": "Thanks! We\u2019ll email you when it has been verified",
+ "aSm5lJ": "All the storage space you need",
+ "aT/hea": "Member actions",
+ "aTEm56": "Add groups:",
+ "aTSBWy": "Advanced training for end users and admins",
+ "aThimy": "{name} won\u2019t have access to the admin console or {role} permissions.",
+ "aTqy8d": "I don\u2019t understand how to use it",
+ "aTsr6b": "Cancel your Business subscription",
+ "aTzE19": "All of your work, at your fingertips",
+ "aU1atM": "Your team is using single sign-on, so these settings are managed by your identity provider.",
+ "aU7KBh": "This creates the report faster",
+ "aUI7bK": "You are saving {discount_promo,number,::percent .##} in total on your yearly subscription.",
+ "aUJ5Hz": "Very happy",
+ "aUOgFn": "Collaborating across continents",
+ "aUcxL5": "Thanks for confirming! That\u2019s all we need to know. This information helps keep your account secure. Really.",
+ "aUu9dX": "List view",
+ "aV/y8d": "Contact support",
+ "aWHIko": "Team space and member folders: an overview",
+ "aWO5m4": "Couldn\u2019t connect your Google Calendar",
+ "aX5DgY": "I needed {current_plan} temporarily",
+ "aXkZDs": "Also, {DROPBOX_VAULT} is not available for {BUSINESS} customers. When you upgrade, your vault will become a regular folder that\u2019s managed by your admin.",
+ "aXxyN6": "Send, request or sign encrypted files.",
+ "aYNG+m": "View completed tasks",
+ "aYPyC9": "Uninviting...",
+ "aYixao": "Reconnect",
+ "aZ6BZX": "Paperless signing from Dropbox",
+ "aZF9TW": "Get started",
+ "aZS/dA": "Remove member?",
+ "aaBkPc": "Device approvals",
+ "ab1O+f": "View",
+ "abKO7X": "waypoint",
+ "abKScz": "Permissions",
+ "abTa6U": "Total price including GST",
+ "adehgM": "Thanks for verifying your email address {email}. Your personal account has been changed successfully.",
+ "aeADau": "Successfully unlinked all Paper devices.",
+ "ag7E5d": "Complete",
+ "ag9tIb": "Check if it\u2019s the right file",
+ "agnWO9": "Account deleted and 1 licence freed up",
+ "ah+po9": "Today at {timestamp}",
+ "ah8lH9": "3 minutes",
+ "ahJjcR": "{count, plural, one {You can only delete this item permanently in the admin console.} other {You can only delete these items permanently in the admin console.}}",
+ "ahUaZ7": "I agree",
+ "ahXBZo": "Last active {translated_time_ago}",
+ "ai/+ep": "Organise",
+ "aiUVA4": "{numOfAdmins, plural, one {{numOfAdmins,number} admin} other {{numOfAdmins,number} admins}}",
+ "aim5E8": "Hide folders",
+ "aivEV4": "Save files to Dropbox directly from Microsoft Word, Excel and PowerPoint",
+ "ajeGMb": "What\u2019s included?",
+ "ajzv7m": "
If you don\u2019t recognise a Dropbox charge on your credit card, you can look up the email address and payment date associated with it.
All Dropbox purchases made with a credit card will appear on your statement as DROPBOX*(transaction ID).
Find the transaction ID for the Dropbox charge on your credit card statement. You can do this by searching your statement for \"Dropbox\".
Click to visit our credit card charge lookup tool.
Enter the transaction ID.
If you\u2019re not signed in to Dropbox, you may need to enter the last four digits of your credit card number and the expiry date.
Click Submit. You\u2019ll see the account email associated with the charge, as well as the transaction details.
",
+ "akZmur": "{date,date,::MMM d, yyyy} {date,time,::hhmm} by {creator}",
+ "alLx1L": "No recent activity",
+ "alOnki": "Add it to Dropbox to start working together.",
+ "alPKim": "Find a trusted Dropbox and HelloSign partner. Get the solutions and services you need to achieve your business goals, including implementation, integration, and ongoing management and support.",
+ "alXh/W": "To link your computer, you need to enter a security code. We sent the code to your phone number ending in {digits}.",
+ "alhtiG": "Open",
+ "amJefU": "Everyone will be removed from this folder. You\u2019ll still keep a copy of this folder in your Dropbox.",
+ "amKE6P": "Deleted ({size})",
+ "amldB7": "moved from its original location",
+ "amnrJj": "Remove yourself from \u201c{parent_folder}\u201d?",
+ "amyzxH": "Passwords and expiry dates for shared links",
+ "an+cIC": "We\u2019ll remove any secondary emails and let members know. It might take a while to remove every email.",
+ "an5myK": "Upload",
+ "anIIVl": "All",
+ "anKGN3": "Your team members will appear here",
+ "ane1pD": "There are too many files in one request. Please try again with fewer files.",
+ "aoGm/G": "At the end of your trial, you will be downgraded to a free team plan. Your team will lose out on the additional space it\u2019s been using, file recovery and advanced features such as Smart Sync. If you choose to purchase now, it won\u2019t interrupt your free trial period, and your plan will transition without interruption at the end of the {trial_days}.",
+ "aoKWUe": "deleted executable",
+ "aoTyHk": "Cancel",
+ "aoZO/m": "From",
+ "aoqQzY": "T",
+ "aoqySx": "Receives billing receipt emails",
+ "aov0FF": "Company, department or team name. This is visible to everyone in your account.",
+ "ap/kEq": "How do I share files or folders in Dropbox?",
+ "apGvjm": "{folder} (selected)",
+ "apMqz6": "What\u2019s included in {trademark_dbx_professional}:",
+ "apljdf": "created by team members.",
+ "aq9TxV": "Want to install the app?",
+ "ar5Kkk": "{date} by a permanently deleted user",
+ "ar5eVY": "Sync devices",
+ "arCDoM": "Copy and paste this meta tag between the and tags in the HTML file you\u2019ve opened.",
+ "arUSkr": "Close your next deal",
+ "arXhRE": "The security code is a 3-digit number on the back of your credit card. It immediately follows your main card number.",
+ "arsaiv": "Sending email...",
+ "as5lXY": "Done",
+ "as8fDm": "All admins in their team will lose admin privileges",
+ "asRDyH": "{count, plural, one {and {count} more...} other {and {count} more...}}",
+ "asg4OH": "Connect with Slack",
+ "atNZgN": "e.g. 2021 May, 2021 June, 2021 July",
+ "atcgb4": "",
+ "au69tv": "A cartoon woman in a laptop hands files to a cartoon man in a computer.",
+ "auA0ll": "On {transition_date}, your plan will be downgraded to {display_name}. Your new {schedule} total will be {recurring_price}.",
+ "autMJY": "Productivity features",
+ "avFDKY": "When an existing or new app is listed in App Centre, team members will be allowed to connect the app.",
+ "avSM1Q": "Manage transfer",
+ "avcTAR": "Task assigned to {name}",
+ "awUypt": "Seller profile",
+ "awXcpW": "Free up hard drive space",
+ "awaNQe": "Get {plus_space} of storage space",
+ "awuivx": "Add folder to my member folder",
+ "axFE/u": "Let removed members keep a copy of this shared folder",
+ "axM53h": "Getting details\u2026",
+ "axSi6e": "{num_invited, plural, one {Invited {num_invited,number} person.} other {Invited {num_invited,number} people.}}",
+ "axkOyT": "Team only",
+ "axxaX3": "{count, plural, one {You moved {count} item into {dst_folder}} other {You moved {count} items into {dst_folder}}}",
+ "ayeepw": "Cannot change role. This member\u2019s account has been suspended or deleted.",
+ "ayiXFG": "OS:",
+ "aywSTB": "Sharing files and folders",
+ "azKYUl": "Last 30 days",
+ "b+266D": "Something went wrong, but we think it's a one-off.",
+ "b+PDmn": "To configure your authenticator app:",
+ "b+in9r": "Expand",
+ "b+oCqw": "Link to Trusted Teams page",
+ "b/6fzj": "Get peace of mind knowing that, if work is lost, deleted or edited by accident, file recovery and version history make restoring it easy.",
+ "b/mGhH": "{count, plural, one {Anyone in your {trademark_business} team with this link can view the file. Expires in {count} day. Downloads disabled.} other {Anyone in your {trademark_business} team with this link can view the file. Expires in {count} days. Downloads disabled.}}",
+ "b/nZwr": "server error",
+ "b/v5Up": "Accept admin authorisation",
+ "b/xMl7": "Product template",
+ "b05DDk": "Available accounts:",
+ "b0InwQ": "Members of this folder with this link can view this folder",
+ "b0RM5Q": "You shared this file in Zoom",
+ "b0Z67l": "Mobile offline folders",
+ "b0kB2h": "Best-in-class sync and encryption",
+ "b1XaAp": "What is a CPF?",
+ "b21B7N": "Anyone you invite will have access to team folders",
+ "b2V4ID": "Error occurred removing trusted contact. Please try again.",
+ "b2gULy": "People can view, download and comment",
+ "b2hebe": "Uninvite",
+ "b2m/7G": "Deep integrations with Dropbox",
+ "b2mHDQ": "Rotation",
+ "b3A+2r": "Executable",
+ "b3AAQ1": "Email address they can contact",
+ "b3FNKE": "Sign in to websites instantly with the browser extension",
+ "b3GfsE": "Professional",
+ "b3ICHC": "{count, plural, one {Retry {count} file} other {Retry {count} files}}",
+ "b3LIjO": "Easy-to-manage permissions",
+ "b45/jf": "You can edit your team\u2019s folders and add members in the admin console.",
+ "b47mh4": "That account can\u2019t be paired. Paired account must be a personal account.",
+ "b4kkaV": "Upload file to Canvas",
+ "b4miuq": "Keep your files intact",
+ "b4unIL": "Legal entity:",
+ "b4wAd/": "Cancel your trial",
+ "b4yU+a": "Access",
+ "b5SCJd": "{teamName} wants you to join them",
+ "b5cAXX": "Search group members",
+ "b5iY5M": "Couldn't load content. Try refreshing the page.",
+ "b66NaO": "To set up a BAA, first you need to turn off Paper for your team.",
+ "b6TUXY": "24/7 phone support (in English)",
+ "b6UWIM": "What is the difference between {trademark_business} and {trademark_plus}?",
+ "b7//2e": "You don\u2019t have permission to share this folder.",
+ "b797tg": "See traffics and insights \u2013 track visits to make sure your files get to the right people",
+ "b7TtU4": "Gather ideas in Paper, a new type of doc, and keep the conversations going when you search, post and create new Paper docs directly from Slack.",
+ "b7f4wu": "You can use Files to manage your files in Dropbox",
+ "b7fwuB": " to turn off Paper.",
+ "b8CWB6": "Skip for now",
+ "b8cJEE": "Next",
+ "b8dAMd": "Your files are ready to upload",
+ "b8jlo4": "Use HelloSign to prepare, send and sign your most important documents, directly from Dropbox.",
+ "b8vqRw": "Unknown error when sending text message",
+ "b9/0IS": "Dropbox blocked access to the file containing malware.",
+ "b9LPyG": "{count, plural, one {Activity: {count} week ago} other {Activity: {count} weeks ago}}",
+ "b9n9hF": "Other",
+ "b9rPCC": "Go to {reseller_name} to view or make changes to your account details",
+ "b9zY1/": "Add a name",
+ "bA6hAM": "Select {display_name}",
+ "bAPMC8": "When you update a file in the Dropbox team folder on your desktop, it is updated automatically on your phone and tablet \u2013 and your teammates\u2019 devices. No more emailing \u201cSales presentation v4b.pptx\u201d to collaborators. And with Dropbox Smart Sync, everyone can access online files without filling up their hard drives.",
+ "bArtK/": "Archive document?",
+ "bB2Gll": "Edit in Dropbox",
+ "bBcQce": "You\u2019re almost out of room!",
+ "bBrAx/": "{filename} will be gone forever for everyone, including anyone still using the file. Permanently deleting items won\u2019t free up space.",
+ "bBvwr6": "Send, sign and store your most important documents \u2013 all in Dropbox",
+ "bCVn5i": "If you need to expand your crew, {displayName} can add members to or remove members from the Family plan at any time.",
+ "bD4kqG": "Uploaded by",
+ "bDOcv2": "Everything will soon be just as it was before {date} at {time}. Don\u2019t make any changes here until it\u2019s finished.",
+ "bDl1zV": "{count, plural, one {{min_licenses} person} other {{min_licenses} people}}",
+ "bE/Hbq": "Buy {trademark_business}",
+ "bE1oMs": "More about payments & billing",
+ "bEFfDy": "Change summary",
+ "bF2GU6": "S",
+ "bFPFFC": "Asked to join",
+ "bFX0L5": "When you star items, they\u2019ll appear here for easy access.",
+ "bFo4Xd": "Action disabled",
+ "bFoB59": "Audio details",
+ "bG/D5T": "Remove from exceptions",
+ "bGQpgB": "A Dropbox sample to-do list with items ticked off and assigned to different names.",
+ "bGrRFg": "Reason for cancelling",
+ "bGzf4A": "I changed my mind \u2013 keep Backup",
+ "bH2wYE": "Wrong password \u2013 please try again",
+ "bHAG7G": "Go to Home",
+ "bHLuEo": "Feedback submitted.",
+ "bHTimX": "Dropbox shared folders allow you to share photos and videos, or work together on projects and reports. Learn more",
+ "bHy9Vv": "Swap column to {nextlabel}",
+ "bI4JeF": "Email or name",
+ "bILm3Y": "Time",
+ "bIcgBl": "Import members with .csv template",
+ "bIlKqy": "Add task",
+ "bJMhuf": "Your role has been updated.",
+ "bJh6n1": "Joining...",
+ "bJo4iz": "Download the HTML file",
+ "bKNfFv": "Old comment",
+ "bKitYR": "Do you have any volume discounts?",
+ "bKmf0p": "Add a new time-based token.",
+ "bKzGF3": "TFA",
+ "bL7vRw": "Cancel",
+ "bLA3rA": "There was a problem completing this request.",
+ "bLAtro": "team user",
+ "bLBJ7q": "With {plan_space} of space and powerful sharing features, {dropbox_plan} keeps your stuff accessible and safe wherever you are. For a limited time, get {free_months} months free with your first year of {dropbox_plan} when billed yearly!*",
+ "bLcM5H": "Every two years",
+ "bLfZ53": "To:",
+ "bLkE1V": "64-bit",
+ "bLoNgh": "Couldn\u2019t add some files",
+ "bM24G7": "This folder is empty. Drag files here to upload, or browse from your computer",
+ "bMN6Dv": "Dropbox desktop app",
+ "bMtgBx": "Categories",
+ "bN+axy": "Please enter a valid VAT number.",
+ "bN53PL": "That's not a valid phone number. Please try again.",
+ "bNCYC/": "More about account access & security",
+ "bNQquS": "Paper docs",
+ "bOQ/DU": "{name} edited {item_name}",
+ "bObFEu": "Files",
+ "bOm6ZC": "Not helpful",
+ "bQ+gIz": "Start export",
+ "bQoyjz": "Your security codes will be generated by your authenticator app",
+ "bRFM/B": "This will unshare {folder_name} for everyone. After the folder has been archived, you can choose to restore it or permanently delete it.",
+ "bRVQ+X": "2 sessions",
+ "bRgIry": "Try the Dropbox Migration Assistant.",
+ "bRyYj6": "Les Lunes",
+ "bRyuHy": "Find out more about the people in your team. List everyone\u2019s personality type and preferences to get to know each other better.",
+ "bS30wb": "Try out the best of Dropbox for free",
+ "bS61cX": "Owner email address:",
+ "bSb5Nv": "The report includes users with accounts from the domains you\u2019ve verified. It will be saved to your Dropbox Business reports folder.",
+ "bSdTWj": "Search for content from \u201c{name}\u201d",
+ "bTfbvz": "Items only you can access",
+ "bTiSCc": "The username portion of the email address is invalid (the portion before the @: {username})",
+ "bU2V03": "Mobile contacts",
+ "bUJ7+m": "Try it free for {days} days",
+ "bUU65i": "You can transfer up to {size_limit}, and recipients don\u2019t need a Dropbox account.",
+ "bVWUu9": "Secondary email",
+ "bViVrZ": "Learn more",
+ "bVo/aV": "What payment methods can I use?",
+ "bW9cCS": "Email address doesn\u2019t exist.",
+ "bWBwYC": "OK",
+ "bWH2P3": "No default file browser",
+ "bWKJBF": "{count, plural, one {Upload {count} item to\u2026} other {Upload {count} items to\u2026}}",
+ "bX2Gi+": "When you\u2019re ready to download these files, create an export to choose what to include.",
+ "bXRbMC": "No, thanks",
+ "bXT0ok": "{count, plural, one {Change permission for {count,number} app?} other {Change permission for {count,number} apps?}}",
+ "bXw0Bv": "{standard_space} of space for secure storage",
+ "bYMNDL": "Company managed",
+ "bYoY7C": "{tax_rate} {s}",
+ "bYybEk": "Space",
+ "bZeTi+": "{count, plural, one {{count} submission} other {{count} submissions}}",
+ "bb8EQj": "{price}/user",
+ "bbaoYt": "Manage plan",
+ "bbdWHF": "Return to Dropbox Home",
+ "bbivSg": "{count, plural, one {{name} shared {count} item in {folder_path}} other {{name} shared {count} items in {folder_path}}}",
+ "bbjd2v": "Your organisation turned off Dropbox Transfer.",
+ "bbnyie": "Simusolar logo",
+ "bcOqfi": "Nothing is currently held for the {hold_name} hold. These members haven\u2019t edited Dropbox files between the dates the hold is set for.",
+ "bcdScm": "Investor relations",
+ "bd8XVn": "Easily track who\u2019s visited your shared links and whether they viewed or downloaded.",
+ "bdV6O3": "Add an email address or name",
+ "bdZ+y4": "Open Preferences",
+ "bdjwzx": "close",
+ "bds2NY": "My Dropbox",
+ "be3adi": "Only you can view until {date}",
+ "beDtWv": "Start",
+ "ben5Q2": "{count, plural, one {{name} renamed {count} item in {folder_path}} other {{name} renamed {count} items in {folder_path}}}",
+ "bfG+or": "{count, plural, one {Uploaded {count} of {num_files} files} other {Uploaded {count} of {num_files} files}}",
+ "bfPXU3": "Edit policy",
+ "bfYJqV": "More about ",
+ "bfob0z": "Manage groups",
+ "bg2sx0": "Or buy {plan} now",
+ "bgAMj/": "Number of files",
+ "bgAvOC": "Invite to team",
+ "bgGX06": "Request files from others",
+ "bgxNp5": "Next",
+ "bh4Con": "Delete vault",
+ "bhUW5J": "Back",
+ "bhV8Xa": "Create",
+ "biXmFy": "Handle inviting and removing members",
+ "bit2fM": "Allow team admins to update",
+ "bjLf+T": "Reconnect to Slack to enable new features",
+ "bjXnI/": "Family manager",
+ "bjsWDZ": "Learn more",
+ "bk090p": "Enable two-factor authentication (2FA)",
+ "bk3RXd": "Secondary email not added because admin turned off secondary emails for the team.",
+ "bkL3Mx": "Add team members",
+ "bkjynL": "Add more folders",
+ "bkwpZv": "\u2013 Files over 3 MB won\u2019t be available.",
+ "bl8cV8": "Add a note (optional)",
+ "blAaiJ": "You can\u2019t move a folder into itself.",
+ "blhA/v": "{standard_plan_name} provides teams with {standard_plan_size} of storage, and simple sharing and collaboration tools. For teams needing more storage and security, {advanced_plan_name} provides as much space as your team needs in addition to sophisticated admin, audit, integration and security features. Learn more about our plans here.",
+ "bllI0t": "Choose a capture setting for {domain} and its subdomains",
+ "bmFiS6": "Unlimited team folders",
+ "bmMN8X": "{filename} can\u2019t be restored.",
+ "bmpvII": "Other",
+ "bnI+zs": "Members removed from {current_folder}.",
+ "bnVvXx": "Share {planStorage}",
+ "bngIeS": "Free up your hard drive with Smart Sync",
+ "bo2yB9": "Admin console",
+ "bpCCWX": "MVMT Watches logo",
+ "bpefQm": "MB",
+ "bpkPnz": "Enter team names",
+ "bqkKNB": "Overdue \u2022 Open until {date} at {time}",
+ "bqyLa4": "This suggestion doesn\u2019t make sense.",
+ "br8y9J": "While we convert your vault into a folder, your vault files will be temporarily unavailable.",
+ "brJbXL": "\u201cHITECH Act\u201d",
+ "brKsol": "{count, plural, one {You edited {count} item} other {You edited {count} items}}",
+ "briiwg": "Cancel plan",
+ "bstJZP": "Tell me more",
+ "bt00L4": "Web session control",
+ "bt45Zn": "Look up charge",
+ "btXL78": "The team they\u2019re moving to",
+ "btzVqj": "Team members created {num_of_docs} doc when Paper was on. You can export docs or turn Paper back on to restore access.",
+ "bu+08H": "Delete personal Dropbox account",
+ "bu9mSE": "None",
+ "bv7A4+": "Close",
+ "bvSv5n": "Search by ID, name, owner or stormcrow",
+ "bvWqKd": "Team",
+ "bvY807": "Skip this",
+ "bvecjC": "{name} added {single_item_name}",
+ "bwGxpK": "Access type",
+ "bwd9KJ": "Set who can rewind folders",
+ "bwl4D+": "Drop a link \u2013 to a YouTube video, GIF, Pinterest board, Google Map, SoundCloud clip or more \u2013 into your doc, and Paper will know exactly what to do with it.",
+ "byKoLL": "Team member",
+ "bym3DR": "Personalise branding with company logo and messaging",
+ "bymgyp": "Email address",
+ "bz5uvy": "No, thanks",
+ "bzOInI": "{count, plural, one {Your team admin needs to add billing information so your team can keep using {business}} other {Your team admins need to add billing information so your team can keep using {business}}}",
+ "bzX6pC": "{gigabyteSpace}",
+ "bzhp8r": "2500-4999",
+ "bzmHgH": "{count, plural, one {{count} item couldn\u2019t be permanently deleted} other {{count} items couldn\u2019t be permanently deleted}}",
+ "c+7pvZ": "Set a unique password to protect your personal Dropbox account.",
+ "c+XCEa": "in {folder_name}",
+ "c+bJS6": "Dropbox keeps teams on the same page",
+ "c+oBfZ": "Members can only view docs.",
+ "c+zlAl": "multiple file size limit warning",
+ "c/APXo": "Sync Desktop and Documents",
+ "c0mAgf": "\u2022 Moving to a location with faster Internet speeds and trying again",
+ "c19pEr": "There was a problem with your request",
+ "c1LjRL": "There was a problem starring your selection",
+ "c1bGK9": "No charge made to the payment method on file.",
+ "c2J6cp": "Can\u2019t copy 10,000+ files. Try copying sub-folders individually.",
+ "c2gv+i": "Open policy",
+ "c2rsJa": "An error has occurred",
+ "c33ndA": "Does the file contain this information?",
+ "c36Skn": "Drag files and folders here to upload",
+ "c3mJXi": "Dropbox Paper gives you the freedom to custom-build your own templates. Start from scratch or turn an existing doc into a template.",
+ "c4u/Hi": "{team_name} admins won\u2019t be able to update this setting",
+ "c4vsh8": "Add identity provider sign-in URL",
+ "c5OSMC": "Your team and personal accounts are linked. Unlink to remove the link everywhere.",
+ "c5Q+0E": "Never lose a document",
+ "c5TE9d": "You\u2019re changing to yearly billing. Your yearly total will be {recurring_total}, due on {date}. You aren\u2019t being charged at the moment because you\u2019re still on a free trial.",
+ "c5Z/92": "Now let\u2019s continue with your installation",
+ "c62qXF": "Open Dropbox folder",
+ "c69F3c": "Cancel your trial",
+ "c7HEyY": "Activity",
+ "c7J2CV": "ISO",
+ "c7ejff": "Auth token",
+ "c7lcWO": "Preferred method",
+ "c7pOMh": "Exit without saving?",
+ "c7uyt4": "Show less",
+ "c8LIUh": "Space for your team to share and collaborate",
+ "c8Te9P": "Skip quiz and see all plans",
+ "c8hBvx": "Something went wrong. Please try again later.",
+ "c8uRxp": "Teams in my federation",
+ "c8xmjm": "Advanced, billed yearly",
+ "c9FloK": "Frame rate",
+ "c9Q5A3": "Connect your {provider} account to your Dropbox account ({email})?",
+ "c9VDND": "From {date}, we\u2019ll bill this account once a {new_period_noun} for the {plan} plan. This account\u2019s new {new_period_adj} total will be {new_amount}.",
+ "c9YX4N": "Channels",
+ "c9ZK6b": "{count, plural, one {Send invitation} other {Send invitations}}",
+ "cA59H9": "Sync tasks from Dropbox",
+ "cAAO8x": "Folder name",
+ "cAWSP3": "Send large projects to clients safely",
+ "cAXMSv": "Everyone\u2019s default limit",
+ "cAdo2n": "Ignore task",
+ "cApiKm": "%(display_name)s\u2019s content is held. You can release their content on the legal holds page once you\u2019ve added billing info. Otherwise, contact us for help.",
+ "cAy+uX": "Dismiss",
+ "cBBY+o": "Get Smart Sync on desktop",
+ "cBGuNM": "Read the article",
+ "cBNivm": "Rename",
+ "cBVThZ": "{plan_name} is your current plan",
+ "cBZAIc": "That\u2019s it!",
+ "cBwp3t": "Identity provider sign-out URL",
+ "cBx2hi": "Reply\u2026",
+ "cBxIP4": "Grid",
+ "cCXljJ": "{tax_name} ({tax_rate,number,::percent .##})",
+ "cCjbve": "Zoom",
+ "cDIpW4": "Last modified",
+ "cDMvxm": "Couldn't extract files.",
+ "cDmyI0": "Send SMS instead",
+ "cE4Y7s": "Stay on top of projects, schedules and feedback, without wasting time tracking down all the details.",
+ "cFWhoT": "Google Play Store",
+ "cGfb+1": "Sync across unlimited devices",
+ "cGuWuL": "View previous versions",
+ "cH+kfb": "Customise design",
+ "cHEg6H": "Share folder",
+ "cHFUuQ": "Compare all plans",
+ "cHI0C1": "File type",
+ "cHIDn5": "Folders from computer",
+ "cHWnMe": "You can't share until you verify your email address.",
+ "cHykwm": "PPT, PPTX, KEY and more",
+ "cI8hTT": "If you change your mind, you can still find Vault in your Dropbox settings.",
+ "cIE9zv": "Outside {teamname}",
+ "cIP6mb": "Secondary emails",
+ "cISSp1": "Sharing controls.",
+ "cIjfEc": "{name} can view",
+ "cJ55ov": "Collapse {folderName}",
+ "cJJCVe": "Make new files online only.\nChoose if you\u2019re usually online and you worry about filling up your hard drive.",
+ "cJaGRK": "Need Dropbox for work?",
+ "cJnjxB": "Can\u2019t restore \u201c{folder_name}\u201d here because it was moved",
+ "cJojIg": "Name",
+ "cJu72Z": "Nothing has come in yet",
+ "cK/p7/": "Dismiss",
+ "cK1WRa": "Changed {name}'s role.",
+ "cKGZU3": "Deleted policies go here",
+ "cKlOYj": "Enter a new email address for your {team} Dropbox. You\u2019ll need to verify your new email address in order to finish updating your {team} email.",
+ "cL+GSY": "Couldn\u2019t send request. Check your connection.",
+ "cL6pDx": "6 months",
+ "cLd8Pw": "Invite \"{emailAddress}\" via email",
+ "cLlfgc": "Cancel",
+ "cM0udI": "Knowledge base",
+ "cM71jp": "Open your computer and visit {url}.",
+ "cMEXP4": "{count, plural, one {Deleting item\u2026} other {Deleting items\u2026}}",
+ "cMmbfK": "To",
+ "cNBwY5": "Downloading Vault files",
+ "cNOlRK": "Close modal",
+ "cOKRGa": "Verification email sent to {email}.",
+ "cOMGEP": "Search in folder \u201c{folder}\u201d",
+ "cOQnvy": "Total (incl. {tax_rate,number,::percent .##} tax)",
+ "cObCdG": "Next",
+ "cOjk/S": "No holds released yet",
+ "cOo73s": "Happy",
+ "cP/Qat": "Date joined",
+ "cP9Slf": "Background image",
+ "cPi7mo": "Home",
+ "cPrY3T": "{count, plural, one {You moved {count} item out of this folder} other {You moved {count} items out of this folder}}",
+ "cPvfN1": "{count} tasks selected",
+ "cQI9SM": "People we think you work with have joined this team",
+ "cQSoti": "See admins",
+ "cRptek": "Lock editing for this file?",
+ "cSHMdp": "{count, plural, one {You shared this file with {entity} and {count} other} other {You shared this file with {entity} and {count} others}}",
+ "cSWjTH": "Viewing now",
+ "cScX5m": "Downloads disabled.",
+ "cSdFMB": "The following app was found:",
+ "cSnpOO": "Add more team members",
+ "cTLqae": "Daniel Jim\u00e9nez, Head of Mobile Product & Design",
+ "cTRGoc": "Key inserted",
+ "cTSL5R": "Developers",
+ "cUG8mA": "Next slide",
+ "cUVIeh": "Membership pending",
+ "cUVZm6": "A folder overview of personal files being shared with family",
+ "cUgjSa": "Couldn\u2019t update sync default for {folder_name}. Try again.",
+ "cUu2B+": "Hides alert from list",
+ "cVFJYA": "This folder is part of a shared folder:",
+ "cVOhzs": "You no longer have access to {filename}. You can\u2019t make any changes to it, but you can hide it from your view. Hiding folders won\u2019t free up space.",
+ "cVVb31": "Too many attempts. Please try again in a few hours or visit our Help Centre page.",
+ "cVhN0Q": "{count, plural, one {Members of this folder with the link can view this folder. Expires in {count} day.} other {Members of this folder with the link can view this folder. Expires in {count} days.}}",
+ "cW+AjO": "Do you have any discounts for {trademark_business} and Dropbox {enterprise_plan_name}?",
+ "cWN/b2": "Unlink {device}",
+ "cWc+oS": "Switch to {role} Dropbox.",
+ "cWhsC1": "Remove team",
+ "cXsXL6": "{count, plural, one {{used} of {count} licence assigned} other {{used} of {count} licences assigned}}",
+ "cYFOkO": "Go to admin console",
+ "cYQAGY": "Create a new export",
+ "cYeL2x": "PIN and auto-lock to protect one-of-a-kind docs, such as passports",
+ "cYlduc": "Current step is {current_step} of {total_steps}",
+ "cZ2b6l": "View member",
+ "cZ3kun": "Your Dropbox has {current_usage} of files, so you won\u2019t be able to add new files or sync changes until you make space.",
+ "cZ6jlq": "Clear",
+ "cZFPgt": "{count, plural, one {Expires in {count} hour} other {Expires in {count} hours}}",
+ "camCQi": "You will not be charged to renew the subscription. After the gift subscription ends, the recipient will have the option to renew using their own billing details.",
+ "cb9Hpy": "Open in new tab",
+ "cbfrYC": "They will lose access to the customer console and the partner portal.",
+ "cbx30W": "Some people you\u2019ve invited still haven\u2019t joined. Send a reminder or free up the licence for someone else.",
+ "cbxkbw": "\u201cWith Dropbox, educators can collaborate securely with colleagues on any device and platform \u2013 across campus and across the world\u201d.",
+ "ccIqqh": "The member will keep unshared files and folders, and shared folders that they own",
+ "ccTmBg": "Or buy {plan} now",
+ "ccV4fB": "Pin",
+ "cd0u/5": "Name:",
+ "cdAaQR": "My files",
+ "cdTbAt": "View all details",
+ "cdao0h": "To reprint",
+ "cdeUMZ": "By joining {team_name}\u2019s {trademark_business} account, your {dropbox_trial_plan_name} trial will be cancelled automatically.",
+ "ceBnJy": "{space_needed_sentence} To get more space, ask your Dropbox admin ({admin_email}).",
+ "ceiaqL": "Previous notification type",
+ "cfAu87": "Shared by",
+ "cfY9R8": "Set whether members can edit items at the top level of the team space",
+ "cfr8oX": "Invitation accepted",
+ "cfsf89": "Back to about",
+ "cgG058": "See campaign plans, progress and reporting in one place. Draft content, collect edits and feedback, and share campaign results with embedded social posts.",
+ "ch9Ih/": "Please enter a valid security code.",
+ "chNbcV": "Show {num_more} more",
+ "chQq36": "Already in the group",
+ "chmX0p": "Currently a federation admin",
+ "choKeS": "Have a look",
+ "chu7BM": "Put your best work in the best light",
+ "ci/njD": "Invite your team",
+ "ciLB6A": "Billing postcode",
+ "cjpRxl": "Versions",
+ "cjsqqA": "You\u2019ve indicated that there was suspicious activity on your account. {br}Please take a few moments to secure your account.",
+ "ck1w+U": "Add to {cdm_tmf_name} folder",
+ "ckH+zx": "You\u2019re joining with {email}. Contact your admin to make changes.",
+ "ckTMRu": "No members here",
+ "ckieZe": "Standard, billed monthly",
+ "ckojTq": "Store and sync your files with Dropbox",
+ "cktSyi": "@Mary, add your photo to the directory. {emoji}",
+ "clear_filters": "Clear filters",
+ "cmX5fh": "Hold name",
+ "cmbsV5": "Please enter a name that has {max_len} characters or less.",
+ "cmoc7r": "Contact email address",
+ "cmpPHV": "Remember that, after cancelling your {current_plan_name}, your account will drop from {current_plan_space} to {free_quota} of space.",
+ "cmpaQc": "See a preview of how your business name and logo will look when members share files and folders.",
+ "cmvuT4": "Click 'Save' below to turn off classification. We\u2019ll turn off scanning and alerts for sensitive information.",
+ "cnFwfe": "You\u2019ll keep files and folders that you own",
+ "cnIj+Q": "To request a refund, follow these instructions from the Apple support page:",
+ "cnToDS": "No fill colour",
+ "cndbj9": "You\u2019ll lose access to team folders and most team-shared content",
+ "cnihuZ": "About trusted contacts",
+ "cno0Aw": "Help your team get organised by creating folders or uploading files. When you make a folder, the default setting gives everybody access, but you can change that with each folder.",
+ "cnxV88": "Choose a folder from your {team_name} Dropbox",
+ "cnygcw": "You won\u2019t be able to see future changes to this shared folder, and new members of {parent_folder} won\u2019t have access to this folder automatically.",
+ "co6oES": "You created this transfer, so you don\u2019t need to enter a password.",
+ "co8Hxo": "No legal holds yet",
+ "coBv0b": "{count, plural, one {Your free trial plan currently has {count} licence. You\u2019re not being charged at the moment. If you purchase {trademark_business}, your {schedule} total will be {total}.} other {Your free trial plan currently has {count} licences. You\u2019re not being charged at the moment. If you purchase {trademark_business}, your {schedule} total will be {total}.}}",
+ "coNoZH": "{count, plural, one {You moved {count} item out of {src_folder}} other {You moved {count} items out of {src_folder}}}",
+ "coyNNY": "Ticket no. {ticket_id}",
+ "cpZlX1": "Access across devices",
+ "cpdG0j": "Yes. The {trademark_business} base package includes {min_users} users, but you don\u2019t need to use all of the licences straight away. Since licences can be reused, many of our customers reserve extra licences for contractors or clients.",
+ "cpuRML": "Google Sheets",
+ "cq17CA": "{vacuuming_policy_max_days} days of file recovery and versioning",
+ "cqnNGg": "You\u2019ll get an alert if a member deletes an unusually large amount of content.",
+ "craoS6": "Members on your team who use macOS 10.13 or newer might also see a message asking them to allow the system extension on their computers.",
+ "crh0eS": "Loading courses...",
+ "crq098": "Policy name",
+ "cruh0p": "{count, plural, one {{count} item selected} other {{count} items selected}}",
+ "csVbgc": "Access their admin console",
+ "cscT9A": "Add more",
+ "css0+7": "Couldn\u2019t edit the hold. Try editing it again, or get in touch with us so we can help.",
+ "ctNPP6": "Send email",
+ "ctbg/G": "{name} restored a previous version of {item_name}",
+ "cu4sOk": "Edge Legacy",
+ "cuR/QW": "Get {backupPlanName}",
+ "cv7wtw": "Connect to {service_name}",
+ "cvKw36": "Shared with you",
+ "cvS2kS": "We're calling you now...",
+ "cw3HAU": "Image",
+ "cwBef2": "You can\u2019t make changes to your billing period until your plan migrates on {date}.",
+ "cwEFpr": "Collapse",
+ "cwHYgu": "Undoing paste...",
+ "cwPUny": "The link has expired",
+ "cwUCX9": "Folder examples",
+ "cwWK1c": "Comments are disabled on this file.",
+ "cxbIsu": "items",
+ "cxrZ5f": "Anyone with this link and password can edit the file. Downloads disabled.",
+ "cxuwqy": "Add members to groups(optional)",
+ "cy939I": "or ",
+ "cyK8F+": "Members of {parent_name}",
+ "cyZ70Z": "Create new group",
+ "cyz1+l": "Merge into the primary team",
+ "cz5EGW": "Other",
+ "d+WMjv": "Free unlimited file version history",
+ "d+plq6": "You have no activity yet",
+ "d+zp+s": "Contact Dropbox",
+ "d/RzfK": "You moved {single_item_name} from {src_folder} to {dst_folder}",
+ "d/lDff": "{display_name}\u2019s content is currently being held. To convert this member\u2019s account to a Basic account, first you need to remove them from the hold on the legal holds page.",
+ "d/yfsq": "Other details",
+ "d0I3Ij": "You",
+ "d0qDFs": "Request a refund of your Plus or Professional subscription",
+ "d1RJmU": "Transfer to {team_name}",
+ "d2/soY": "Are you sure you want to remove {domain_name} from your verified domains? Any capture settings will be disabled for this domain. To add this domain back in, you\u2019ll need to go through the verification process again.",
+ "d2BniZ": "Choose who can add people to this folder.",
+ "d2ntjL": "Your {schedule} total is {total}.",
+ "d2p/N2": "Looking for {dropbox_enterprise}?",
+ "d2zmmn": "Anyone in your {trademark_business} team with this link can edit the file.",
+ "d38Eo2": "If you'd like to use a different email address for the admin account, feel free to",
+ "d3APGw": "Switch accounts",
+ "d3Ackq": "Multiple screens of different Dropbox interfaces for collaboration, such as adding comments and using to-do lists.",
+ "d3FU8o": "
Using a strong and unique password ensures that only you can access your Dropbox. If you have ever reused your Dropbox password on another service, or you\u2019re worried that your account has been hacked, let\u2019s change your password now.
{pw_policy}Learn more about how to set a strong password.
",
+ "d3Gvwr": "Creating edit link...",
+ "d3fp0/": "Just now",
+ "d3yA4k": "Verification email sent.",
+ "d3yeCH": "Start your free trial",
+ "d4+0L4": "Your new password should be at least four bars:",
+ "d4NBuU": "You can download all of the files in {displayName}\u2019s vault",
+ "d4VlOv": "Download Dropbox to get started",
+ "d4dxMf": "Multi-team admin login",
+ "d5CqmW": "You\u2019ve lost {space} of space and access to features such as the admin console, extended version history and Smart Sync. Add your billing info now and you can pick up where you left off.",
+ "d5TZsg": "Choose how members can use apps such as Google Docs, Sheets and Slides in Dropbox",
+ "d5mWRd": "Licences remaining/total",
+ "d66a8A": "{count, plural, one {{name} and {count} other edited this file} other {{name} and {count} others edited this file}}",
+ "d6EJIc": "Pin",
+ "d6gV6F": "Your new {schedule} total will be {total}.",
+ "d84yLP": "Templates for creative teams",
+ "d8Hwut": "Folder shared",
+ "d8Nac1": "{user_name} is not a member of \u201c{folder_name}\u201d yet. If you don\u2019t share this folder, they won\u2019t be able to view its content",
+ "d8SxFc": "Add attachment",
+ "d8lth0": "Disable downloads",
+ "d9/KKl": "Surname",
+ "d9/SE1": "Cancel",
+ "d9BujG": "Rename",
+ "d9e9Pm": "Change my billing currency",
+ "d9l7ze": "Add files",
+ "d9pOTC": "Once people start doing things with this file, you\u2019ll see their activity here.",
+ "dA+q8i": "Here are a few people you already work with who could help you get started",
+ "dAC30S": "Your team can\u2019t merge while you\u2019re on a trial",
+ "dAiKVL": "Add a work Dropbox to keep your personal and work files separate.",
+ "dB+YMZ": "Confirm",
+ "dBUsOH": "While you\u2019re using Dropbox, what you do will be recorded and could be reviewed. More importantly, there could be criminal and civil penalties if you use anything in an unauthorised way. By continuing, you\u2019re agreeing to these conditions.",
+ "dBZbCY": "Only you can make changes to {path} while editing is locked. Anyone else with access to the file can still view it.",
+ "dBd/+Q": "{count, plural, one {Members of the folder with this link can view this folder. Expires in {count} day. Downloads disabled.} other {Members of the folder with this link can view this folder. Expires in {count} days. Downloads disabled.}}",
+ "dBf+k2": "Info in this report",
+ "dBf5YB": "If your Dropbox account isn\u2019t connected to your computer, you may not be able to use this feature after your account has been downgraded.",
+ "dBhsDd": "Store your PDFs and signed documents in one, secure place.",
+ "dBjWdl": "You can edit PDFs and add e-signatures with airSlate PDFFiller, which offers team-based workflows and PDF editing tools. New users get 10 free PDF workflows.",
+ "dBuge5": "These members won\u2019t show up in the team member list or in suggestions.",
+ "dC654w": "You\u2019ve cancelled your change.",
+ "dC6BIH": "Advanced server integration",
+ "dCUFWV": "Accounting/finance",
+ "dDEpMo": "Enterprise admin",
+ "dDHqbP": "Redeem a licence key",
+ "dDgY49": "Members of the containing shared folder with the link can view this file. Downloads disabled.",
+ "dDjF8b": "{billing_cycle} \u2022 All the space you need",
+ "dDjPWY": "You\u2019re about to leave the {team_name} Dropbox team",
+ "dDnm8S": "Branded sharing",
+ "dEHwyG": "Share feedback",
+ "dEJ+SP": "It looks as though this team size has already been reached",
+ "dEKfa4": "Your download may have some issues",
+ "dEtaMT": "Check the device and browser",
+ "dF0ZGK": "monthly",
+ "dFFA0Z": "An error occurred while trying to load your folder.",
+ "dFTyxF": "Reset two-step authentication icon",
+ "dFfOYv": "Focus on the work you love \u2013 let Dropbox help with the rest",
+ "dFnsUz": "Our team is hard at work getting this feature ready for your vault, and we can alert you as soon as it's ready.",
+ "dFs4Fw": "Your trial will end in four days. Your account will be downgraded, and your team will lose the additional space it\u2019s been using, file recovery and advanced features such as Smart Sync.{br}{br}Add your billing info now so your plan will transition without interruption on {trial_end}.",
+ "dGC+Wl": "Account transfer",
+ "dH44Uq": "Only people that have been invited have access to new folders",
+ "dH4q5d": "You invited: {emails}. We\u2019ll notify you when they join.",
+ "dHI2/s": "Make sure the file is in CSV format and UTF-8 encoded.",
+ "dHMDsc": "24/7",
+ "dHSq4d": "Create your own",
+ "dI/OK5": "You deleted {item_name}",
+ "dI6NmA": "Please ensure that you\u2019ve verified your email and try again.",
+ "dIg6Qm": "Done",
+ "dIi5ZR": "Your payment method has been pre-configured through your bank.",
+ "dJ89Tu": "We\u2019ll let {host_team_name} know that you signed in. Any changes you make while signed in will be shown on their activity page.",
+ "dJDZvm": "I understand that disbanding the team is permanent and members may retain team data. The {team_name} Dropbox account will no longer exist.",
+ "dJhklt": "See how different roles find value in Paper",
+ "dJmtfw": "Create",
+ "dJqPIb": "You won\u2019t get any more alerts.",
+ "dK6rrs": "Email or name",
+ "dKJZbR": "You\u2019re changing to yearly billing. From {date}, your yearly total will be {recurring_total}.",
+ "dKcreY": "You\u2019ll be charged {prorated_price} for the new billing schedule and plan, pro rata for the current billing period. {scheduled}",
+ "dLJA94": "File size",
+ "dLV1OZ": "There are no folders under this policy",
+ "dLWWVm": "Lets them view and comment, but not edit.",
+ "dLj8Du": "You\u2019ll create a new, personal Dropbox account for your existing files and Paper docs.",
+ "dLsGph": "Showing results for: {query_string}",
+ "dM1N47": "Turn on",
+ "dMEIgP": "Status",
+ "dMKLu2": "Upload to\u2026",
+ "dMVK4W": "{count, plural, one {{count} member is pending} other {{count} members are pending}}",
+ "dNH/l9": "{count, plural, one {Delete {count} item?} other {Delete {count} items?}}",
+ "dNJM73": "Try eSignatures for your team",
+ "dNLFbp": "You won\u2019t get an alert if a team member shares malware.",
+ "dNfvWF": "Read-only team shared folder",
+ "dNlB0C": "{count} PDF. {size}",
+ "dNlIBC": "There was a problem completing this request.",
+ "dNnz2C": "Go to folder",
+ "dOD+FR": "Severity",
+ "dOWhZj": "Company name (optional)",
+ "dOZfr3": "Give other admin roles the ability to manage team content",
+ "dOpflM": "Did this solve your problem?",
+ "dPVibn": "Add sign-in URL",
+ "dPp0A1": "Your name",
+ "dPqldv": "Productivity and sharing tools",
+ "dQ+g2n": "Cookies are required to view this Dropbox content.",
+ "dQ7MoR": "Only people invited",
+ "dQEb4E": "Copy link",
+ "dQHWMY": "Device icon",
+ "dQMRoQ": "Confirm password to continue",
+ "dQfBpL": "Off, red-eye reduction",
+ "dQjwr2": "Add team account",
+ "dQzOmZ": "Everyone in {team_name}",
+ "dR0QoK": "Sign in with a backup phone",
+ "dRHrKK": "Allow specific members to use Paper.",
+ "dRhmBa": "(opens a new window)",
+ "dSRYcI": "{count, plural, one {You moved {count} item from {src_folder} to {dst_folder}} other {You moved {count} items from {src_folder} to {dst_folder}}}",
+ "dSSmHe": "Edit photos and images",
+ "dSUqxL": "Your Dropbox {plan_name} plan will be renewed on {date}.",
+ "dShAa9": "{count, plural, one {Anyone in the {trademark_business} team with this link can view the file. Expires in {count} day.} other {Anyone in the {trademark_business} team with this link can view the file. Expires in {count} days.}}",
+ "dSiOzP": "Are you sure you want to delete your account photo?",
+ "dSxBG5": "{name} restored {item_name}",
+ "dT11GP": "Sign in to account",
+ "dT9XUg": "Whether your team is going remote for the first time or you\u2019re at a fully distributed start-up, Dropbox makes it easy for work to happen in virtually any way. Here\u2019s how Dropbox can help you keep things moving and stay connected while working remotely.",
+ "dTMxFS": "{storage_used} of {quota} used",
+ "dTRuPR": "Seventh highest activity",
+ "dTig7r": "Cancel",
+ "dToisu": "Notifications",
+ "dUFkhQ": "Configuration",
+ "dVA+xI": "Add their name (required)",
+ "dVIuz1": "Certificate: {cert_name}",
+ "dVc1qR": "You\u2019ve changed your billing period.",
+ "dVxcsW": "Create and view groups",
+ "dW+oGJ": "Domain insights",
+ "dW5h7w": "With Smart Sync, online-only files save hard drive space, and you can browse them from your desktop. Local files are downloaded and available offline.",
+ "dWbczd": "Join the {team_name} account",
+ "dWejC+": "Choose how long it\u2019ll work for",
+ "dWic9A": "We\u2019re sorry to see all of you go.",
+ "dWsBN6": "If you have more than {free_space} of stuff in your Dropbox, you won\u2019t be able to do the following:",
+ "dXC+5O": "Go to Dropbox Help",
+ "dXSWxG": "Set up Smart Sync",
+ "dXibLv": "Saving PDF...",
+ "dXlDBy": "Did you know you can cancel your account instantly without the need for an agent to assist you?\n To cancel your subscription, sign in to your Dropbox account and click\n Cancel your Plus or Professional subscription\n to be taken directly to your cancellation page.",
+ "dXombn": "Joining...",
+ "dXq7+w": "Try Dropbox Transfer to send large files to other people.",
+ "dXzZP8": "Vault is designed for files you want to keep extra secure, while ensuring your loved ones can find them",
+ "dYFQqq": "For families",
+ "dYLLdU": "Create a folder",
+ "dYMwXa": "Anyone in your Dropbox team with this link can view the file. Downloads disabled.",
+ "dYOxnH": "One safe place for important files",
+ "dYs+4Q": "New team folder",
+ "dZ/00U": "Suggested member",
+ "dZ0owt": "Help Centre",
+ "dZPTgL": "Edit and eSign",
+ "dZb9AS": "120 days of file recovery",
+ "dZojBJ": "You\u2019re changing to monthly billing. Your monthly total will be {recurring_total}, due on {date}. You aren\u2019t being charged at the moment because you\u2019re still on a free trial.",
+ "da2lvf": "Delete",
+ "da96WJ": "Find out more about {trademark_business}",
+ "daBOck": "Who can be invited?",
+ "dawSyF": "Free",
+ "dbFErb": "{vacuumming_policy_max_days} days of file recovery",
+ "dbYCaa": "{folder_name} \u2013 Dropbox",
+ "dbZjQ1": "Sign in to team",
+ "dbm/P6": "Add them to your plan?",
+ "dbv/4N": "Only you can access this folder",
+ "dbz79e": "Member folder",
+ "dc0nw3": "Close",
+ "dca+uK": "{count, plural, one {{count} member} other {{count} members}}",
+ "dcywUW": "Search results - Dropbox",
+ "dd/i5u": "{count, plural, one {You shared {count} item} other {You shared {count} items}}",
+ "ddIxEC": "Ask {creator_name} for a new link",
+ "ddnW2K": "Give feedback",
+ "ddwrve": "Files added to this folder are automatically saved as PDFs.",
+ "de8/AJ": "Fantastic! Click here to go back to the Dropbox Support home page.",
+ "deJ8cD": "Undoing renaming...",
+ "deMB/m": "Anyone with this link and password can view the file.",
+ "deNqir": "Not available to invite",
+ "dea6pe": "No assignments",
+ "deat2h": "Allow colleagues to send you suggestions of people to invite.",
+ "dev6I3": "Share invitation link",
+ "deyLLm": "Here are some Dropbox Paper templates that we think would be very helpful for your role.",
+ "dfAYxW": "Delete this transfer?",
+ "dfUnGB": "Free",
+ "dfbYKT": "Improve your password",
+ "dgMd35": "Thursday",
+ "dgVLQh": "Unlimited file version history for {evh_price} per {billing_period}",
+ "dhF0XK": "Default permission for existing and new apps listed in App Centre",
+ "dhPbTN": "You removed {entity} from this file",
+ "dhdo+T": "(current plan)",
+ "dhfp7u": "Try Smart Sync free",
+ "di7JHZ": "not syncing",
+ "diLrWq": "Yearly",
+ "diOSTv": "Please log in as {email}{br}to cancel your plan.",
+ "dj0K2Z": "Before you can accept this invitation, you will need to cancel your existing mobile plan.",
+ "djBo1i": "Whilst this step is optional, we encourage you to set up a backup phone number in case you lose your mobile phone or are otherwise unable to receive your security code.",
+ "djGxQa": "Only me",
+ "djKM+0": "Who this link will work for",
+ "djcOXo": "for {NewUserGracePeriod} days",
+ "djgnB1": "Streamline your working day with premium productivity features and {terabyteSpace} ({gigabyteSpace}) of space.",
+ "djiuxN": "Experiencing other issues? View the Help Centre or Dropbox Community, or feel free to contact us again",
+ "dkDAAI": "{member_name} can still view this file",
+ "dkI8Ly": "You renamed {from_name} to {item_name}",
+ "dkJoht": "View all activity",
+ "dkMORu": "Cancellations and refunds",
+ "dljqTf": "Invite and buy",
+ "dlmjiM": "{count, plural, one {{newCost}/year for {count} user ({currentPlan} is {currentCost}/year for 1 user)} other {{newCost}/year for up to {count} users ({currentPlan} is {currentCost}/year for 1 user)}}",
+ "dm25xu": "Members of the file with this link and password can view. Downloads disabled.",
+ "dnYx42": "Only specific types",
+ "dnfirN": "We\u2019ll alert any members if they go over the limit, but their syncing won\u2019t stop.",
+ "dnty4U": "Your email address has now been verified",
+ "doN8b3": "Expiry",
+ "doezvt": "Join organisation",
+ "dooCWY": "You can only share a link for viewing for this folder.",
+ "dpGoXi": "We've let {teamName} know you'd like to join the team. You'll get access as soon as they approve your request.",
+ "dpTWyj": "Invite more people",
+ "dpUA0F": "Link restrictions",
+ "dp_intl_add_meeting_v2": "New meeting",
+ "dp_intl_add_participant": "Add",
+ "dp_intl_auto_recording_title_v3": "Record this meeting to Zoom cloud",
+ "dp_intl_change_pmi_setting_v2": "View Zoom user settings",
+ "dp_intl_clear": "Clear",
+ "dp_intl_connect_to_zoom_v2": "Connect to Zoom",
+ "dp_intl_create_meeting_v2": "Start meeting",
+ "dp_intl_default_meeting_topic": "{displayName}\u2019s meeting",
+ "dp_intl_done": "Done",
+ "dp_intl_failed_to_create_meeting_v2": "Something went wrong. Please try again later.",
+ "dp_intl_failed_to_create_meeting_with_mismatch_recording_type": "Could not automatically record to Zoom cloud.",
+ "dp_intl_file_name_visibility_warning": "The file name will be visible to all participants.",
+ "dp_intl_host_v2": "{name} (host)",
+ "dp_intl_invite_participants_v2": "Invite people to meet",
+ "dp_intl_invite_to_line": "To:",
+ "dp_intl_join_zoom_meeting_v2": "Join meeting",
+ "dp_intl_learn_more": "Learn more",
+ "dp_intl_meeting_activity_error_content_v2": "Couldn\u2019t show meeting activity.",
+ "dp_intl_meeting_creation_time_v2": "Created {timestamp}",
+ "dp_intl_meeting_id": "Meeting ID",
+ "dp_intl_meeting_link_v2": "Meeting link",
+ "dp_intl_meeting_list_see_all_v2": "Show all",
+ "dp_intl_meeting_list_see_less_v2": "Show less",
+ "dp_intl_number_of_participants_v2": "{number, plural, one {{number,number} invited participant } other {{number,number} invited participants }}",
+ "dp_intl_play_recording_v2": "View recording",
+ "dp_intl_pmi_setting_on_error_content_v2": "Can\u2019t start meeting from Dropbox while 'Use Personal Meeting ID (PMI) when starting an instant meeting' is enabled in your Zoom user settings.",
+ "dp_intl_pmi_setting_on_error_title": "Setting change required.",
+ "dp_intl_related_meeting_v2": "Meeting activity",
+ "dp_intl_see_all_v2": "Show all",
+ "dp_intl_see_less_v2": "Show less",
+ "dp_intl_select_all": "Select all",
+ "dp_intl_start_zoom_meeting_v2": "Start meeting",
+ "dp_intl_zoom_meeting_details_v2": "Meeting details",
+ "dpb+Cw": "By rejecting this trusted team request, you will not gain access to this team\u2018s admin console.",
+ "dpfspe": "Connected",
+ "dqH4cc": "{hellosignPlanName}",
+ "dqfg+M": "{count, plural, one {Message cannot be longer than {count} character} other {Message cannot be longer than {count} characters}}",
+ "dqj2CL": "{fileExtension} file",
+ "dqvw8h": "(starts on {start_date})",
+ "dr3h+/": "Your licences have been removed",
+ "drcrxe": "Rename",
+ "drjl3I": "Click Chat now under your preferred language to chat live with Dropbox Support",
+ "ds25UH": "Move",
+ "dsHtkw": "Last week",
+ "dsL7uu": "Please verify your email address to use Spaces",
+ "dsra26": "Have you removed the malicious software from the infected computer?",
+ "dtP/qp": "How we integrate",
+ "dtdAAV": "Add domain",
+ "dte+6z": "This folder has been moved",
+ "dtx6NP": "Pick a time",
+ "du7HYM": "Recent",
+ "dvmxl+": "{display_name} and 1 other",
+ "dwDABw": "Fedora 21 or higher (.rpm)",
+ "dwR2JT": "Email link",
+ "dwZNUm": "Phone",
+ "dx4F8n": "Disconnected",
+ "dxaOCE": "Sorry, an error occurred. Please try again.",
+ "dxsbp5": "In your same email domain",
+ "dxz0es": "Billed now",
+ "dxzcDt": "Allowed for 7 days",
+ "dyCqAa": "Team members with this link can edit the file.",
+ "dyNObO": "Start by downloading Dropbox",
+ "dyb2q0": "Alert unacknowledged.",
+ "dypLy2": "Capture",
+ "dytYFt": "VAT",
+ "dz/9Bc": "Create summary",
+ "dz7LjR": "Restored \u2018{folder_name}\u2019",
+ "e+Pw+r": "Add files",
+ "e+WAgS": "Launch Zoom App",
+ "e+clgj": "Current version",
+ "e+rwVi": "Cancel change",
+ "e+yoGc": "{count, plural, =0 {{subtitleText}} one {{subtitleText} and {count} more} other {{subtitleText} and {count} more}}",
+ "e/Mlru": "More about two-step verification",
+ "e/thE6": "Weekly schedule",
+ "e0D9qu": "Frequently asked questions",
+ "e0UsOS": "Size",
+ "e1JgO7": "What would you like to do?",
+ "e1sozn": "How do I merge my existing Dropbox account with a {trademark_family} plan?",
+ "e24Vbm": "Loading customer teams.",
+ "e2OkRt": "Cancellations and refunds",
+ "e2x8vE": "Change to {familyPlan} plan",
+ "e3KIPg": "This week",
+ "e3QD4M": "Unlimited version history",
+ "e3V4bo": "Rewind this folder",
+ "e3exs3": "Files with sensitive info",
+ "e3xGv0": "You\u2019re about to unlink this session on {member_name}\u2019s {device_model}. It will immediately stop syncing this specific session with their {team_name} Dropbox on this device.",
+ "e42AtC": "Bring Trello and Dropbox together",
+ "e4uEYo": "Merge {team_name} into your team?",
+ "e51IKd": "More about editing a hold",
+ "e5ZybC": "Getting work done is so much easier with {dropboxProfessional}",
+ "e5qq1a": "Successfully saved to Dropbox",
+ "e5y3VS": "Doc title",
+ "e6/qJD": "{count, plural, one {{count} year} other {{count} years}}",
+ "e63AuJ": "Delete vault",
+ "e6EJBF": "View or edit",
+ "e6NWA0": "Password",
+ "e6Shp6": "Searching contacts\u2026",
+ "e6TPkk": "Additional settings",
+ "e6TWph": "When you connect Paper to your calendar, it makes it easy to find the docs you need for each meeting. Don\u2019t have a meeting agenda yet? Use Paper\u2019s smart templates to create one.",
+ "e6av2s": "Asana integration",
+ "e7Xoco": "{count, plural, one {View activity for {count} domain} other {View activity for all {count} domains}}",
+ "e7msuz": "{year}-{month}-{day} \u2013 Error log \u2013 Dropbox member import",
+ "e7wdPj": "Individual Plus accounts and a place for family sharing to help keep your loved ones organised and connected.",
+ "e7zF+J": "30 minutes",
+ "e8WrLw": "File, {alt}",
+ "e8eCgM": "If your key has a button or gold disk, tap it now. Learn more",
+ "e8tz6C": "Manage requests to add members to {team_name}.",
+ "e90L3V": "Cancel",
+ "e9V6l8": "Everyone in {team_name} can edit",
+ "e9fyCS": "Suggested members",
+ "e9l+ET": "Visa/Mastercard",
+ "e9uLbL": "PowerPoint presentation",
+ "eAGPII": "A shared link with your current sharing settings will be created for this item.",
+ "eAMkxw": "Email",
+ "eAQR4s": "Expected response time:",
+ "eApg1l": "Select an area to comment on",
+ "eBieP0": "Moved from",
+ "eC0JeN": "Unable to save to your Dropbox because you are out of space",
+ "eC3oZ9": "View folder",
+ "eC46rW": "Take the guesswork out of engagement. Automatically keep track of who views, downloads and comments on the work you share, so you can be better prepared when you follow up.",
+ "eCAxBm": "{remainingLicenses, plural, one {{numMembers} members \u2022 {remainingLicenses,number} licence available} other {{numMembers} members \u2022 {remainingLicenses,number} licences available}}",
+ "eCFw0p": "can view",
+ "eCI0Gn": "This lets people add comments to any company files they have permission to view.",
+ "eCOEaT": "Edit",
+ "eCS6mP": "Remove",
+ "eD6onG": "Pick a day to get started",
+ "eDca83": "There was an error sending your link",
+ "eDoTwh": "There's been an error. Try refreshing the page.",
+ "eEF52h": "Build your team",
+ "eEGEHA": "Continue",
+ "eET7px": "{name} rolled back {single_item_name} in {folder_path}",
+ "eEcDwI": "Cannot invite them with that email address",
+ "eEkf3Q": "Easy-to-use team management and collaboration tools to help growing teams stay organised.",
+ "eF/m4t": "Enable Paper for selected members",
+ "eF4sif": "Paste",
+ "eFChDc": "Full team name",
+ "eFHzYY": "Please check your connection and try again later.",
+ "eFf3VY": "Need help migrating files to Dropbox?",
+ "eG+5/v": "Security details such as permissions",
+ "eG5Ygt": "Open sidebar",
+ "eGUZxs": "Keep your family connected",
+ "eGc5Hn": "{count, plural, one {And {count} more file.} other {And {count} more files.}}",
+ "eGi4N9": "You are not allowed to join this family.",
+ "eGpOpC": "Secondary email {email} successfully made primary.",
+ "eH5rkS": "Smart Sync helps you access files without using up any space on your computer, so you always have the right file at your fingertips.",
+ "eH7zsu": "Rewind {folder}",
+ "eHFLV0": "Anyone with access to {shared_folder_name} can access this folder",
+ "eHLIaO": "Ticket will close in {remainingTime}",
+ "eHPT/o": "Type",
+ "eHPpzH": "Try for free",
+ "eHVNIL": "These browsers are currently signed in to your personal Dropbox account.",
+ "eHWzWM": "Centralise information to help new employees get started during their first few days.",
+ "eHYCJX": "{value, plural, one {1 folder shared with your team} other {{value} folders shared with your team}}",
+ "eHebre": "Sharing",
+ "eHmAQm": "SMS ({phone_no})",
+ "eHqhYX": "Error:",
+ "eHvsgQ": "Update your billing info",
+ "eHyiq2": "{count, plural, one {Your plan will now have {count} licence. Your new monthly total will be {total_amount_with_tax_rate_str} after your trial ends.} other {Your plan will now have {count} licences. Your new monthly total will be {total_amount_with_tax_rate_str} after your trial ends.}}",
+ "eI8jCF": "This change may affect people who had view access in the past.",
+ "eIIEty": "Something went wrong while uploading this file. There was a server error during the upload request.",
+ "eIRv+Q": "Link copied to clipboard",
+ "eIgJG7": "Download {dropbox_passwords} to get started",
+ "eIzkSh": "Something's not working. Try downloading again.",
+ "eJBiUX": "Launch plan",
+ "eJFP07": "Video production plan \u2192",
+ "eJJU73": "Notes",
+ "eJs/IE": "This folder will be saved instantly to your {team_name} Dropbox and downloaded to all of the computers linked to your {team_name} account.",
+ "eK29PV": "Easily recover and restore older versions of files",
+ "eKT9cm": "Your one-year subscription will start on {subscription_start_date}.",
+ "eKhova": "Click 'Upload' to add files or folders",
+ "eL3pRy": "Submit",
+ "eLTSqr": "Turn user insights into team action items. Link prototypes, synthesise key findings with next steps, and share with stakeholders so everyone can see.",
+ "eLfJ9t": "Choose",
+ "eM3+4n": "Submitter email address",
+ "eMQy+T": "Applying the policy can take a while, depending on the number of files. We\u2019ll email you when the policy has been applied.",
+ "eMUQ3U": "Extremely dissatisfied",
+ "eMX+QP": "Passwords add an extra layer of security when sharing with a link.",
+ "eMZgix": "
Automatically back up your computer\u2019s Desktop, Documents and more with the Dropbox app.
If you already have it, just go to your app preferences and click Backups.
",
+ "eMv46x": "Recipients",
+ "eN3/4H": "Extract to my member folder",
+ "eNA4By": "Bear in mind that members will be able to rewind any folders they can edit, including team folders.",
+ "eNiId9": "{count, plural, one {Are you sure you want to restore this file?} other {Are you sure you want to restore these {count} files?}}",
+ "eNrASY": "Version history and file recovery automatically protect your work",
+ "eNtQ1D": "On your computer, double-click the installer.",
+ "eOGx8e": "{count, plural, one {Try free for {count} day} other {Try free for {count} days}}",
+ "eORqx2": "Updating can take a while, but we\u2019ll hold onto files straight away. You can\u2019t edit, export or create a summary until the update has finished.",
+ "eOogHn": "{trademark_plus} trial {ios}",
+ "eOzhu8": "{count, plural, one {Restore {count} file} other {Restore {count} files}}",
+ "eP7hQ1": "Ignored",
+ "eP8MBB": "Vault",
+ "eQ83WQ": "Add password",
+ "eQMMZM": "Add your phone number and we'll send you a download link.",
+ "eQQPwj": "Email",
+ "eQmdmB": "Enter personal email address",
+ "eQz/Mi": "Start date (UTC):",
+ "eR6sDU": "Get many of the features available in {trademark_professional}, plus all the space you need and a shared workspace to work better together. Best for teams of 3 or more people.",
+ "eSqPLW": "Change summary",
+ "eSxCUm": "Can't show Dropbox content",
+ "eSyBpM": "Configure",
+ "eTGMdi": "Click the installer that just downloaded to continue.",
+ "eTJ9ln": "Loading...",
+ "eTrJTC": "{count, plural, one {Anyone in your Dropbox team with this link can view the file. Expires in {count} day.} other {Anyone in your Dropbox team with this link can view the file. Expires in {count} days.}}",
+ "eTs2Vl": "Copy link code",
+ "eTtbKw": "Remove my access",
+ "eU2b7o": "Something went wrong. Please reload the page.",
+ "eU7Han": "I\u2019m having trouble signing in to my Dropbox account",
+ "eUKqRX": "This invitation link has expired or is invalid. Please ask the sender to re-send it.",
+ "eUP/6i": "Tips for using Dropbox",
+ "eUaWpy": "Suspended",
+ "eUpi8/": "Save it for later in Dropbox",
+ "eUwE8i": "Can I upgrade my existing Dropbox Basic or {trademark_plus} account? How does migration work?",
+ "eUzI6O": "Does not include any subdomains",
+ "eVWndj": "Present in Zoom from Dropbox",
+ "eW+u5u": "Dates",
+ "eW5qss": "Members of the folder with this link can view the folder. Downloads disabled.",
+ "eWHzIE": "{numMonths, plural, one {Get {discount,number,::percent .##} off {numMonths,number} month of {dropbox_plan} when billed yearly*. This offer expires on {expiration_date}.} other {Get {discount,number,::percent .##} off {numMonths,number} months of {dropbox_plan} when billed yearly*. This offer expires on {expiration_date}.}}",
+ "eWQ8qY": "Our business didn\u2019t need all of the licences we had",
+ "eWtTz0": "This HIPAA BAA applies to the extent the Customer is acting as a Covered Entity or Business Associate, to create, receive, maintain or transmit PHI and where Dropbox, as a result, is deemed under HIPAA to be acting as a Business Associate of the Customer.",
+ "eWxZ5f": "How satisfied are you with Dropbox Markup?",
+ "eXHUfg": "Connected to Zoom",
+ "eXL9sz": "Create new folder",
+ "eXfOqa": "Sundance Institute",
+ "eXu7y4": "Loading more information",
+ "eXwZkw": "{count, plural, one {You deleted {count} item} other {You deleted {count} items}}",
+ "eYPdJP": "Create summary",
+ "eYVArA": "Choose your plan",
+ "eYdhlC": "Late uploads",
+ "eYvByc": "Deliver a copy",
+ "eZ59yO": "Create account",
+ "eZ93+c": "Cell formatting doesn't look right",
+ "eZAuK1": "VAT number (optional)",
+ "eZHwZH": "Could not get settings.",
+ "eZSCaX": "Find out more about partner integrations",
+ "eaAi7x": "Do you have a question?",
+ "eaJeP5": "{count, plural, one {{count}+ members} other {{count}+ members}}",
+ "eagTbM": "Yearly savings ({discount,number,::percent})",
+ "ebP+gM": "Team and shared",
+ "ebVB4L": "Add your own...",
+ "ebWQ7c": "Unsuspended {name}",
+ "ebkvMX": "Can\u2019t save because your account is full. Upgrade to get more space.",
+ "ebmd4b": "Spacing between lines",
+ "ecCdhF": "Please enable third-party cookies to use the Dropbox website. Learn more",
+ "ecLhIo": "Return or Destruction of PHI.",
+ "ecLhWr": "Email",
+ "ed2/lg": "Please verify your email address",
+ "ed5DT4": "This folder or empty file could not be uploaded because of browser limitations. Try zipping the content before uploading it, or use the Dropbox desktop client to sync it.",
+ "edHhMF": "Partner Admin",
+ "edHs1X": "We can't find this file any more. Try checking activity or folder history to see what happened.",
+ "edU3oM": "You can still view your files on dropbox.com or on your desktop. New changes stopped syncing on {locked_at}.",
+ "edehVw": "Device name",
+ "eedTa1": "Sign in to their admin console",
+ "eedxQ3": "\u2013",
+ "efJAgH": "By company size",
+ "efT3qC": "Remove",
+ "efUvgd": "View invoices and receipts for all payments made on your Dropbox account.",
+ "efiKm7": "Domain name",
+ "eg4K5o": "",
+ "egOoTQ": "Only people with {teamBusinessDomains} email can be invited",
+ "egUTWQ": "Cancel",
+ "egXqGm": "Your photo should be no more than 10 MB in size.",
+ "egrLWe": "You have a folder that you can organise however you like. You can share files from here, or keep stuff here that you don\u2019t want to share with everyone. Everyone in your team has a folder like this.",
+ "egsgAR": "Member access",
+ "eh8gCC": "Links expire for safety, but the person who shared the link might be able to add time if you need it.",
+ "ehBhap": "You can\u2019t add members to a team folder. Contact your team admin.",
+ "ehFjQx": "Need a plan for work?",
+ "ehNGlB": "Lets members create custom watermarks to add to files such as images and PDFs.",
+ "ehdbDz": "An error occurred at our end. Please try again.",
+ "ehm23q": "No options available",
+ "ehmUmZ": "Company",
+ "ehtr9f": "Invited but haven\u2019t joined",
+ "ej/CxO": "Editing for this file is locked",
+ "ej4A0X": "Managed by {owners}",
+ "ejPyuW": "Limit raised to {user_limit} users",
+ "ejbidA": "The {card_name} card with this file attached was archived",
+ "ejvlyg": "You\u2019re upgrading to a {trademark_business} {plan} plan. Starting from {date}, your new {schedule} total will be {recurring_total}. Your plan will be renewed on {renewal_date}.",
+ "ekih2T": "To:",
+ "el0uSj": "{count, plural, one {Your account must have at least {count} licence, because you have {count} team member.} other {Your account must have at least {count} licences, because you have {count} team members.}}",
+ "el8k+J": "No results found",
+ "elWdwM": "Keep everyone organised",
+ "eltKJl": "Keep collaborating with your team",
+ "emiHs/": "Copy link",
+ "emsobI": "Are you sure you want to delete {filename} from your team member folder?",
+ "en3ri/": "Copy completed.",
+ "enHZxv": "Legal link",
+ "enJpoV": "Enter a new password for your {email} account.",
+ "enyAlE": "The person who shared this link has hit their daily limit for traffic or downloads. Learn more",
+ "eoDtlz": "Please enter your email and password to sign in.",
+ "eoDttE": "{count, plural, one {{file_count} file} other {{file_count} files}}",
+ "eoVyXb": "Exported docs on the way",
+ "eonxEJ": "After inserting, tap your key if it has a button or gold disk.",
+ "eorQpf": "Let\u2019s get started! {br} Add the files you\u2019re selling.",
+ "epMvRP": "{tax_name} ({tax_percentage,number,::percent .##})",
+ "epmnB3": "Find out more.",
+ "eqIKp0": "Only one team can verify a domain. If you believe this is a mistake, please contact support.",
+ "eqd8sg": "The Dropbox desktop app can\u2019t open from your phone. Try again from your computer.",
+ "eqhZ/t": "Emergency incident action plan",
+ "eqyScK": "You unshared {single_item_name} in {folder_path}",
+ "eqzXgU": "The owner of {file_name} is a member of another team.",
+ "erVlBC": "Select file in next row (hold Shift to select range)",
+ "erm7J0": "I @mentioned you in the {folder_name} folder. Take a look.",
+ "esqj6U": "This file was shared with you.",
+ "et7L8e": "Choose background",
+ "et8YKA": "We noticed something suspicious, such as an unusual amount of downloads. If you want, you can create a new link and share it again. Why links are blocked",
+ "etQgGC": "To give this member access to their account again, reactivate their account after restoring it.",
+ "etreIX": "Send large files to anyone easily and securely",
+ "euQhL0": "Because they\u2019re using a domain that matches yours and can access some team content",
+ "euRey+": "Cancel",
+ "eufquI": "Remote wipe Dropbox from a team member\u2019s lost or stolen device",
+ "euxNFl": "{count, plural, one {Members of the containing shared folder with this link can view this file. Expires in {count} day. Downloads disabled.} other {Members of the containing shared folder with this link can view this file. Expires in {count} days. Downloads disabled.}}",
+ "ewZ2I2": "Change billing period",
+ "ewbeK0": "You haven\u2019t imported contacts from any mobile devices.",
+ "ewbi6Z": "Get app",
+ "ewcfI5": "Unlimited API access to security platform partners",
+ "ewgyb+": "Notifications menu",
+ "exAiKe": "{min_licenses} or more people",
+ "eyC1rP": "Close",
+ "eyimS0": "Please choose at least one contact.",
+ "eyx/FG": "Approve",
+ "ezcmqF": "Dropbox Transfer lets you easily and securely hand off large files or collections of files, and confirm delivery.",
+ "ezq8zU": "Alert",
+ "f+Agk8": "Invite members",
+ "f+D0SV": "Bottom right",
+ "f+E8ZC": "Files shared directly outside your team, who has access and more.{br}{br}The report doesn\u2019t include files that were shared indirectly via a shared folder.",
+ "f+OTvk": "Add more from Dropbox",
+ "f+Usnt": "Deny",
+ "f+a3JG": "You don\u2019t have permission to open the folder \u201c{folder_name}\u201d.",
+ "f/59vv": "Remove partner admin",
+ "f/DnCL": "If you\u2019re locked out of your account, you can sign in by entering one of your emergency backup codes.",
+ "f/E3En": "For individuals",
+ "f/MgHq": " (opens a modal dialogue)",
+ "f/VEOR": "New team",
+ "f09DMy": "\u200b\u200bA hand-drawn illustration depicts a white cartoon cat holding a colourful broken umbrella in the rain. The cat appears sad to be getting wet.",
+ "f0CDHA": "Status",
+ "f0j3i9": "Store all versions of your documents in one, secure place.",
+ "f0osid": "Envelope",
+ "f1QT8z": "You don\u2019t have access to this content. You\u2019re signed in as {user_email} and {user2_email}.",
+ "f1bH6B": "Chrome extension",
+ "f20ZVk": "Talk to Enterprise Support",
+ "f2bmoP": "Take a moment to review everything you\u2019ve done to get your team up and running.",
+ "f3+0b+": "Once you sign up, you won\u2019t be able to set new files as online only until you enable Smart Sync for your team.",
+ "f37GH8": "{web_editor_name} will automatically be used to open your {file_extension} files in Dropbox. You can update this later in your Dropbox settings.",
+ "f3JLGa": "Links created with no password",
+ "f3obYk": "Centralised billing",
+ "f46Ooz": "This will automatically remove any currently disconnected devices.",
+ "f4B8UL": "Never completed",
+ "f4bo57": "Folder attached to Trello card.",
+ "f51YxB": "We\u2019ve received the billing details for your account and everything is good to go.",
+ "f5J626": "How do I see who is viewing my files?",
+ "f5LygB": "The strength meter will show you how strong your password is as you create it.",
+ "f5aTet": "{count, plural, one {Only an admin can delete this item permanently.} other {Only an admin can delete these items permanently.}}",
+ "f5okRG": "and {howMany} more",
+ "f5t2Mw": "On {date}, your plan will be downgraded to Dropbox {plan} and your new {schedule} total will be {scheduled_total}. Charges will continue until you cancel, and previous charges won\u2019t be refunded unless it\u2019s legally required.",
+ "f60HRK": "Just open the installer and you\u2019ll be all set.",
+ "f6Phz6": "Dropbox International Unlimited Company is a registered foreign business and is liable to account for consumption tax",
+ "f6Rhv2": "Local Smart Sync icon",
+ "f6UR0Z": "Disconnect {name}?",
+ "f7/ZRA": "There\u2019s already a hold with that name. Try another one.",
+ "f712u+": "{vacuuming_policy_max_days}\u2011day file & account recovery",
+ "f7W0L9": "These devices are linked to your work Dropbox account.",
+ "f7tpR1": "Manage users and get insights into your company domains",
+ "f7wXGc": "Create a new {record_type} record",
+ "f7yCNL": "Invitation requested",
+ "f87HfV": "Sharing files using Dropbox Transfer",
+ "f8EJmj": "{team_group_name} can edit",
+ "f8NDzV": "Yes. We have volume discounts as well as discounts for non-profits and educational institutions. Please contact our sales team for more information.",
+ "f8NiGI": "Choose files",
+ "f98azI": "file name contains invalid character",
+ "f9Ed4J": "for the new billing schedule and plan,",
+ "f9JXal": "If you have a personal Dropbox, connect it here so you can switch between your Dropboxes easily.",
+ "f9LrNR": "Learn how to create a strong password.",
+ "f9Py1E": "Sign and request signatures and track the entire signature process from Dropbox. You get 5 free transactions every 30 days with Adobe Sign.",
+ "f9TgKO": "Create new links for shared folders",
+ "f9kd6a": "Remember, never share personal information here.",
+ "f9nhmZ": "Error creating invitation link",
+ "fA7pOl": "Connected with {provider}",
+ "fAHldl": "Bill monthly",
+ "fB+0WF": "Add new key",
+ "fBQ/bz": "Can\u2019t load activity \u2013 to try again.",
+ "fBaFmx": "Real-time editing for teams",
+ "fBd+Hg": "We use cookies to save your name and email for faster sign-in. Learn more in our cookie policy and privacy policy.",
+ "fBoVqZ": "Content management",
+ "fBp3Tk": "Any active members of the {plan} team will be downgraded to Dropbox Basic accounts on {date}.",
+ "fBy27j": "Unapprove version",
+ "fCVMMM": "Add via drag and drop or from Dropbox",
+ "fCWGp9": "Keep work projects in one place, and always have the right file at your fingertips.",
+ "fCZlT5": "Cancel",
+ "fCcJ+a": "Cancel invitation",
+ "fCtp+4": "{vacuuming_policy} days of file recovery and version history",
+ "fCwkxd": "We'll let {name} know you uploaded files",
+ "fDZvAG": "Thanks for trying {plan_name}",
+ "fDtB1J": "You ({name}) can view",
+ "fDvKfJ": "Please unlock your vault before attempting to add to this folder.",
+ "fE0u0q": "Install Dropbox to get \u201c{folder_name}\u201d on your computer",
+ "fE8Xhp": "Can edit",
+ "fEIpFO": "Require a security key or code in addition to your password.",
+ "fEZEwT": "The account owner can add payment information now so that this subscription is renewed automatically when it expires.",
+ "fEkLFz": "New address",
+ "fEnXNG": "Opening the Dropbox desktop app...",
+ "fFlqwe": "Enter email address",
+ "fG5ZbA": "PDF editing",
+ "fG6HZx": "Change how members can access \u201c{current_folder}\u201d?",
+ "fGE/Cv": "You",
+ "fGFHbB": "Only you can view via this link. Downloads disabled.",
+ "fGkg7L": "Hi {first_name}, we\u2019re sorry you\u2019re thinking of cancelling {dropbox_family}. Do you mind telling us why? We might be able to help.",
+ "fHHYC+": "About 25 minutes",
+ "fI78OZ": "API calls this month: {api_usage}",
+ "fI7sAv": "Save to your personal Dropbox account?",
+ "fInmrR": "Easy-to-use team management and collaboration tools.",
+ "fJCjRe": "Bold",
+ "fKAsp7": "The following files are not supported by Dropbox and cannot be uploaded: {files}",
+ "fKXJUR": "Show resolved comments",
+ "fKYL7j": "Submit",
+ "fKj1Sz": "Sign-in blocked",
+ "fLJ3mM": "Select items",
+ "fMFQqA": "Adding your team folder",
+ "fMp7pz": "Billing admin",
+ "fMwJMT": "{count, plural, one {Anyone with the link can view this file. Expires in {count} day.} other {Anyone with the link can view this file. Expires in {count} days.}}",
+ "fN3cwA": "@someone",
+ "fN82fk": "{number, plural, one {{number,number} slide} other {{number,number} slides}}",
+ "fNQWL/": "Signed documents are automatically saved back to Dropbox.",
+ "fNTnIJ": "PDF details",
+ "fNhXRH": "Exclude current year",
+ "fNnn8m": "On by default",
+ "fNvfPn": "{price}/year (save {savings})",
+ "fO2g0c": "Price",
+ "fO7j82": "Provider",
+ "fO8J9o": "What\u2019s in that folder?",
+ "fOAfY4": "Success!",
+ "fOY5CH": "Transfers over {size} will take a long time to upload. Consider removing some files to send your transfer faster.",
+ "fP/6oI": "Manage multiple Dropbox teams with a single admin login.",
+ "fP5B+E": "Verify the meta tag",
+ "fPUR43": "Your current plan",
+ "fPmHZZ": "Manage apps",
+ "fPu8YK": "Try {trademark_business}",
+ "fQ93YW": "You gave view-only access to {entity}",
+ "fQDQpn": "{count, plural, one {{selected_members_num} member selected} other {{selected_members_num} members selected}}",
+ "fQkM9v": "Preview",
+ "fQkv+i": "DELETED",
+ "fQlkHi": "The file you selected is larger than the supported {supported_value} MB. Please try again with a smaller file.",
+ "fQnxbw": "Any time, anywhere access",
+ "fQzjaE": "Drag files and folders here to upload",
+ "fRBsb1": "Protect your most important files with extra security. Learn more",
+ "fRBvOH": "Team name",
+ "fRKx+3": "Start sharing to capture audience insights",
+ "fRMS5E": "Log in with Dropbox credentials",
+ "fRlyEz": "{total} per {period}.",
+ "fSDEDR": "{name} rewound this folder to {rollback_date}",
+ "fSZaj1": "Add payment method.",
+ "fTLCkr": "You can change admin accounts after starting the trial, and your current files and folders will retain their privacy settings when you upgrade.",
+ "fTdk5C": "Add comment",
+ "fTpphz": "Connected to Trello",
+ "fTrTN2": "{price} per year. Save {savings}. Prices include GST",
+ "fUJ4qH": "30 days",
+ "fUWqZP": "Unable to send email. Please try again",
+ "fUaYQH": "Couldn\u2019t load Paper settings. Try refreshing the page.",
+ "fUjsBI": "Here are some ways to get shared folders ready for the move. Bear in mind that members will always lose access to all of their old team folders.",
+ "fUz1Ci": "To update your business address, ",
+ "fVMRUW": "Bring the power of Dropbox to your Outlook inbox.",
+ "fWazP7": "Cancel",
+ "fWzfms": "You renamed {single_item_name_prev} to {single_item_name_next} in {folder_path}",
+ "fXWmxm": "Connect calendar",
+ "fXXSLA": "{count, plural, one {Are you sure you want to permanently delete {count} item from your Dropbox?} other {Are you sure you want to permanently delete {count} items from your Dropbox?}}",
+ "fY9HQk": "Want to comment on {time_code}?",
+ "fYIjGs": "Upload files",
+ "fYJ2Zy": "Remove members of {team_name}?",
+ "fYsGwY": "Only team admins can change these settings.",
+ "fYxBiJ": "Start by opening Dropbox",
+ "fYxwxo": "Anyone",
+ "fZ/08N": "Visibility",
+ "fZ/5OR": "Activated on",
+ "fZ1ZfV": "the account user",
+ "fZ6chB": "Next",
+ "fZFax9": "If you uninstall the system extension for your team:",
+ "fZbDjn": "An image that shows a custom background and custom logo on a transfer recipient page.",
+ "fZfcZ4": "Name or email",
+ "fZwvxY": "upload to the folder \u2018{folder}\u2019",
+ "faDcx4": "Give HelloSign full access to your Dropbox account.",
+ "fabMtu": "{remainingMb} MB remain of 20 MB file limit",
+ "fahU09": "Access a robust, yet free, set of photo editing tools that let you crop, rotate, resize, apply filters and add text to images. No account needed.",
+ "fak37u": "Require six-digit security code or key in addition to a password to access your account.",
+ "family-join-addon-error": "Your account currently has extended version history, which isn\u2019t supported in Dropbox Family.",
+ "family-join-bullet-age-gate": "You must be aged {ageString} or older to join",
+ "family-join-bullet-family-manager": "Your family manager can add members to the plan or remove them",
+ "family-join-bullet-quota": "Access {tbString} ({gbString}) of storage and premium features at no cost to you",
+ "family-join-bullet-same-account": "If you already use Dropbox, your login info, content and settings remain the same",
+ "family-join-bullet-same-account-with-fsf": "If you already use Dropbox, you\u2019ll keep your own personal account view and login info",
+ "family-join-bullet-sharing-personal-view": "Sharing is simple, plus you\u2019ll have your own personal account view",
+ "family-join-bullet-sharing-personal-view-with-fsf": "Sharing is simple \u2013 everyone on the plan has access to the Family Room folder",
+ "family-join-from-work-role-error": "You\u2019re signed in with a business account. To join, you\u2019ll need to switch to your personal account or create an account using a different email from the one you use for your business account.",
+ "family-join-license-key-error": "Your current plan doesn\u2019t support switching to the Family plan.",
+ "family-join-page-already-in-this-family-error": "You\u2019re already a member of {inviterDisplayName}\u2019s plan.",
+ "family-join-page-embargoed-country-error": "You are not allowed to join the plan.",
+ "family-join-page-iap-mobile-error": "Before you can join the plan, you\u2019ll need to cancel your existing subscription from your mobile device.",
+ "family-join-page-in-two-families-at-once-error": "You can\u2019t be a member of more than one Family plan.",
+ "family-join-page-no-permission-error": "You can\u2019t join the plan at the current time. Refresh this page to try again, or contact the person who invited you.",
+ "family-join-scheduled-downgrade-error": "Before you can join the plan, you\u2019ll need to cancel your scheduled downgrade.",
+ "family-join-subtitle": "{managerName} ({managerEmail}) invited you to their plan",
+ "family-join-title": "Join Dropbox Family",
+ "family-member-remove-error": "Failed to remove the member. Please reload the page and try again.",
+ "family-onboarding-modal-body-v1-first-line": "All plan members can access, add and edit content in the Family Room.",
+ "family-shared-quota-error-message": "Error loading family quota breakdown. Refresh page to attempt reload.",
+ "family-shared-quota-table-everyone-elses-files": "Everyone else\u2019s files",
+ "family-shared-quota-table-using-in-gb": "Using {usage}",
+ "family-shared-quota-table-your-files": "Your files",
+ "family-shared-quota-view-help-link": "How storage works",
+ "fbCZyQ": "Linked apps ({num})",
+ "fbRJzy": "Changes saved.",
+ "fbUmcM": "We encountered a problem",
+ "fbhq8y": "Standard trial",
+ "fcIlGX": "{actor_name} added this file to the {card_name} card in {list_name}",
+ "fcyMEM": "Types of personal information found",
+ "fd1oHs": "Are you sure you want to permanently delete {filename} from your Dropbox?",
+ "fdXzYu": "Copied.",
+ "fe/vea": "Get everything in Standard, plus:",
+ "fe4dA8": "Present like a pro. Add and join Zoom meetings without leaving Dropbox. Learn more",
+ "feGyKt": "Students: submit your assignments with just a few clicks.",
+ "feQlzs": "No data",
+ "fed2+P": "This is helpful if you need more information about a Dropbox purchase on your billing statement",
+ "ferDGi": "Status",
+ "fere+c": "on web",
+ "fetgCI": "You connected this third-party app to your Dropbox account. To find out more about the information this app can share with Dropbox, visit their website",
+ "fetuvN": "Please include a link to the deletion event you would like to undo. See this article on how to find a restoration link.",
+ "feuALE": "API limitUnlimited API access to security and productivity platform partners. {api_quota} API calls/month for data transport partners.",
+ "ffNYyt": "Add another secondary email",
+ "ffW3Dm": "You are not allowed to invite a member with a {domain} email address.",
+ "ffc4Og": "To add this folder, you\u2019ll need {needed} of space in your Dropbox. You do not currently have enough space.",
+ "ffjBJF": "On, return detected",
+ "ffjRA4": "Unfortunately, your carrier isn\u2019t supported at the moment.",
+ "fgeQPX": "{professional_space} of secure storage",
+ "fh5Zfl": "Get {trademark_professional}",
+ "fheYT5": "Your team can\u2019t use Paper yet.",
+ "fhxuOM": "You locked this file",
+ "fi9Okp": "Oops, something went wrong. Please try again later.",
+ "fiDlKT": "Take your files with you, wherever you go.",
+ "fiL806": "View more licence keys",
+ "fiZIqw": "Offline file access",
+ "filSNo": "{name} moved {single_item_name} into this folder",
+ "first name": "Please enter a valid first name.",
+ "fiuCCf": "Secondary email {email} removed.",
+ "fj6DCO": "Ongoing",
+ "fjGEGL": "Something went wrong, but it may be a one-off. Try reloading the page.",
+ "fjUgqX": "Leave",
+ "fkNHq+": "{count} unread",
+ "fkU/W8": "{amount, plural, one {{amount,number} other} other {{amount,number} others}}",
+ "fkpgKo": "We\u2019ll hold a copy of available files these members create or edit.",
+ "flI0+M": "Waiting {ago}",
+ "flOIBl": "I agree to the {trademark} agreement and Dropbox Terms",
+ "flOh9z": "No charge made to your payment method on file.",
+ "flW3ZL": "or create an account",
+ "flaKkC": "First name",
+ "flkJcx": "Only team members",
+ "flows-add-folder-rules-progress-toast": "Creating {folderName} auto-PDF folder...",
+ "flows-add-folder-rules-success-toast": "{folderName} changed to auto-PDF folder.",
+ "flows-create-automated-folder-progress-toast": "Creating {folderName} auto-PDF folder...",
+ "flows-create-automated-folder-success-toast": "{folderName} auto-PDF folder created.",
+ "flows-disable-pdf-rule-success-toast": "Auto-PDF conversion successfully disabled for folder {folderName}.",
+ "flows-enable-pdf-rule-success-toast": "Auto-PDF conversion successfully enabled for folder {folderName}.",
+ "flows-remove-folder-rule-success-toast": "{folderName} has been converted to a basic folder.",
+ "flrvm0": "Print permission",
+ "fmXUzw": "Download Dropbox",
+ "fmhb08": "Manage what's being shared outside {teamName} and invite people you work with to the team.",
+ "fmi87t": "{count, plural, one {{count} video} other {{count} videos}}",
+ "fmq2Vb": "Set the amount of Dropbox space members can use.\n This limit doesn\u2019t include team folders.",
+ "fnAL9V": "{price}/user/month",
+ "fnG2Ew": "This file can\u2019t be uploaded because you are over your storage quota. If you believe this message has been sent in error, try refreshing the page.",
+ "fnOUBR": "You don\u2019t have anything to review.",
+ "fncjX9": "Click 'Open with' and select Pixlr X to open images.",
+ "fnpK7H": "No",
+ "fodvBV": "Failed to copy invitation link.",
+ "foyZyr": "I agree to the ",
+ "fp7TGs": "{count, plural, one {Expires in {count} day} other {Expires in {count} days}}",
+ "fpHm9U": "Centralise your course content in Dropbox, where you can keep it secure. Then, upload lecture slides, videos, reading assignments and more to a course in Canvas. Your students can submit homework assignments from Dropbox to Canvas, as well. You can spend your time on academic work instead of on managing your files.",
+ "fpPsTv": "Send large files to anyone",
+ "fpgILd": "To share this folder, ask someone else for access to edit.",
+ "fphC69": "PM",
+ "fq/eN7": "Keep the business organised",
+ "frldLp": "An error occurred at our end.",
+ "fs/isf": "Accidents happen. Roll back individual files or your whole account, up to 30 days.",
+ "fsBPz+": "2 weeks",
+ "fshp9E": "Let my admin manage this setting",
+ "fsqHOb": "Files added to this folder are automatically saved as PDFs.",
+ "fsynCR": "Company-managed groups",
+ "fuE/wZ": "Delete data from a lost or stolen device, whilst everything is stored safely in Dropbox.",
+ "fuFQob": "Disconnect",
+ "fuFYAE": "Revoke all trusted devices",
+ "fuUmDl": "Collaboration \u2013 any time, anywhere",
+ "fuaonA": "To access {content_name}, add it to Dropbox",
+ "fuoivc": "Use this new email address to automatically save email attachments in your Dropbox folder. Your old address is no longer active.",
+ "fv4OZC": "Uninvite them from the team?",
+ "fvSZVR": "Copy",
+ "fvXagS": "Change address",
+ "fvZIUX": "Sorry, an error occurred. Please try again later.",
+ "fvldrA": "Renaming file\u2026",
+ "fwEw4G": "Getting ready to download\u2026",
+ "fwZe/f": "Couldn't set options for \"{folderName}\"",
+ "fwZwwm": "Downgrade my plan",
+ "fwbFS3": "Yes. The {dropbox_business} base package includes 3 users, but you don\u2019t need to use all of the licences straight away. Since licences can be reused, many of our customers reserve extra licences for contractors or clients.",
+ "fwn0rp": "We\u2019ll charge your PayPal account.",
+ "fwy/H3": "We'll remove some items before sending",
+ "fx6W8j": "N/A",
+ "fxKhBb": "",
+ "fxMWZh": "Choose files to {upload_folder_name}. You can select more than one file at a time. You can also drag and drop files anywhere on this page to start uploading.",
+ "fxVe5P": "Creating too many reports at once. After some finish, you can start more.",
+ "fxzG8m": "With the desktop app, you can easily upload large files and sync them instantly across your devices and with your team members.",
+ "fy/9XT": "To subscribe to this file, create a free Dropbox account.",
+ "fy7UFm": "Ramp up new recruits quickly. Centralise information to help new employees get started, link key resources and create a checklist of to-dos for their first few days.",
+ "fy9qFc": "Error",
+ "fz30j7": "Yes! Please contact our sales team for more information.",
+ "fz7GLr": "File is being uploaded",
+ "fz9og9": "Billing address",
+ "fzCjdt": "Toggle Traffic and insights sidebar",
+ "fzOG6V": "Storage space",
+ "fzd+/H": "Email me about",
+ "fzmr2J": "Enough room for your team to store files, presentations or anything else to work together better",
+ "g+9Rjq": "Your access will be removed, but they won\u2019t be deleted for anyone else",
+ "g+ZeGK": "Help your HR team simplify their work, from internal planning and coordination with hiring managers to onboarding new recruits.",
+ "g+xqHV": "{value} GB",
+ "g/1bHo": "Member type",
+ "g/Ia4W": "Reset custom space limit",
+ "g/R8UD": "Does Dropbox keep a backup of my files?",
+ "g/nUIt": "Legal link",
+ "g/zoMn": "Logo",
+ "g080gq": "Not an active group",
+ "g0jUpN": "Create shared folder",
+ "g0uzu9": "Maximise meeting time by easily presenting a Dropbox file while in a Zoom meeting.",
+ "g139Hz": "To download content again, just open the file. Or right-click, go to Smart Sync and choose Local.",
+ "g1Qc/Z": "That\u2019s too big to save. Try making your watermark smaller.",
+ "g1d9Ks": "Paper is a Dropbox product and is available to all Dropbox customers. You can access your Paper content from the Dropbox website by clicking the Paper tab in the left sidebar. You can also add your Dropbox files (images, PDFs and other documents) directly into a Paper doc. More details here: https://www.dropbox.com/help/paper/dropbox-integration",
+ "g1njQQ": "Are you sure you want to delete {item_count} items from the shared folder \u2018{shared_folder_name}\u2019?",
+ "g1zlIm": "Quickly move your files into Dropbox",
+ "g21+Vk": "View files",
+ "g23qqQ": "You\u2019re changing to {schedule} billing. We\u2019ll charge you {prorated_price} now, which is pro rata for the current billing period. Your plan will renew on {date}. Your new {schedule} total will be {scheduled_total}.{upgrade_warning}",
+ "g2cRE+": "Yes. We have volume discounts as well as discounts for non-profits and educational institutions. Please contact our sales team for more information.",
+ "g2ciy9": "Choose the default Dropbox file browser for your team.",
+ "g2m64r": "Save",
+ "g3PQL4": "You have no apps linked to your Dropbox.",
+ "g3st+I": "No exceptions",
+ "g3t0dr": "Updating {folder_name}\u2026",
+ "g4Q8Ol": "Standard includes:",
+ "g4hBjB": "Manage",
+ "g5OSu/": "Share a link",
+ "g5XGac": "Resolve",
+ "g5XoZ1": "Sent to {recipient_first} and {recipient_second}.",
+ "g5i/rc": "Back",
+ "g60m+k": "The team folder name is reserved.",
+ "g62FEL": "Linux",
+ "g68hNT": "To verify your identity over live support, you\u2019ll need the following PIN:",
+ "g6BxgU": "Never downloaded",
+ "g6VcRe": "Cancel",
+ "g6qXZF": "You don\u2019t have access to traffic and insights for this file",
+ "g6uFpu": "{count, plural, one {Once you've sent the invitations, you\u2019ll have {count} licence remaining. Each person you invite will still need to accept to finish joining your team.} other {Once you've sent the invitations, you\u2019ll have {count} licences remaining. Each person you invite will still need to accept to finish joining your team.}}",
+ "g7It2O": "Creating link...",
+ "g7N60w": "Back to files",
+ "g7Npuz": "Review devices and web browsers",
+ "g7vg1d": "Remove everyone",
+ "g8YNMh": "Activity report icon",
+ "g8qxf9": "See who's visiting",
+ "g8rKMf": "Link",
+ "g95KjY": "This lets members use the file request feature to collect files, even from people with no Dropbox account.",
+ "g971tv": "It looks as though someone changed your access",
+ "g9kzVy": "Sign in as user",
+ "gAU6N5": "You can manage their members, including adding admin permissions.",
+ "gAtFlt": "This list shows the top domains of people outside your team that members are sharing files and folders with",
+ "gC+1Mu": "Quickly send any file \u2014 big or small \u2014 to anyone, even if they don\u2019t have a Dropbox account.",
+ "gC2VXy": "Confirm and send invitation",
+ "gD68Jd": "Advanced sharing controls",
+ "gDbGh9": "Personal",
+ "gDbunk": "Modified {ago}",
+ "gDefE3": "Limit the use of certain Dropbox features on members\u2019 phones and tablets",
+ "gDhD+v": "Edit your files and folders",
+ "gDp0bX": "Add security key",
+ "gDp6RV": "Actions such as move, edit, rename or restore.",
+ "gECQsN": "Enter Vault PIN to delete",
+ "gEIkEu": "Remove contacts",
+ "gEeH+S": "View plans",
+ "gFaiVu": "{num, plural, one {The {trademark_family} plan lets you link as many devices as you need, while {trademark_basic} has a limit of {num,number} device.} other {The {trademark_family} plan lets you link as many devices as you need, while {trademark_basic} has a limit of {num,number} devices.}}",
+ "gH+r8I": "Archiving usually takes a few minutes, but it could take up to a few hours if it\u2019s shared with lots of people. Archiving can\u2019t be cancelled once it has started.",
+ "gHr3dM": "If this HIPAA BAA is terminated earlier than the underlying Agreement: (a) the Customer may continue to use the Services in accordance with the Agreement, but must delete any PHI it maintains in the Services and cease to create, receive, maintain or transmit PHI to Dropbox or within the Services; and (b) Dropbox will not have any obligation to return or destroy PHI transmitted to Dropbox after the termination of this HIPAA BAA and while the Agreement remains in effect.",
+ "gI+OI9": "Off",
+ "gIEeGV": "Go to your team\u2019s admin console?",
+ "gId6o+": "Team members created {num_of_docs} docs when Paper was on. You can export docs or turn Paper back on to restore access.",
+ "gIf9gQ": "Your current plan details (renews as of next billing cycle {next_billing_date})",
+ "gIys9n": "Thanks for verifying your email address: {email}. You can now share and receive files on Dropbox.",
+ "gJ4J7a": "Member will no longer have access to the account",
+ "gJc8rX": "Can I upgrade my existing Dropbox {trademark_basic} or Dropbox {trademark_plus} account? How does migration work?",
+ "gJshIh": "Business resources",
+ "gK4PxX": "Smart Sync, stress-free sharing, offline folders on mobile and {plan_space} storage.",
+ "gKBEZz": "Ticket subject:",
+ "gKiaBi": "using {storage_used} of {quota}",
+ "gL0d6X": "Need help with a billing issue?",
+ "gL1sZK": "Access your attachments from any device by saving them to Dropbox.",
+ "gLMBbD": "Your team",
+ "gM+aTa": "Guest",
+ "gM3r20": "There was a problem completing this request",
+ "gMLJVs": "Download ZIP",
+ "gMMFLT": "Never",
+ "gMMLpm": "Send me HelloSign updates.",
+ "gMMxaZ": "You and every member of your {trademark_family} plan will be downgraded to {dropbox_basic}, which only allows up to {free_quota} of storage.",
+ "gMuHkX": "Mobile app overview",
+ "gN/zWT": "Image editing",
+ "gN2tFu": "What file types can be previewed in a showcase?",
+ "gNJQyO": "No, thanks",
+ "gOSNSg": "Device approvals",
+ "gP9xCB": "When you\u2019re ready to add folders to policy",
+ "gQ2JAx": "Everyone in {team_name}",
+ "gQFV0i": "Step 2 of 3",
+ "gQQ8F8": "Clear all",
+ "gQVZHe": "Members of the file with this link and password can view.",
+ "gQlQAz": "Share files securely with contractors and clients using our advanced sharing features.",
+ "gQq+eT": "Downgrade to {standard_plan}",
+ "gR/Lzm": "Start building",
+ "gR0Vz1": "Having trouble getting a code?",
+ "gRT9o7": "to {domain}",
+ "gRbKFY": "Choose how members can use Paper in Dropbox.",
+ "gRr0Xj": "{count, plural, one {You added {count} item} other {You added {count} items}}",
+ "gSChY6": "{count, plural, one {Anyone in your Dropbox team with this link and the password can view the folder. Expires in {count} day. Downloads disabled.} other {Anyone in your Dropbox team with this link and the password can view the folder. Expires in {count} days. Downloads disabled.}}",
+ "gSFHNP": "Off by default",
+ "gSPM7+": "If you need to expand your crew, your family manager can add members to or remove members from the Family plan at any time.",
+ "gSYRBL": "Explain the issue you've seen",
+ "gTD7Ga": "Sorted by name",
+ "gTTtEu": "You can\u2019t upload any files because your Dropbox is full. Get more space",
+ "gTyXGs": "Social media plan",
+ "gU57tI": "Enable Paper for {team_name}",
+ "gUTeT9": "Downloads disabled.",
+ "gUW9SX": "Unmanaged users who used Dropbox at least once in the past 4 weeks.",
+ "gUZ177": "User is already invited to this team.",
+ "gV1tk4": "You\u2019ve joined the account.",
+ "gVUPfg": "Connect Paper and Slack",
+ "gVXssQ": "Ticket dashboard summary",
+ "gVzSq7": "You don\u2019t have permission to move some of these items. Try moving items individually.",
+ "gW0O1X": "Send an invitation to:",
+ "gWqPD6": "Accepted payment types",
+ "gWxS/S": "No",
+ "gXCsR5": "Filters",
+ "gXPCqU": "Best value",
+ "gXXxNj": "API calls this month: {api_usage}",
+ "gY6USQ": "{count, plural, one {You added {count} item in {folder_path}} other {You added {count} items in {folder_path}}}",
+ "gYl7xx": "Christiaan Gunther, Site Editor of BCBG MAX AZRIA GROUP, LLC",
+ "gYv2NF": "Doc shared with {email}.",
+ "gYw+wG": "Sharing files",
+ "gZF0DX": "The data is accurate when the report is created. The report may not match the dashboard.",
+ "gZOe2G": "External participants",
+ "ga++u3": "{count, plural, one {View all files ({count} hidden)} other {View all files ({count} hidden)}}",
+ "gaNMlz": "Failed to load payment form.",
+ "gbLFmN": "Use a mobile app",
+ "gbLkUN": "Be specific so you can tell each download apart",
+ "gbccCU": "Delete link to \u201c{name}\u201d?",
+ "gbfS6k": "Date:",
+ "gbg3JH": "{count, plural, one {Team you can join} other {Teams you can join}}",
+ "gbibVS": "Disposition",
+ "gbta7Y": "{count, plural, one {Anyone in the {trademark_business} team with this link can edit the file. Expires in {count} day.} other {Anyone in the {trademark_business} team with this link can edit the file. Expires in {count} days.}}",
+ "gbx+V8": "We couldn\u2019t process your photo.",
+ "gcDZFf": "Activity",
+ "gcLx5K": "Preparing for distributed work",
+ "gcrDHz": "We can sync your Desktop and Documents to Dropbox so that you can access them from other devices.",
+ "gd6I9H": "Dec",
+ "gdOmTm": "Make primary",
+ "gddUAB": "If you lose your phone, we can text a code to your backup phone number ending in **{phone_last_two}.",
+ "gdjFbt": "You\u2019ve switched your plan.",
+ "geDX3L": "{trademark_business} provides three plans to fit your team\u2019s needs. The {trademark_business_standard} plan gives your team {standard_plan_size} of shared storage. For teams needing more space, the {trademark_business_advanced} and {trademark_business_enterprise} plans provide as much space as you need.",
+ "geYCWu": "We\u2019re sorry you\u2019re thinking of leaving us, {first_name}. Can you tell us why? We might be able to help!",
+ "gehmZx": "Get professional about sharing",
+ "geiQqX": "No courses",
+ "gek9SL": "Settings for this folder will now be managed by {name}. Bear in mind that if they\u2019re not in your Dropbox team, you won\u2019t be able to manage this folder here any more.",
+ "gekS4G": "Plans & pricing",
+ "gezQGQ": "Network control",
+ "gfASl+": "No legal holds yet",
+ "gfG7zK": "Deleted link to {name}.",
+ "gfZniX": "No files held",
+ "gfeOp7": "Storage limit warning",
+ "gffk/L": "Send to notary",
+ "gfg75+": "Customer support",
+ "gfzKfL": "Once they\u2019ve accepted, you\u2019ll be able to:",
+ "ggNNd9": "Preview files shared in Trello",
+ "ggWnUh": "Company Inc.",
+ "ggdxX+": "Login method",
+ "ghld2g": "Details",
+ "gihGYV": "Please contact Dropbox Support",
+ "gitP0v": "Title",
+ "gj5Nlr": "Whenever you add additional files to this folder, they\u2019ll become accessible to these groups.",
+ "gjD0l7": "When people work on this file, you\u2019ll see their activity here.",
+ "gjbyAR": "This gives you two accounts \u2013 your {work_email} account for {team_name} work\nand a new personal account for your existing files.",
+ "gk12sS": "Learn more",
+ "gkEuQo": "I agree to the Terms and Conditions",
+ "gl4dr7": "{count, plural, one {You\u2019ve linked {count} app to your account. You should remove apps that you are no longer using or that look unfamiliar. Learn more about linked apps.} other {You\u2019ve linked {count} apps to your account. You should remove apps that you are no longer using or that look unfamiliar. Learn more about linked apps.}}",
+ "glJTLk": "Securely send stuff to anyone, even if they don\u2019t have a Dropbox account.",
+ "glQ7vm": "Take the pain out of managing legal documents by signing and storing them in one convenient, organised place.",
+ "glZYBx": "Send reminder",
+ "gn86RL": "{count, plural, one {Email my team admin to keep {business}} other {Email my team admins to keep {business}}}",
+ "gnD97C": "Description",
+ "gnEPL0": "Learn more",
+ "gnuGcb": "Unable to close this window. Please close it manually and return to the previous site.",
+ "gpKXSv": "More actions",
+ "gpdptm": "To create, edit or comment on {product_name}, sign in or create a Dropbox account.",
+ "gpe0AZ": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna.",
+ "gpe7F8": "Got it!",
+ "gq9/8S": "Failed to delete. Please try again later.",
+ "gqAKGJ": "Info types",
+ "gqBhYf": "You moved this file",
+ "gqNK3P": "Create a team and get access to additional space, advanced sharing features and powerful admin functions.",
+ "gqNtTt": "Your plan is set to be downgraded on {trial_end}. If you downgrade, your team will lose {space} of space, and your active team members will return to their initial space quota. If you want to keep using {trademark_business}, it only takes a few moments to add your billing information.",
+ "gqOg6Z": "Start new transfer",
+ "gqTMCM": "Inbox ({count})",
+ "gqXguU": "Account recovery security issue",
+ "gqYNX6": "Connect another {name} account",
+ "gqZxgF": "Admin session expired",
+ "gqemh4": "Create new account",
+ "gqjwaZ": "Email sent",
+ "gqmbkC": "Oops! It looks as though this file no longer exists",
+ "grlpui": "What is a CNPJ?",
+ "groS5T": "
By default, anyone with a link to the showcase can view it. This means that someone you\u2019ve shared a link with could forward it to someone else. However, you can set it up so that only people you invite to the showcase can view it. This option is available in the sharing settings.
\n
By default, the people you share a showcase with can download and leave comments on the files in it.
\n
Only the owner (or creator) of a showcase can edit it. However, if you have files from a shared folder in your showcase, anyone you\u2019ve shared that folder with can edit the files in it. Those changes would then appear in the showcase.
",
+ "gsFwKW": "{count, plural, one {Members only shared with {count} domain outside your team} other {Members only shared with {count} domains outside your team}}",
+ "gsQQ+Y": "Do you have any volume discounts?",
+ "gsqXw9": "I agree to the HelloSign Terms, Privacy Policy, Refund Policy and Automatic Renewal Terms above.",
+ "gtB5F7": "Members who go over the limit can\u2019t upload or sync their files.",
+ "gtSYO4": "Please complete all required fields",
+ "gtjB22": "You rewound {item_name} to {rollback_date}",
+ "gtleyW": "Advanced user management tools",
+ "gtpnsh": "Facebook",
+ "gtyX8V": "Couldn\u2019t save default editor",
+ "gu67aP": "{cost}/month",
+ "gu8Wtd": "",
+ "gueiVk": "A password manager that syncs across devices",
+ "guiO/P": "Your links",
+ "guzO4O": "Transform docs into presentations",
+ "guzaOE": "Store all of your faxes in one secure place.",
+ "gvR8PU": "Email verified",
+ "gw/4ND": "{label}: not available",
+ "gwMXP9": "Your own space",
+ "gwTkEW": "Allowed for 2 days",
+ "gwYeGe": "Head to your Canvas admin account and enable developer keys for Dropbox under the 'Inherited' tab.",
+ "gwh4Ns": "Updated {date}",
+ "gx89em": "Restore folder",
+ "gxCwIt": "Try reconnecting",
+ "gxEzRN": "Close",
+ "gxO/+x": "Open app",
+ "gy7k3y": "Un-acknowledge",
+ "gymL3m": "Resume after reconnecting to the Internet",
+ "gyyy1y": "Migration in progress ({percent,number,::percent .##})",
+ "gzg7jf": "Not enabled",
+ "gzqK1k": "Set default access for newly created Paper docs. This setting can be changed by members for individual docs.",
+ "h+1seU": "The system extension will be uninstalled",
+ "h+QTqt": "Shared folders you own",
+ "h+RmaB": "Files added",
+ "h+VfyY": "If your files aren\u2019t updated a few minutes after you turn this on, try restarting the Dropbox desktop app.",
+ "h+j0AC": "{count, plural, one {You\u2019re trying to add more devices than your plan supports. Upgrade to {dropbox_plus}\n to stay signed in to more than 1 device at a time.} other {You\u2019re trying to add more devices than your plan supports. Upgrade to {dropbox_plus}\n to stay signed in to more than {count} devices at a time.}}",
+ "h+tuNG": "As an existing {trademark_business} customer, your team has unlimited API calls.Dropbox now has two {trademark_business} plans. These new plans offer unlimited API access to security and productivity partners, and 25,000 API calls/month for data transport partners. On your first renewal date in 2018, if you want to continue having unlimited API calls, we would encourage you to contact support.",
+ "h/4P+h": "{count, plural, one {Restored {count} item, but can\u2019t sync until you free up space.} other {Restored {count} items, but can\u2019t sync until you free up space.}}",
+ "h/OTkF": "Activity filter",
+ "h/f1H9": "3. Download Dropbox",
+ "h/hLSy": "Suggested location",
+ "h/jNg2": "Cancel trial",
+ "h/o1un": "24/7 phone support",
+ "h/xyon": "Ask to join failed. Try again for {receiverEmail}",
+ "h0ogUi": "Please enter a valid password.",
+ "h0vA6Q": "Close",
+ "h0yUbM": "{count, plural, one {{count} item} other {{count} items}}",
+ "h17Xfe": "No lists available",
+ "h1ZrSB": "End the tour?",
+ "h1dLjD": "Next shared meeting",
+ "h2UqcJ": "(team downgraded)",
+ "h39Jkw": "I\u2019m dealing with thousands of files that are two to four gigabytes. Dropbox Business has enabled us to push that data quickly, efficiently and reliably. And I\u2019m honestly not quite sure how we did it before. Very rarely does somebody bring up a service other than Dropbox. It\u2019s the defacto way in the community of sharing data.",
+ "h3kG3E": "{price}/year",
+ "h3tWnF": "Visit our Help Centre",
+ "h3wR04": "Make sure you\u2019re retaining the content you need.",
+ "h4EJqp": "No prior knowledge required! But, to make sure you\u2019re taking advantage of everything {trademark_business} has to offer, we suggest checking out our admin and user guides. Start your free trial.",
+ "h4NBWz": "Please refresh your browser.",
+ "h4OU3d": "Asked to join",
+ "h4S9M8": "Not enough space to access folder",
+ "h4vreR": "personal",
+ "h58mvf": "Off",
+ "h5ZOYA": "{group_name} is now company managed",
+ "h5lQc0": "Cancel Plus trial",
+ "h65ZbA": "Only members with the link can access the Paper doc",
+ "h7QdpZ": "You can restore any version below to make it the current file. All other versions will still be saved.",
+ "h7ca5N": "Google Workspace integration",
+ "h7t7QA": "If you make this move, you'll no longer be the owner of some of the folders.",
+ "h8DYhc": "They can see it and ask to join",
+ "h8MAcH": "Make sure you\u2019ve added the meta tag to the homepage of ",
+ "h8VnsZ": "Ask for more space",
+ "h8k50T": "This person may have been deleted from the team.",
+ "h99g3j": "Resources",
+ "h9EcHm": "{count, plural, one {{count} manually added contact} other {{count} manually added contacts}}",
+ "h9HyxI": "Live chat",
+ "h9UTH1": "Billing history",
+ "h9dOzW": "Space used",
+ "h9ioaY": "Sent",
+ "hA0Lsw": "You don\u2019t appear to be a verified contact for this vault. Please check with the owner.",
+ "hADEDn": "How much data can 1 TB hold?",
+ "hAXZAv": "Find card by title",
+ "hAkFid": "{count, plural, one {This app will be set to default, following the default permission for whether your team can connect apps listed in App Centre to Dropbox.} other {These apps will be set to default, following the default permission for whether your team can connect apps listed in App Centre to Dropbox.}}",
+ "hApMtp": "Recent",
+ "hBBZPJ": "Our business wasn\u2019t satisfied with the way features worked",
+ "hC0iLL": "Can't invite them with that email address",
+ "hC2iIm": "Live chat",
+ "hCAGEJ": "Add from computer",
+ "hCpZct": "Delete undone.",
+ "hCqb3Q": "I understand",
+ "hD3goz": "Dropbox logo",
+ "hDBFiJ": "From PowerPoint",
+ "hDgBBt": "Recents",
+ "hDr6DO": "You shared {single_item_name}",
+ "hE1Ua5": "Get your team ready for a powerful burst of co-creation. Let them know who will attend, how to prepare and what they can expect to deliver.",
+ "hE6l1Q": "Changes made to this file using {app_name} will be saved back to Dropbox. This app will have access to the username, email address and country for your account.",
+ "hELrb9": "{count, plural, one {{name} unshared {count} item in {folder_path}} other {{name} unshared {count} items in {folder_path}}}",
+ "hEQhmw": "For security purposes, we can only provide the email address associated with the account in question to third parties.",
+ "hFDfoh": "Items you recently viewed appear here.",
+ "hFGKUm": "Note: anyone can send attachments to your Dropbox with this address. Only share it with people you trust.",
+ "hFnHZm": "Open in your browser to download",
+ "hG5WRG": "Phone number:",
+ "hGO6A9": "How to tell if this was you",
+ "hGb3Qp": "Settings updated.",
+ "hGbNfq": "Remove {app_name}?",
+ "hGtyf9": "Upload as overdue on {date,date,medium} at {time}",
+ "hH81BT": "Deleted",
+ "hH9uJG": "Pause",
+ "hHO586": "Retention period",
+ "hHhhyq": "Double-check your spam folder.",
+ "hHmfUA": "You need the latest version of Chrome or Edge to avoid issues with your download.",
+ "hHq6X2": "2 GB of space for your team",
+ "hI1zen": "If you already use Dropbox, moving to a {trademark_business} account is easy! All of your content will stay the same \u2013 your files will stay where they are and all of your settings (such as shared folder relationships and linked devices) will remain the same. For admins, all of your team members who already use Dropbox will have the same experience, and anyone without an existing Dropbox account will be prompted to sign up when you send them an invitation. For {trademark_plus} users who switch to {trademark_business}, any remaining credits will be returned as a pro rata refund to the original payment method.",
+ "hIFQE8": "Cancel",
+ "hIFy4P": "(including {tax_rate_str,number,::percent .##} tax)",
+ "hIN6IW": "Cancel request",
+ "hINdXo": "If you delete your account, your data will be gone forever.",
+ "hIOl17": "Top syncing articles",
+ "hIRNbB": "{count, plural, one {Your plan must have at least {count} licence.} other {Your plan must have at least {count} licences.}}",
+ "hIWeAV": "{count, plural, one {{count} selected} other {{count} selected}}",
+ "hIYwWy": "Couldn't remove folder. Please try again.",
+ "hIlNsL": "Created",
+ "hItM9/": "Once you\u2019ve uploaded the HTML file, your domain is ready to be verified.",
+ "hJ33Ip": "For growing teams",
+ "hJASAE": "Successfully disconnected {name}",
+ "hJMzhK": "Powerful sharing and collaboration tools.",
+ "hJV4b3": "If a Dropbox account exists for {email}, an email will be sent with further instructions.",
+ "hJeUi9": "Suggested location: {folder} (selected)",
+ "hJfMW2": "Business for teams",
+ "hJu3Jb": "iPad",
+ "hK3Vsp": "Email",
+ "hKaXB9": "Payments settings",
+ "hKhqIg": "PDF and other file type icons protrude from a blue safe.",
+ "hKz/tt": "Focal length",
+ "hL58Xw": "Restore",
+ "hLKgf8": "In your team\u2019s workspace, you can limit access to entire folders, but not individual files.",
+ "hLLslJ": "Only the owner can change these settings.",
+ "hLTM9f": "Couldn\u2019t connect",
+ "hMBuDN": "Use at least 8 characters, and make sure it\u2019s two bars strong:",
+ "hMD/8c": "Can\u2019t find member",
+ "hMH8kL": "by {actor}",
+ "hMW3Kx": "Having issues with the product",
+ "hMZiKT": "Last sent on {date} by {name}, but you can resend emails as a reminder",
+ "hMjxKh": "Share this folder",
+ "hMyik4": "{count, plural, one {Moved {count} item to {folderName}.} other {Moved {count} items to {folderName}.}}",
+ "hNT7DA": "{count, plural, one {{newCost}/month for {count} user ({currentPlan} is {currentCost}/month for 1 user)} other {{newCost}/month for up to {count} users ({currentPlan} is {currentCost}/month for 1 user)}}",
+ "hNa6bT": "Storage",
+ "hNgE37": "Choose image",
+ "hNqHHt": "Join now",
+ "hOAaKP": "It looks as though {email} has already been invited to join your team. ",
+ "hOSwE1": "Optional",
+ "hOudAi": "Nichole Boatsman, IT Director",
+ "hOw+cd": "Sitemap",
+ "hOwcmv": "Make admin",
+ "hOx+lQ": "You\u2019re cancelling your scheduled plan change. Your Dropbox {plan} plan will be renewed on {date} and you will be billed monthly.",
+ "hP3HgD": "Verify your email",
+ "hPAOZr": "Report as an issue",
+ "hPTQqd": "Dropbox details",
+ "hQ0rRo": "{team_name} has reached the maximum number of team members allowed on Dropbox Basic. Please contact sales to add more members to your team.",
+ "hQ2TEP": "Couldn\u2019t save changes. Please try again later.",
+ "hQMDzJ": "Only the owner can permanently delete",
+ "hQTvPz": "Sophisticated admin, audit, security and integration capabilities",
+ "hQoVo1": "Set your default option: should your new files automatically live on your device (local) or online?",
+ "hR2/Hh": "{count, plural, one {Copied {succesfully_copied_files} of {count} item.} other {Copied {succesfully_copied_files} of {count} items.}}",
+ "hRWIf4": "Use the camera on your phone or tablet to scan the QR code on the screen and download the Dropbox desktop app.",
+ "hRYg9o": "Copy",
+ "hRYthj": "Access has expired",
+ "hRdISa": "Simply add signers by email address to send out for signature requests.",
+ "hRu2DE": "What is the difference between {dropbox_business_standard} and {dropbox_business_advanced}?",
+ "hS5Cvp": "What you picked",
+ "hS7yE9": "Request access pending.",
+ "hSZf0R": "Connect Google Calendar",
+ "hSgU8o": "Default language",
+ "hSlr4k": "Something went wrong. Please try joining later.",
+ "hTBjMZ": "Expand {folderName}",
+ "hTH6PN": "{count, plural, one {Only you can view via this link. Expires in {count} day.} other {Only you can view via this link. Expires in {count} days.}}",
+ "hTmlpx": "Change joining settings",
+ "hTndCE": "Can I share files or folders with {trademark_basic}/{trademark_plus} users if I\u2019m on a Business account?",
+ "hTw//a": "Couldn\u2019t update PIN. Please try again.",
+ "hTzJf0": "Billed yearly (save up to 17%)",
+ "hU1ig4": "Part {index} of {total}",
+ "hUmw6N": "Save as PDF",
+ "hVDi6s": "{count, plural, one {You\u2019re scheduled to be reduced from {old_count} licences to {new_count} licence on {date}.} other {You\u2019re scheduled to be reduced from {old_count} licences to {new_count} licences on {date}.}}",
+ "hVfC/T": "Please note that you have a Dropbox {trademark_plus} subscription managed through the {billing_store}. You must cancel it to avoid being charged when you join this {trademark_business} account.",
+ "hVsohn": "File requests",
+ "hWKAZS": "Create and edit with {app_name}",
+ "hWMuUV": "Separate Dropboxes for personal and work files",
+ "hY0d5Z": "not added yet, in {location}",
+ "hY98fc": "We recommend: {planButton}",
+ "hYCfnh": "{value, plural, one {{value,number} minute} other {{value,number} minutes}}",
+ "hYE87E": "Your plan is set to be downgraded on {trial_end}",
+ "hYItkN": "Create and edit",
+ "hZ+TpT": "File requests",
+ "hZ1eeb": "Search by name or email address",
+ "hZ9a73": "{price} for {licenses}",
+ "hZMv1U": "Downloads",
+ "hZRra4": "You're currently logged in as {name} ({email}) and this account will be the administrator for your new {trademark_business} account.",
+ "hZgiKR": "Select",
+ "hZkCKo": "Move folders",
+ "hZn1zE": "Company name",
+ "hZymwk": "Request access",
+ "haWqwN": "Microsoft Office save location",
+ "hadLkQ": "View Dropbox content",
+ "hbQPvY": "Joining",
+ "hbjEja": "Also remove the {name} folder from my Dropbox.",
+ "hc+1Ri": "{price} / {duration}",
+ "hcS7mL": "{first_admin} and {num_of_rest} more",
+ "hcTWWh": "Sophisticated admin, audit, security and integration capabilities.",
+ "hczh4U": "Deselect all",
+ "hd+jLJ": "Account",
+ "he/OAb": "Not helpful",
+ "heeSqP": "Point your camera at the QR code to download Dropbox.",
+ "heuH3M": "Dropbox logo",
+ "hf0hON": "Google sign-in has been disabled. Sign in with your Dropbox password or ask your Dropbox admin for help.",
+ "hfH1V+": "You need {licenses} more licences to add the {team_name} team.",
+ "hfvm5k": "People with the link can view until {date}",
+ "hg4ta7": "Usage report",
+ "hgAISZ": "Anyone with this link can view the file. Downloads disabled.",
+ "hgaabe": "Premium productivity features and simple, secure file sharing",
+ "hgfkuu": "Install now",
+ "hgpGgc": "Invitation sent!",
+ "hh7boA": "Suggestions",
+ "hhK/pu": "To learn why some files and folders are incompatible with certain operating systems, click here.",
+ "hhZ/qz": "Security alerts",
+ "hhkkVi": "15-day trial",
+ "hhoOQw": "Usage:",
+ "hhptWM": "This file is too big to preview.",
+ "hiHRLr": "Rewind Dropbox",
+ "hiUob7": "Deleted Binder",
+ "hioLXD": "You turned on viewer info",
+ "hith0F": "Videos/images",
+ "hjQOY6": "Other Apps",
+ "hjZImV": "Sign and request signatures for your documents. Track the entire signature process.",
+ "hjhBkZ": "Regardless of who you\u2019re working with or what you\u2019re working on, we have easy ways to share files and folders.",
+ "hjm1hT": "Search results ({total})",
+ "hl1qZM": "\u2013",
+ "hl63LR": "{count, plural, one {Folder will only be visible to members on the web. Members can sync what they need using Selective Sync.} other {Folders will be only visible to members on the web. Members can sync what they need using Selective Sync.}}",
+ "hlOfga": "Open files with {app_name} by selecting it from the Open menu in Dropbox.",
+ "hm26aB": "Move the files you use less often off your computer and into the cloud, saving your hard drive space.",
+ "hmAOD2": "Share any file, big or small",
+ "hmCBEl": "View files on Dropbox",
+ "hmUINz": "What\u2019s the difference between a showcase and a folder?",
+ "hmh3kt": "Recover older versions and restore deleted files.",
+ "hn5b6E": "or",
+ "hnAmTE": "Your transfer has been saved",
+ "hoL8IW": "Free right now",
+ "hoV1bd": "Changes saved",
+ "hoisUP": "Add team folders",
+ "hp1wzi": "Informational",
+ "hpA+QI": "Tap the 'Options' button (\u22ee).",
+ "hpC7/0": "There was a problem unstarring your selection",
+ "hpOZFA": "Removing members from {current_folder}\u2026",
+ "hqCtpe": "Couldn\u2019t update. Try again in case it was a one-off, or reload the page.",
+ "hqH/YD": "Account plan",
+ "hqSsCo": "Upload folder",
+ "hqWZ70": "Select all",
+ "hr57hL": "Your team admin has disabled some email notifications.",
+ "hrSJQL": "1 of 4",
+ "hrTSua": "Adobe RGB",
+ "hrgx67": "Loading folders",
+ "hrvk/J": "right arrow",
+ "hs+RwR": "Member space limits",
+ "hsXGK8": "Reconnect to {service_name}",
+ "hssOFn": "Ask Dropbot",
+ "hsvG4I": "Upload cancelled",
+ "htB2XI": "We also sent you a confirmation email to get started.",
+ "htHRUf": "Some of these items are shared. You no longer have access to any of them, so you can\u2019t restore or permanently delete those items.",
+ "htIrze": "Preview",
+ "hts6Dr": "Suspended members still take up licences but can\u2019t sign in",
+ "hu/463": "Flow",
+ "huBwTA": "View this folder in the admin console",
+ "hunQnq": "Folder history",
+ "hvAv6t": "Copy undone.",
+ "hvVEnY": "Include any specific details you want people to know",
+ "hvbmr4": "Set up personal Dropbox",
+ "hvqdPv": "Monday to Friday",
+ "hwBwEN": "Share files with your Outlook contacts",
+ "hwF6yj": "Recover from accidents or ransomware by reversing all changes to your content at the folder or account level",
+ "hwg2F4": "Remove this export?",
+ "hwnHOl": "You won\u2019t get an alert if someone shares malware with your team.",
+ "hwq/Wo": "Go to the admin console.",
+ "hxDJw2": "The included audit trail ensures actions are tracked and time-stamped",
+ "hxEGcF": "Send big files with Dropbox Transfer",
+ "hy3KfK": "All ready to send",
+ "hyjhAF": "What is the difference between {trademark_business} and Dropbox {trademark_plus}?",
+ "hz+qUq": "{planSchedule} subscription",
+ "hz1weP": "Downloaded",
+ "hzJBex": "Removing...",
+ "i+DKxf": "Auto, fired, return detected",
+ "i+FdYu": "Attach files and compose emails with Gmail",
+ "i+PJQ7": "Password",
+ "i+nVaK": "Lullabot",
+ "i/J8lD": "Learn more about Smart Sync",
+ "i/KiYl": "Error asking {name} to unlock {filename}",
+ "i/ragh": "Weak",
+ "i04Frc": "Coverage.",
+ "i0sxuP": "{group_name} is now user managed",
+ "i1KhGx": "Advanced security controls",
+ "i1dHh4": "{transfer_title} will be permanently deleted and shared links to it will no longer work.",
+ "i1llDx": "{count, plural, one {{count}+ results} other {{count}+ results}}",
+ "i23hig": "Which of the following Vault features is most valuable to you? [Select up to 3]",
+ "i2Xj04": "You edited {single_item_name}",
+ "i3PhyH": "{space} or more of encrypted cloud storage",
+ "i47/vU": "Transfer deleted",
+ "i4Xv9N": "Other",
+ "i4xJK0": "Go to your inbox and click \u201cVerify your email\u201d in the email we sent you.",
+ "i4xoYU": "Invitations sent",
+ "i51PSV": "Cancel processing this export?",
+ "i5Pk4k": "What's the difference between {trademark_business} {trademark_business_standard} and {trademark_business} {trademark_business_advanced}?",
+ "i5Rxy8": "Shared folders will move with their owner to the new team, but their former team members won\u2019t lose access.",
+ "i6213M": "Your account comes with a free trial",
+ "i62rvF": "{current_step} of {max_step}:",
+ "i6x5Em": "Step 2 of 4: How it works",
+ "i7YHkL": "Team collaboration, any time, anywhere",
+ "i7aMt9": "You moved {single_item_name} out of this folder",
+ "i7chva": "create a new account",
+ "i7rShS": "Take a look at what\u2019s shared",
+ "i88LS8": "{count, plural, one {Members of the file with this link and password can edit. Expires in {count} day. Downloads disabled.} other {Members of the file with this link and password can edit. Expires in {count} days. Downloads disabled.}}",
+ "i8CRJi": "Remove domain",
+ "i8w4Al": "External",
+ "i8yCZB": "Visit our Help Centre",
+ "i8ycyk": "Sign out of devices link",
+ "i98Ff5": "Upload",
+ "i9a5v5": "Please change your password",
+ "i9dq7T": "Team members",
+ "iA5Blb": "Unapprove",
+ "iAu2WN": "{count, plural, one {In {count} shared folder with you} other {In {count} shared folders with you}}",
+ "iB4mTw": "To free up space, set all of your files as online only in Dropbox. You\u2019ll still see everything in your account in the Dropbox folder on your computer. Just double-click any file to download it again. Learn more about Smart Sync",
+ "iB9QsT": "Your refund is on its way",
+ "iBIJgM": "Show recovery codes",
+ "iBTG1t": "You got new features for free",
+ "iBVBlk": "Open Microsoft files in Office for the web, without leaving Dropbox. Set your editor of choice as the default, and easily collaborate in real time.",
+ "iBljNn": "Dropbox Customer Service",
+ "iBp3QN": "(prices include GST)",
+ "iBse65": "Try out new ways to protect your stuff in Dropbox. Just added, at no extra cost.",
+ "iC9NTD": "Delete member",
+ "iCGdZd": "Search result {index} of {suggestion_count}: {aria_title} in {location}",
+ "iCdTjS": "Last active {time_ago}",
+ "iCq+2J": "{count, plural, one {{count}file} other {{count}files}}",
+ "iCqcy2": "Approximate location",
+ "iD/2F/": "Background image",
+ "iDA8U1": "Viewer history",
+ "iDLPPu": "You\u2019ve used all your space for this transfer. Remove some files to continue.",
+ "iDkFZl": "Open Dropbox to pair",
+ "iELiKe": "All members will lose access to team files and folders",
+ "iF9AcH": "Sync tasks from",
+ "iFE9SB": "You can view and comment on many file types, including video, directly from Dropbox.",
+ "iFX+XI": "Download",
+ "iFdKJv": "Link copied to clipboard.",
+ "iFgrr6": "Saving PDF in {cdm_tmf_name} folder because you don't have edit access to the current folder...",
+ "iFh+u8": "Waiting for {email} to accept",
+ "iGKSMx": "Send",
+ "iGLEW5": "Someone comments or replies to my comment",
+ "iGSzy9": "You can use this message to explain that you\u2019d like to give them emergency access to your important files.",
+ "iGfiaV": "Add to starred",
+ "iGpADw": "{display_name} and {number} others",
+ "iGy/+d": "Priority",
+ "iHieh5": "{numberOfEmailsToInvite, plural, one {Sending {numberOfEmailsToInvite,number} invitation...} other {Sending {numberOfEmailsToInvite,number} invitations...}}",
+ "iHnMm2": "This will unlink your accounts everywhere. If you added a linked account on your mobile or desktop app, unlinking will remove the last account you added from that device.",
+ "iHrvAa": "Folder created",
+ "iI0W58": "Preview transfer",
+ "iI2vyR": "Keep life organised and work moving \u2013 all in one place",
+ "iI4a2O": "It looks as though they\u2019re already on the list.",
+ "iIJvk8": "refresh the page",
+ "iIPJmE": "Advanced productivity features and simple, secure file sharing",
+ "iIucBq": "Get more space",
+ "iJBP2G": "To",
+ "iJCr3W": "You have no licences available.",
+ "iJfsyD": "Access restricted. Not shared with all members of {parent}.",
+ "iK5+GC": "See all features",
+ "iKrhJI": "Settings for {team_name}",
+ "iL3G6c": "Your team will be signed out of Dropbox",
+ "iL6dYt": "Part",
+ "iLM+Th": "True",
+ "iLRz1S": "Dropbox Professional",
+ "iLtYQ8": "{price} per year. {tax_string}",
+ "iLw/49": "Reports",
+ "iM/K8p": "Show me how to...",
+ "iN+FK7": "{count, plural, one {Anyone in the {trademark_business} team with this link and password can view the file. Expires in {count} day. Downloads disabled.} other {Anyone in the {trademark_business} team with this link and password can view the file. Expires in {count} days. Downloads disabled.}}",
+ "iN0GiQ": "You unlocked this file",
+ "iN7jUB": "Change your password",
+ "iNPp9N": "Where should a record be made when you sign in to this member\u2019s account? If your choice is to notify the member, they will receive an email stating that you signed in to their account.",
+ "iNfEof": "Delete",
+ "iO702J": "1 TB (1,000 GB) of storage space",
+ "iO9fs7": "No results found. Try different keywords.",
+ "iOLwjz": "Couldn\u2019t retrieve shared links. Reload the page to try again.",
+ "iOUGcl": "Change deadline",
+ "iPDKbr": "Try for free with Professional",
+ "iPE+wJ": "I\u2019ve changed my mind \u2013 take me back to Dropbox",
+ "iPVwvJ": "Your free trial ends on {trial_end_date}. If you don\u2019t cancel your free trial by that date, we\u2019ll charge you {total_price} {schedule} (including taxes) until you cancel your plan. Charges won\u2019t be refunded when you cancel, unless it\u2019s legally required. Your payment data is encrypted and secure. All amounts shown are in {currency}.",
+ "iPfB46": "Pause",
+ "iPxFEV": "Import CSV",
+ "iQ7Rjk": "Failed to cancel changes.",
+ "iQQaEB": "Next",
+ "iQWycD": "Coordinate recruitment activities and stakeholders in one place. Consolidate candidate data, manage interview schedules and co-edit interview questions.",
+ "iQcSYs": "Enable or disable the file request feature",
+ "iR68zV": "Lock",
+ "iRKebb": "{lockholder_name} temporarily locked editing for this file {ago}. You can view it while it\u2019s locked, or ask them to unlock it.",
+ "iRMpLo": "Get a new email address to replace the current one.",
+ "iRYhK7": "App Centre",
+ "iRcegI": "Customise settings",
+ "iRdFJf": "Remove",
+ "iRjYtd": "Please enter a valid VAT number (e.g. {examples}).",
+ "iSL0j/": "For teams",
+ "iSu3QF": "Let\u2019s try to change your email address ({email}) from a linked desktop client or mobile app. This will send notifications to all of your linked desktop clients and mobile apps.",
+ "iTWWo2": "We\u2019re sorry to see you go. Let us know why, and we'll try to help or improve our offering in the future.",
+ "iU1Nce": "Smart Sync setting saved.",
+ "iUbSva": "Preparing document for signing...",
+ "iV8q3P": "Get more out of Dropbox by connecting with the tools you love",
+ "iVI2Hm": "Deleted forever.",
+ "iVOKJj": "Export all member data",
+ "iVmeBf": "Disable comments",
+ "iWHTv1": "Phone number",
+ "iWLNiT": "Sundance Institute logo",
+ "iWYk2k": "Colours",
+ "iWehM3": "What does your team do with files?",
+ "iWlgDz": "{count, plural, one {Only you can view via the link. Expires in {count,number} day. Downloads disabled.} other {Only you can view via the link. Expires in {count,number} days. Downloads disabled.}}",
+ "iWnZF3": "Team profile",
+ "iWoouL": "To re-link your Dropbox files on the infected computer, you must first remove\n the malicious software. Dropbox can\u2019t remove it for you, but antivirus software\n can. You can find antivirus software by searching on the web. If a reinfection occurs,\n Dropbox can help you recover your files again. Remember, all of your files are\n already accessible on dropbox.com.",
+ "iWy49e": "{email} is not a valid email address.",
+ "iWzO4p": "Group by",
+ "iXDCUD": "Freeing up space is easy. Move stale files and folders to online-only. They\u2019ll still be visible and accessible from your desktop, even though they\u2019re off your hard drive.",
+ "iXgIdV": "Get {free_months} months free with your first year of {dropbox_plan}*. This offer expires on {expiration_date}.",
+ "iXpEkq": "Nothing, they won\u2019t be deleted forever or hidden. You can permanently delete them in the admin console",
+ "iYKEBU": "Send feedback",
+ "iYXryC": "If you remove a member, copies of any files held for them will be released.",
+ "iYnBgp": "Dropbox Paper docs",
+ "iYuN4k": "Stay secure",
+ "iZ/euB": "A video showing the various features of Smart Sync",
+ "iZ5ZIO": "Integration",
+ "iZQ1UI": "Deliver by copying a link or sending an email",
+ "iZQr78": "{count, plural, one {Only {count} day left} other {Only {count} days left}}",
+ "iZT+Vn": "You don\u2019t have permission to add files to that folder. Please choose another destination.",
+ "iZZqcG": "Let\u2019s get your docs into Dropbox",
+ "iZf9f+": "Showcase icon",
+ "iZo4vO": "Invalid email",
+ "ia70+X": "Do you want to continue using {trademark_business}?",
+ "ia9qta": "edit everyone\u2019s default",
+ "iaAy83": "Manage everything for all admins and members",
+ "ibX+h2": "You are ready to start using Dropbox!",
+ "ibhqsO": "Language",
+ "icJd4i": "Name",
+ "icWO/S": "Choose files to {upload_folder_name}. You can select more than one file at a time.",
+ "icbOz5": "You can can annotate video projects, track review cycles and capture time-coded feedback. The Vimeo Dropbox extension simplifies video sharing and reviews. New users get 30 days of free video review.",
+ "icuzEw": "More options",
+ "idEM1s": "End date",
+ "idHU9i": "The {card_name} card with this file attached was moved to the {board_name} board",
+ "idf9TB": "We\u2019ll send another email to {email} and the other admins in this team.",
+ "idoX4w": "Sign up for Dropbox",
+ "ieZKvO": "{member_name} was removed from your family.",
+ "iedPeh": "Try Plus free",
+ "ieggV3": "Connect",
+ "if/aG/": "Members will now only be allowed to use the Dropbox EMM app. Any members using the normal Dropbox app will be signed out.",
+ "if8xIl": "Owner",
+ "ifEcof": "Yes",
+ "ificAs": "ID",
+ "ifmXs6": "Try {trademarkBusiness} free for {trialDays} days",
+ "ifpyy0": "or",
+ "igA4sB": "Use existing account ending in {last_4}",
+ "ighXud": "It looks as though you have already added that folder.",
+ "igpP7N": "What's Included",
+ "ihiPy5": "No other alert types triggered in the last 7 days",
+ "ii5cqV": "Request to manage this team is pending.",
+ "iiH9u5": "To turn this feature off or create a new email address, open settings.",
+ "iiTwXU": "Wiki \u2192",
+ "iiU9N+": "Looks as if you already have this! Take it for a spin",
+ "iidQeN": "Easily build account plans for every deal you work on. Bring together critical information about your customer, competitors and sales strategy that you can access when you're on the go.",
+ "iiiHMO": "Project management",
+ "iij/7N": "Share your work in the best light",
+ "ijhnb9": "Sharing links externally",
+ "ijtd/5": "Select image",
+ "ik3Lzw": "Alert policy edited.",
+ "ikAVu1": "By confirming, your downgrade to Dropbox Basic will be cancelled.",
+ "ilfKLu": "Filter to {folder_name}",
+ "ils48n": "Be inspired by a team like yours",
+ "im2GDs": "Please select a reason.",
+ "im3MR+": "Asked {name} to unlock {filename}",
+ "imVwQa": "{count, plural, one {{count,number} file} other {{count,number} files}}",
+ "imh4LV": "Attach files to Trello cards or create new ones from Dropbox.",
+ "imqtsa": "Selecting the file allows you to join a Zoom meeting or send a Slack message to those who have access to the file, and also see relevant apps for the selected file.",
+ "inPOPC": "Off",
+ "ini0mY": "Anyone with the link",
+ "ioDRnq": "50-99",
+ "ioEtgN": "Document",
+ "ioU4JD": "Average",
+ "ioVPeC": "Your plan includes as much space as you need and finite API calls.",
+ "iopTgP": "Couldn\u2019t send",
+ "ioscbh": "Extremely satisfied",
+ "iowh4/": "Delete",
+ "ip83aD": "You\u2019ll create a new, personal Dropbox account for your existing files and Paper docs.\nThis will give you two accounts \u2013 your {work_email} account for {team_name} work and your\n{personal_email} personal account for your existing files.\n{team_name} has disabled Smart Sync, so you\u2019ll be signed out of Dropbox and online-only files will be\ndownloaded to your hard drive next time you sign in.",
+ "ipR70/": "Or, cancel your subscription by following these steps:",
+ "ipcJZm": "The group name should be under {max_len} characters",
+ "ipgitK": "Update billing information",
+ "ipw6gY": "Send files to Slack from Dropbox",
+ "ipz8kN": "{price_per_year} per licence over the course of a year.",
+ "iq/tnl": "Please update your billing information",
+ "iqApHe": "Thanks for your feedback",
+ "iqMtOi": "Dropbox",
+ "iqQKbT": "Move to vault",
+ "iqXxFK": "250 characters maximum",
+ "ir1qaF": "We\u2019re trying to log you in automatically",
+ "ir988d": "Next month",
+ "irVxtF": "Couldn't remove you, but it might be a one-off. Please try again.",
+ "irebz4": "Keep work flowing \u2013 on the go",
+ "is1Jb0": "{count, plural, one {Pasted {count} item.} other {Pasted {count} items.}}",
+ "is2NQv": "Find the plan for you",
+ "is9FMB": "Your free trial period won\u2019t be affected, and we won\u2019t charge you until after your free trial ends.",
+ "isbc69": "Just so you know, you can restore {display_name}\u2019s account for 7 days. You can also invite 1 more member at no extra charge.",
+ "isuPZb": "Can I combine Dropbox accounts?",
+ "itZX4g": "Publish video",
+ "itgepM": "Keep doing your best work, without interruption",
+ "iu1NNY": "This item will be deleted, are you sure?",
+ "iuQXiL": "Advanced security features and admin controls",
+ "iud2fN": "No inclusions",
+ "iuxkKs": "Sales template",
+ "ivKW9K": "{trademark_businesss}",
+ "ivclfb": "Traffic and insights",
+ "iwO85Q": "Doing this would put you over capacity. Families can have up to 6 members.",
+ "iwdwdQ": "You\u2019ll be charged {total_price} {schedule} until you cancel your subscription. Previous charges won\u2019t be refunded when you cancel unless it\u2019s legally required. Your payment data is encrypted and secure. All amounts shown are in {currency}.",
+ "iwfQCV": "This usually takes about 15 minutes, but it could take a few hours if you have a lot\n of files in your Dropbox account. You can go ahead and close this window. Rest assured,\n recovery will continue at our end. We\u2019ll email you when your files are ready to\n use again.",
+ "iwxaCb": "Keep the device approved",
+ "ix4+1x": "Choose your space",
+ "ix7pHj": "Or add groups to this team folder.",
+ "ixnIo5": "{plan}",
+ "iy/Jfm": "Cancel",
+ "iylQou": "(including {tax,number,::percent .##} tax)",
+ "iyqtlQ": "Settings",
+ "izeluw": "Grid",
+ "izfEGW": "{remainingLicenses,number} / {totalLicenses,number}",
+ "izgCLA": "Sending invitations",
+ "iznC+q": "Open 'Manage apps' page",
+ "j+AeKy": "Untitled",
+ "j+Fl5g": "{policyName}. Open this policy.",
+ "j+Ib+Z": "From {date}, we\u2019ll charge you {scheduled_total} per month on your IBAN ending {last4}.",
+ "j+fUVt": "Just a click away",
+ "j/dwP3": "Create \"{group_name}\"",
+ "j0CRG2": "Done",
+ "j0m31P": "Upgrade plan",
+ "j0qRv4": "Toggle comments sidebar",
+ "j0yizE": "General information",
+ "j16O/G": "Connected apps",
+ "j1F9Ic": "Forgotten PIN?",
+ "j1nB7Q": "illustration of a man looking at his phone",
+ "j1xV3U": "Close",
+ "j28kk5": "When someone asks to join your team, you\u2019ll see the request here.",
+ "j2wHLa": "Folder hierarchy",
+ "j3YrhH": "Ubuntu 14.04 or higher (.deb)",
+ "j3fR4g": "Archive campaign",
+ "j500HF": "Hide deleted files",
+ "j5NUj6": "This country change isn\u2019t supported.",
+ "j5Qday": "Go to my account",
+ "j5oJ6S": "Unfollow",
+ "j6GFFI": "With {dropbox_paper}, you can collect ideas, create project timelines, assign tasks and review work in real time, from anywhere.",
+ "j6QRoN": "Enter here",
+ "j6si/H": "Sharing settings",
+ "j7O6M6": "Create and continue",
+ "j7hJG8": "Find docs without leaving Slack, and post those links directly to your team.",
+ "j7yig7": "Moved files",
+ "j8bMOR": "Your plan has been automatically downgraded. If you want to continue using it, it only takes a few minutes to add your billing information.",
+ "j8t1Zs": "Yesterday at {timestamp}",
+ "j97pkN": "Other",
+ "j9LwK9": "The passwords don\u2019t match. Please try again.",
+ "j9MFMq": "Allow",
+ "j9UMyF": "Edit",
+ "jA/byg": "With my team",
+ "jA9MMw": "End session",
+ "jAFBRn": "Learn more about {plus}",
+ "jAzCAz": "can edit",
+ "jBym19": "Disable",
+ "jCcjRy": "Loading\u2026",
+ "jCl4y0": "Add teams so you can coordinate settings such as security, billing and more.",
+ "jCptbf": "Manage {team_member}'s files",
+ "jD02CF": "Copy selected file(s)",
+ "jDD++i": "Content stays within the team",
+ "jDHUZe": "You don\u2019t have access to this content",
+ "jDm+wB": "If you don\u2019t recognise this ticket, report it to Dropbox to keep your account secure.",
+ "jE16E1": "Administrative control of {team_name} data",
+ "jEEe3K": "Help to restore and delete files",
+ "jEKnhO": "From Dropbox",
+ "jENkzW": "Cannot add folder. Your Dropbox account is full.",
+ "jETKiQ": "Your Dropbox account space is full",
+ "jF/OmO": "Will you need more than {standard_space_short_form} of space?",
+ "jGBZwN": "Team productivity",
+ "jGBxEZ": "Exceptions list",
+ "jGSF08": "Manage access",
+ "jGSFH4": "Payment details",
+ "jGeIrr": "External branding",
+ "jGhCkM": "Change password",
+ "jGmwKF": "Sign in",
+ "jGw0V/": "{filename} will be gone forever and you won\u2019t be able to restore it. Permanently deleting items won\u2019t free up space.",
+ "jHPjnH": "Invited {user_email}.",
+ "jHXRss": "Couldn\u2019t remove member. Try removing them again.",
+ "jHar3s": "Date",
+ "jIDIpq": "You viewed",
+ "jId+M1": "Version history",
+ "jIeV0e": "That email address doesn\u2019t look quite right",
+ "jJAZ91": "There was a problem disabling your security key.",
+ "jK2/my": "Cannot invite them with that email address",
+ "jKUEit": "The secondary team will become part of your team, and merge their content, members and billing.",
+ "jKcvSu": "New groups",
+ "jKfr1E": "Please enter a comment",
+ "jKmo7D": "Your local currency has changed. Your selected plan\n is {monthly_per_user}/user/month ({annual_price} charged yearly).\nYou\u2019ll only be charged if you don\u2019t cancel your trial before it\nends on {trial_end_date}.",
+ "jLOGFI": "No permissions to share",
+ "jLgzr1": "Primary team",
+ "jLtv48": "Last used",
+ "jMAAU2": "{b}You can view your linked apps here.",
+ "jMSLzz": "Log out of Dropbox",
+ "jMyZGp": "Payment method successfully updated.",
+ "jN1kbT": "{value, plural, one {{value,number} day ago} other {{value,number} days ago}}",
+ "jN5OfV": "People with this link can edit",
+ "jN5Zg4": "Coordinate",
+ "jN8EKr": "Preview link",
+ "jNOY0x": "Add custom branding by choosing a background image and logo for your transfer\u2019s download page.",
+ "jNlrhT": "Click Add to enable",
+ "jO/Gk0": "View groups",
+ "jO8iAS": "View and attach Dropbox files directly in Canvas.",
+ "jOHkqV": "Your move will take about 25 minutes. Some features in Paper may be disabled during that time.",
+ "jP8rwL": "Phone support",
+ "jPSPu2": "This applies to docs shared in the future but not to any docs shared with people outside your team before external sharing was disabled. You can see docs that have been shared with people outside your team in the",
+ "jQ1eDP": "Your Dropbox {plus} plan was activated with a licence key. Your next licence key will be activated on {date}.",
+ "jR0VEh": "Keep the team and purchase {trademark_business} instead",
+ "jR3Yhq": "{active_exports, plural, one {{active_exports} ready} other {{active_exports} ready}}",
+ "jRCvZ9": "64-bit:",
+ "jRRC91": "View invitations",
+ "jRRNIj": "Need to speak to us?",
+ "jRW/3Y": "Anyone in your {trademark_business} team with this link and password can view the file.",
+ "jRdmw9": "name@example.com, example.com",
+ "jRg9vc": "Subject",
+ "jRjIMn": "Fonts",
+ "jS+Fj0": "Sort in descending order",
+ "jS04DJ": "Manage your {biller} subscription",
+ "jSaHiA": "Your account won\u2019t be merged with {team_name} and Dropbox will remove the\n{work_email} secondary email from your current account.",
+ "jSbM1a": "Dentsu Inc logo",
+ "jSmn2k": "Give specific people permission to edit or have read-only access for individual folders.",
+ "jTnbLy": "Account deleted, but you can restore it",
+ "jUFAJz": "Restore & delete",
+ "jURPvf": "{plus_storage_tb} ({plus_storage_gb})",
+ "jURpTR": "Individualised support to help admins manage at scale",
+ "jUzA4E": "Learn about Showcase",
+ "jVeAq0": "Unsynced folders don\u2019t start on members\u2019 computers",
+ "jViA8I": "1. Review subscription",
+ "jW+e5B": "Not sure what to add?",
+ "jWNxHL": "Changed setting to",
+ "jWvR3a": "Shared",
+ "jXCqSS": "{trademark_passwords}",
+ "jXF9I9": "Would you like to open {file_extension} files with {web_editor_name} by default?",
+ "jXQ62U": "{cost} per month",
+ "jXim1P": "You don\u2019t have permission to rename files in this folder.",
+ "jXqkXG": "Drag and drop files into this window to upload.",
+ "jXr05+": "Cancelling trial...",
+ "jYhsC6": "Something went wrong",
+ "jZ8v61": "When users in {domain} are invited",
+ "jZ93So": "Select Add.",
+ "jZMXVZ": "If you think someone else is trying to access your Dropbox account, please let us know.",
+ "jZP27H": "Add from Dropbox",
+ "jZUA7r": "This file cannot be previewed because you are offline",
+ "ja3xlk": "Creative brief \u2192",
+ "ja7gF8": "1. Make sure you have the Dropbox app from the Edu Apps marketplace, or search for it from your admin account.",
+ "jaE2Yv": "Your Family Room folder will be dissolved. All members will receive a copy of the folder in their Dropbox.",
+ "jaUndl": "3 months",
+ "jabBjO": "Stop syncing files from this folder?",
+ "jabE//": "VAT number (optional)",
+ "jauVAp": "With a team",
+ "jb484P": "{vacuuming_policy_max_days} days of file recovery",
+ "jbUImH": "Your current plan is {label} {size}",
+ "jbf/SH": "Add a Zoom meeting",
+ "jdahlv": "Cancel",
+ "jdfLE9": "Recover files",
+ "jdhQTU": "Cancel invitation",
+ "jdk7Bi": "from creation",
+ "jdnaZR": "Deleted files cannot be added to the clipboard",
+ "jdnhLz": "text me the link",
+ "jdwyMe": "Remove from your organisation?",
+ "je8Wzp": "Bring Slack and Dropbox together",
+ "je9GiC": "Revenue driving:",
+ "jeeivT": "Set as default",
+ "jf5VEX": "See details.",
+ "jfFpnu": "Partial",
+ "jfbMQx": "Microsoft details",
+ "jfkoqi": "Make your password a bit harder to guess \u2013 add more numbers, symbols or characters.",
+ "jfyCT3": "Company Inc.",
+ "jgGyr5": "You\u2019re a member of the {team_name} Dropbox account.",
+ "jggo6V": "Join team now",
+ "jgsbng": "May",
+ "jh+GyF": "{count, plural, one {Permanently deleted {count} item.} other {Permanently deleted {count} items.}}",
+ "jhCM8b": "{count, plural, one {Transfers with more than {count} file will take a long time to upload. Consider removing some files to send your transfer faster.} other {Transfers with over {count} files will take a long time to upload. Consider removing some files to send your transfer faster.}}",
+ "jhPyi8": "More space.",
+ "jhbnO0": "Audio files",
+ "jheC87": "close columns modify popover",
+ "jizcxx": "Add, join or instantly start Zoom meetings directly from Dropbox files.",
+ "jjZhiF": "Shared folders",
+ "jjaKZc": "Unlimited storage via Dropbox",
+ "jjd0Gl": "You\u2019re not able to leave the {team_name} Dropbox at the request of your admin. Please contact your admin for assistance.",
+ "jjwM34": "Members",
+ "jkI5tw": "Block",
+ "jkTXs0": "Please enter at least one valid email address.",
+ "jkeVcL": "When you leave:",
+ "jl3Ntn": "{name} turned on viewer info",
+ "jlNRKl": "Previous slide",
+ "jlf+zq": "{name} edited this file",
+ "jmxGJf": "{count, plural, one {Try {dropbox_plan} for free for {count} day when you sign up by {expiration_date}.} other {Try {dropbox_plan} for free for {count} days when you sign up by {expiration_date}.}}",
+ "jnxHng": "Close",
+ "joWGiE": "New request",
+ "jofRGL": "or use existing Dropbox account",
+ "jowUtP": "Try again",
+ "jp8dbl": "Not started",
+ "jpA9+q": "{count, plural, one {Anyone with this link can edit the file. Expires in {count} day.} other {Anyone with this link can edit the file. Expires in {count} days.}}",
+ "jpCK4T": "Edit in {editor_with_lock_string}",
+ "jpM7HQ": "You\u2019ll need to sign in on your computer before you can use this device.",
+ "jqBL8f": "Please enter a valid bank account number.",
+ "jqIjGb": "Upgrade to {dropbox_plus} for more space",
+ "jqiXoh": "Open with",
+ "jqkqwe": "Deleted Family Room folder",
+ "jqqAP2": "This file cannot be previewed",
+ "jrZxPR": "Copy to Paper and make changes or ask for feedback.",
+ "jrkcSi": "Select your content and be ready to sell it to the world within minutes.",
+ "jrp8mr": "Viewing results for\u00a0{query}",
+ "jrzeLR": "Advanced sharing",
+ "jsH+sg": "Learn more about file recovery",
+ "jsKn7O": "From",
+ "jsRFFw": "Weren't expecting that?\n No worries, feel free to close this page and go back to whatever you were doing.",
+ "jsWdPR": "Dropbox makes it easy to send files big and small, and collect everyone\u2019s comments in one place. Viewers can access links and preview over 150 file types, as well as add comments and read yours \u2013 even if they don\u2019t have a Dropbox account.",
+ "jt1FPT": "Let\u2019s go",
+ "jt3SDw": "Name or email",
+ "jtRued": "No, thanks",
+ "jtc7VA": "Folder activity",
+ "jtf26E": "User research report",
+ "juL9cJ": "Update access to this file?",
+ "juQS1k": "Launch from Dropbox",
+ "jv7Bnm": "We\u2019ll alert you if a member shares sensitive information outside your team. Make sure that scanning and labelling is on too.",
+ "jvUwnG": "This file is password protected",
+ "jvXMKz": "2 of 3",
+ "jvj9Gv": "Create external sharing report",
+ "jvqk4F": "Protect your peace of mind",
+ "jvxZmK": "Learn how to manage cookies in Microsoft Edge.",
+ "jw1rtm": "Limited access",
+ "jwCux9": "{number} more",
+ "jwL3/i": "Remove admin",
+ "jwZnwu": "Keep work moving \u2013 even when you\u2019re on the go \u2013 with simple mobile sharing.",
+ "jx/RSW": ". If it still doesn\u2019t work, please try a different verification method or ",
+ "jxjvN9": "We\u2019ll let the owner know whenever you change these settings",
+ "jybGUg": "Loading",
+ "jyiB1b": "{count, plural, one {Try {dropbox_plan} for free for {count} day when you sign up by {expiration_date}*.} other {Try {dropbox_plan} for free for {count} days when you sign up by {expiration_date}*.}}",
+ "jzlUGo": "No boards found. Try different keywords.",
+ "k+KZGw": "No credit card needed",
+ "k+pBNG": "Something went wrong. Try importing the CSV again.",
+ "k+wEik": "Security check-up tool",
+ "k/ikjr": "Supplied by your identity provider. Members will be redirected to this page after they log out.",
+ "k0bKME": "Support admins can help members with limited tasks, including password resets. Are you sure you want to continue?",
+ "k12g71": "({size_in_megabytes} MB)",
+ "k1SvNl": "Convert {display_name}\u2019s account to individual Dropbox Basic account",
+ "k1tyt5": "Request declined",
+ "k2WBHu": "Agree",
+ "k2bVak": "Loading your recent items",
+ "k2kOPm": "Trusted devices revoked.",
+ "k30SzK": "Off",
+ "k3Efe1": "How much space has your team used?",
+ "k3LUkX": "Anyone in your Dropbox team with the link can view this file",
+ "k471uF": "The new team might have different settings for things like security or groups that members will need your help setting up.",
+ "k48Xfi": "{count, plural, one {Move {count,number} member to {team_name}?} other {Move {count,number} members to {team_name}?}}",
+ "k4it0G": "Hi, {first_name}, Before you cancel your {dropbox_trial_plan_name} trial, please select a reason below or write your own response at the bottom:",
+ "k4wMx0": "Migration scheduling failed. Please try again later.",
+ "k59Ekd": "Add an email or domain",
+ "k5IBRK": "Unable to complete changes. Please try again.",
+ "k5ONol": "Facebook message",
+ "k5WYg5": "email@example.com",
+ "k5rVZH": "name@email.com",
+ "k5x+Be": "Allow them to connect as many devices as they want to",
+ "k6iceH": "2 GB of storage space",
+ "k7NT+h": "Advanced sharing and sync",
+ "k8Mc9B": "Protect your transfer with a specific expiry date up to 1 year away",
+ "k8PU/Y": "See what files are about without opening them. Preview files in Slack.",
+ "k8RbN0": "By request",
+ "k8YyVZ": "All actions you perform while signed in as {name} will be recorded in the activity log.",
+ "k90RIN": "That didn't work for some reason",
+ "k96ADH": "Size of your organisation",
+ "k9A6sA": "Priority email support",
+ "k9LVWK": "Manage team to-dos with task assignments, due dates and reminder notifications.",
+ "k9ZJuB": "Keep this name as short as possible. This is the name that will be displayed to team members on all platforms. Changing your team name will rename the Dropbox folder on all team members\u2019 computers.",
+ "kA8gdS": "Tasks",
+ "kALZQB": "The maximum amount you can send in a single transfer",
+ "kAM8sM": "I can\u2019t reset my PIN this way",
+ "kAvWhK": "You\u2019ve lost the additional space you\u2019ve been using and access to powerful features such as the admin console, extended version history and Smart Sync. Add your billing info now and you can pick up where you left off.",
+ "kBJj0f": "There was an error whilst uploading your file.",
+ "kBU+3Q": "Your account will be downgraded to {dropbox_basic} and you\u2019ll lose access to {trademark_family} storage and features.",
+ "kBkLSN": "Restoring\u2026",
+ "kBx05Z": "Cancel your {trademark_business} plan",
+ "kBxooo": "Organise team members by the groups they work in. Then give access to everything they need \u2013 and nothing they don't.",
+ "kBy1Ss": "Vault has been deleted",
+ "kC/bFO": "Illustration of an upgraded admin console.",
+ "kC5IWs": "Merge into a primary team",
+ "kCFv91": "To",
+ "kCeQQa": "Choose a different folder",
+ "kCkFri": "Feb",
+ "kDN/V9": "deleted team folder",
+ "kDhNGp": "Did you know you can cancel your account instantly without the need for an agent to\n assist you? You must be the team admin of the account to cancel your Dropbox\n subscription. Find out who your team admin is.\n To cancel, sign in with your team admin account and click\n Cancel your Business subscription\n to be taken directly to your cancellation page.",
+ "kDhrxK": "In order to finish uploading {filename}, you need to add more storage to your Dropbox.",
+ "kDkfmv": "Copying a folder into itself isn\u2019t allowed.",
+ "kE1eOU": "Sophisticated control and security features",
+ "kE7BEY": "Activities:",
+ "kEPEG/": "Who can invite?",
+ "kEjniT": "One plan for everyone",
+ "kF0BIo": "Select type",
+ "kF9jCS": "Sync",
+ "kFIgsQ": "This gives the reseller access to the admin console as an administrator.",
+ "kFNhCf": "Set a custom space limit for this member. {first_name} is currently using {usage}.",
+ "kFTZ1t": "How teams of all sizes use Paper",
+ "kFn6nV": "Can\u2019t find it here? Check out our Help Centre",
+ "kFyzJs": "You",
+ "kG/lBo": "Rotation",
+ "kG5dg/": "When a hold is released, we stop holding copies of any files these members edited",
+ "kG9/VJ": "Your team isn't sharing folders with {userFullNameOrEmail} any more.",
+ "kGQG4U": "WARNING: You\u2019re working in production.",
+ "kGTK+0": "Your current {billing_schedule} total is {total}.",
+ "kGj+8t": "Create space used report",
+ "kGrR3C": "You can decrease costs by removing licences that your team isn\u2019t currently using.",
+ "kGwAJO": "Sample email",
+ "kH07jA": "Manage membership",
+ "kH2CbI": "Account access and security",
+ "kHlg2I": "Delete",
+ "kHube8": "This app no longer has access to your files because you deleted its app folder. You will need to reinstall the app for it to work again.",
+ "kHypS6": "Continue",
+ "kIBlZy": "Below 50",
+ "kIWJ9o": "{count, plural, one {You\u2019ll be charged {new_amount_with_tax_rate_str} to add {count} licence pro rata for the current billing period. From {next_billing}, your new {schedule} total will be {total_amount_with_tax_rate_str}.} other {You\u2019ll be charged {new_amount_with_tax_rate_str} to add {count} licences pro rata for the current billing period. From {next_billing}, your new {schedule} total will be {total_amount_with_tax_rate_str}.}}",
+ "kIc7/9": "{standard_space} of secure storage space",
+ "kIjBHp": "Offload the busywork",
+ "kIpt1I": "Invite members",
+ "kIsBrZ": "Send up to 100 GB per transfer, with customisation options",
+ "kIwRvQ": "End tour",
+ "kJ19st": "Your group must have a name.",
+ "kJ1NVK": "Move items?",
+ "kJA8ZB": "Your request to join {team_name} has been sent",
+ "kJNmy9": "We didn't find any files or folders that will cause syncing problems in either of your Dropboxes.",
+ "kJUE9p": "Sync",
+ "kJlFFC": "Keep working smoothly with {dropboxProfessional}",
+ "kJo5Yt": "Created by",
+ "kJuUzF": "Show admins",
+ "kKQZ9z": "Manage files",
+ "kKQbe+": "
{name},
Which account would you like to connect to the computer {device_name}? If you didn\u2019t request this, please close this browser tab.
",
+ "kKbOL4": "Members of the folder with this link can view the folder.",
+ "kLiPVQ": "Events",
+ "kLkljh": "Videos",
+ "kLq59d": "Device approvals",
+ "kMDxiK": "Folder",
+ "kMNOpp": "Download Dropbox for Mobile now",
+ "kMRv0l": "Shared folders you don\u2019t own",
+ "kMTd0v": "Notify me",
+ "kMZoFx": "By confirming, the scheduled change will be cancelled.",
+ "kMisuu": "{license, plural, one {
/ user,
starting at {license} user
} other {
/ user,
starting at {license} users
}}",
+ "kMzWSX": "History",
+ "kN2jS7": "I signed in successfully",
+ "kOBO/B": "There was a problem completing this request.",
+ "kOMHR0": "{count, plural, one {{count} more member} other {{count} more members}}",
+ "kONgwJ": "Your version of Dropbox was purchased through a Dropbox reseller, so you\u2019re not able to merge into another team.",
+ "kOQNUE": "Get started",
+ "kOXRXq": "Open classification",
+ "kOb587": "/",
+ "kOdY2i": "Replace original",
+ "kP+cJM": "Your team will become part of the primary team",
+ "kPvGgb": "I agree to the Dropbox Business Agreement",
+ "kPvon3": "By downgrading your account, you will also lose access to these important features:",
+ "kQAuKf": "Smart Sync is available on selected Dropbox plans",
+ "kQDw1e": "This Dropbox {plus} plan was activated with a licence key. The plan will be renewed on {date}.",
+ "kQgvhd": "You\u2019re the owner",
+ "kRLsxP": "You moved {single_item_name} from {src_folder} to this folder",
+ "kSeZc+": "Incompatible files and folders",
+ "kTKmYr": "How can Paper help your team?",
+ "kTq6n5": "Save settings",
+ "kTr/8f": "Select all",
+ "kU/sNc": "example@example.com",
+ "kU2r/y": "Try again",
+ "kU4PMt": "Too many invalid codes. Try again in a few minutes.",
+ "kUkCc0": "Add more",
+ "kVEMPr": "Remove",
+ "kVKiLA": "Submit",
+ "kVqbiG": "Cloud editors",
+ "kVwtlK": "This file was added to the {card_name} card in {list_name}",
+ "kWJg9m": "Use the security check-up tool",
+ "kWMR2U": "2. Click Share and select Canvas.",
+ "kWU7Pc": "You\u2019ll save {savePercentage,number,::percent} per licence over the course of a year.",
+ "kWjJlf": "Please enter a valid billing postcode.",
+ "kWp5fF": "Mar",
+ "kWt7lm": "Millions of people use {dropbox_plan} to get more done. With {dropbox_plan} you get:",
+ "kXFsGC": "Create new request",
+ "kXN5sP": "You are also the admin of {team_name} {trademark_business} team. Please contact your account team to cancel your subscription.",
+ "kXptr+": "The owner of some of these shared folders isn\u2019t a member of {team_name}.",
+ "kXrb9A": "Signing out won\u2019t delete any of your files.",
+ "kYNT0T": "Here's the plan we recommend",
+ "kYTbas": "Sent to {name}",
+ "kYZMk+": "Off by default",
+ "kZv7c4": "{numOfMembers, plural, one {{numOfMembers,number} member} other {{numOfMembers,number} members}}",
+ "kaL/cd": "The number of users associated with your plan.",
+ "kac+ml": "Sign in",
+ "kak6Po": "Disconnect {app_name}?",
+ "kayNoT": "Company-managed groups",
+ "kb+66G": "Very strong",
+ "kbGAuG": "PIN and auto-lock to protect final contracts and legal docs",
+ "kbsmZh": "Great!",
+ "kc7uwV": "FamilyPlanOverviewLink",
+ "kcn535": "Compress, edit or sign PDFs. Convert to Word, PowerPoint, Excel and JPG from your browser.",
+ "kd4HJI": "How do I check the remaining space on my Dropbox account?",
+ "kdfCsg": "Search meeting recordings and transcripts",
+ "kdizeA": "Couldn\u2019t find the file.",
+ "kdkdHg": "You\u2019ve been invited, {first_name}. Join the {team_name} Dropbox account and work better together.",
+ "kdoJ8S": "Buy it",
+ "keT34m": "If you need help with a billing issue on your account, please sign in first.",
+ "kej4BW": "Stay with {dropbox_family}",
+ "kf09Vd": "{percentage,number,::percent .##} discount",
+ "kfg1Pg": "Oops! It looks as if you may have forgotten your password. Click here to reset it.",
+ "kfhlgf": "Version history",
+ "kfohK7": "1 hour",
+ "kg9ICw": "Cell contents look incorrect",
+ "kgnA+o": "{total_licenses}",
+ "kgnHFO": "(you)",
+ "kgtBuL": "Turn off",
+ "kguHb6": "Syncing",
+ "kh/GYX": "{count, plural, one {Contact your {team_name} admin to upgrade the team} other {Contact your {team_name} admins to upgrade the team}}",
+ "kh5DKh": "Identity provider sign-in URL",
+ "kh62rs": "Pin \u201c{name}\u201d to...",
+ "ki4GVX": "Approving membership request for {email}.",
+ "kiIqI2": "{name} renamed {single_item_name_prev} to {single_item_name_next}",
+ "kiNZb2": "View file activity",
+ "kis3VH": "Canvas",
+ "kj4Hlb": "Following",
+ "kj7lJe": "Continue to editor",
+ "kjKY36": "We\u2019re sorry you\u2019re thinking of leaving us, {first_name}. By cancelling, you\u2019ll lose the following features:
{transfer_send_size_limit} send size on transfers
Custom branding and logo
Custom expiry dates
Passwords to protect your transfer
",
+ "kjL8Gu": "Save signed documents",
+ "kjnuLN": "General",
+ "kkDDtH": "Because you\u2019re using a company email address with your Dropbox account, the {team_name}\nadmins would like you to join the shared {trademark_business} account or change your email.\nWhat would you like to do? Learn more",
+ "kkTRZE": "Work on your Microsoft Office files with others by connecting Microsoft Office and Dropbox. All edits are automatically saved to Dropbox in real time.",
+ "kkZFs+": "computer",
+ "kl3TP5": "Retail",
+ "kl814b": "What is {trademark_business}?",
+ "klM4mG": "The online upload limit is 300 MB. You can upload larger files with the Dropbox desktop application.",
+ "klOp/1": "Uploading file to Canvas...",
+ "kleJEv": "Leave group",
+ "klqzm6": "Invited {user_email}.",
+ "klwYHA": "Minimum 6 characters",
+ "km+4dK": ".{extension} files can\u2019t be previewed from an archive file.",
+ "kmb+og": "Only team admins.",
+ "kmgDsS": "This helps us suggest better ways to use Dropbox.",
+ "kn0aTF": "List",
+ "knOTX9": "Dropbox automatically backs up your files, pictures and folders in one secure place.",
+ "knPNIT": "Show in File Explorer",
+ "knoSPB": "Only team admins have permission to create this report.",
+ "ko38VZ": "For productivity",
+ "koMmbb": "{count, plural, one {Anyone in the {trademark_business} team with this link and password can view the file. Expires in {count} day.} other {Anyone in the {trademark_business} team with this link and password can view the file. Expires in {count} days.}}",
+ "kocx8E": "User presenting a file in Zoom from Dropbox.",
+ "kopGCT": "Use at least 8 characters and make sure it's two bars strong",
+ "kou/7m": "Invited {email}.",
+ "kp9e20": "Only you can view this link.",
+ "kpH+QX": "Take a moment to review all the progress you\u2019ve made.",
+ "kq/D9n": "Send files by email, create new docs, request signatures with HelloSign \u2013 directly from Dropbox. Spend less time switching between apps and work with the tools you use every day, in one place.",
+ "krtLLj": "Credit card required",
+ "ksdkTA": "Suspend {display_name}",
+ "ksjqrM": "Anyone in your Dropbox team with the link can view this file. Downloads disabled.",
+ "kt0bw5": "From team",
+ "kt7BVE": "My Dropbox",
+ "ktJrGc": "Over 200,000 companies use {trademark_business} every day for work.",
+ "ktpG9L": "Save \u2018{name}\u2019 to my Dropbox",
+ "ktpzw0": "Try {product_name} for free",
+ "ku7o1P": "Breadcrumb overflow",
+ "ku8IMl": "Activate",
+ "kuFRq0": "Only people invited",
+ "kuOXRg": "You have selected the maximum number of users allowed using this page.\n You can contact us if you need additional users.",
+ "kuUQ0r": "To get set up, enter a new email address for your personal account. Then you can decide which files will live in each account.",
+ "kuja1y": "The folder name can\u2019t end with a dot (.)",
+ "kvVtLe": "Two-step verification disabled.",
+ "kvY6vL": "User management admin",
+ "kvj0Bl": "There was an internal Dropbox error, but we can still help you use Rewind.",
+ "kvwOAp": "Archive version",
+ "kw0vLh": "Send invitations",
+ "kwG+lC": "How should your files sync?",
+ "kwHYHw": "Press Esc to exit fullscreen",
+ "kwKKh2": "Do your best work with {dropboxProfessional}",
+ "kx/Ja1": "ISP",
+ "kx4aSx": "View all",
+ "kxLiiI": "Remove from my Dropbox account?",
+ "kxsLrJ": "or purchase {trademark_business} now.",
+ "ky7rEH": "Monday",
+ "kyfaP9": "Add another one",
+ "kzDJ/C": "{member_name} can still access this folder",
+ "kzTnND": "{numYears, plural, one {Get {discount,number,::percent .##} off {numYears,number} year of {dropbox_plan} when billed yearly*. This offer expires on {expiration_date}.} other {Get {discount,number,::percent .##} off {numYears,number} years of {dropbox_plan} when billed yearly*. This offer expires on {expiration_date}.}}",
+ "l+D8z5": "Amount of data",
+ "l+Lp/V": "Need help?",
+ "l+Mf7Y": "Allows editing.",
+ "l+Y42I": "Add email addresses to send out signature requests.",
+ "l+e9nl": "Stay organised and on track from pre- to post-production. Keep everything your team needs in one place \u2013 scripts, music, video, timelines and budgets.",
+ "l+zfU9": "Back to bank",
+ "l/9ohN": "Invalid password",
+ "l/IULL": "iPhone",
+ "l/XSM9": "All",
+ "l/akBu": "Remove filter",
+ "l/c1nt": "Sub-total",
+ "l/iY2C": "when billed monthly",
+ "l/lvUk": "Save to my Dropbox",
+ "l/r0sF": "Browser:",
+ "l08JFQ": "Invite {user_name}",
+ "l0PRXC": "Nothing happened on this day",
+ "l0ZD6o": "{trademark_business} provides three plans to fit your team\u2019s needs. The Standard plan gives your team {space} of shared storage. For teams needing more space, the Advanced and Enterprise plans provide as much space as you need.",
+ "l0i2GT": "Upload",
+ "l0ld2A": "There was a problem displaying your policies. It\u2019s probably a one-off error at our end.",
+ "l13UyS": "Once you\u2019ve filled out the CSV, import it.",
+ "l13WV9": "{name} turned on commenting for {entity}",
+ "l1F+Fk": "As much encrypted storage as needed",
+ "l1R9Tk": "Transfer settings",
+ "l1acJS": "Settings",
+ "l1qgCR": "Already a member",
+ "l1su7t": "Dropbox created. Now download the free desktop app",
+ "l2Mi0q": "Remove your access to this file?",
+ "l3EMEK": "Create transfer",
+ "l3ZNyl": "{name} rolled back {single_item_name}",
+ "l3iAJV": "Go to Trello",
+ "l3jFkr": "Try free for {trial_days} days",
+ "l3mcOc": "Link to restart the download",
+ "l46MMy": "Edited",
+ "l4GYZh": "{supportLanguage} support isn\u2019t currently available. Try chat or email for additional help.",
+ "l4OzW8": "Default workspace updated.",
+ "l4t3NF": "You\u2019re already using this as a secondary email. Remove it",
+ "l5AyQn": "Sorry, your phone code has expired. Please log in again.",
+ "l692Qy": "Share",
+ "l6HDHG": "An image of Apple and Microsoft logos to demonstrate that Smart Sync works on both operating systems",
+ "l6L9q8": "Creating new shortcut",
+ "l6fwd2": "{trademark_business} accounts, pricing and more",
+ "l6rBEu": "Control who can see and join your Dropbox team",
+ "l7Ekii": "Download log",
+ "l7h1V3": "Do you want to delete {file_name}?",
+ "l7h9oT": "Cover image of a product for sale.",
+ "l7p3Z8": "Failed to submit feedback. Please try again.",
+ "l81CUR": "Couldn\u2019t retrieve shared folders. Reload the page to try again.",
+ "l829x/": "false",
+ "l8BtlU": "Get space for all of your photos, videos and projects in one place.",
+ "l8Iecq": "Centralise team content",
+ "l8iaTW": "Action",
+ "l8r7nu": "Open",
+ "l98l5t": "People can edit, delete, comment on and add the files to their Dropbox",
+ "lAN2y9": "Plan your project",
+ "lAgVxS": "Company-managed group",
+ "lBA2wJ": "Documents",
+ "lBUQ9Z": "Prevent new users from seeing this ad",
+ "lBd15f": "You cannot change plans at the current time.",
+ "lBq44Z": "Save changes",
+ "lButVe": "This alert is triggered when a team member moves a large amount of content.",
+ "lDCOvP": "Couldn\u2019t save watermark. Please try again later.",
+ "lDS3dm": "Watermarking",
+ "lDhFjo": "Delete link",
+ "lEOstJ": "Joining...",
+ "lElTYu": "{member_name} can still edit this folder",
+ "lF/7ht": "It looks as though your DocuSign account does not have permission to send envelopes. Please contact your DocuSign admin.",
+ "lFJXM6": "{count, plural, one {Expires in {count} minute} other {Expires in {count} minutes}}",
+ "lFOYmy": "How to resolve a 'Banned links: shared link or file request not working' error message",
+ "lFR1Ef": "Do today",
+ "lFkZSV": "Working all over the world with Lonely Planet",
+ "lG1K3n": "Showing your recently accessed items",
+ "lG9gS/": "Enter the security code generated by your mobile authenticator app to make sure it\u2019s configured correctly.",
+ "lGGaj4": "Jan",
+ "lGKgGQ": "No members have space limits.",
+ "lGYwqE": "Select Create or Create new file from any folder in Dropbox.",
+ "lGkgJP": "Turn on alerts for ",
+ "lGpNw6": "Cancel link",
+ "lGq+yR": "Anyone in your Dropbox team with the link and password can view this folder. Downloads disabled.",
+ "lH2xzI": "You don\u2019t have permission to export docs.",
+ "lH7b+k": "Alerts",
+ "lHdaP6": "Lock editing",
+ "lHeu8B": "What is the difference between {trademark_business} Standard and {trademark_business} Advanced?",
+ "lIUM0e": "Unlock editing",
+ "lIWNFp": "Couldn\u2019t report this ticket. Please try again.",
+ "lIkHQt": "Ask to unlock",
+ "lJ0c1o": "Only customer support can restore this team member\u2019s access.",
+ "lJ8Pin": "It\u2019s hard work to impress a client. But Dropbox has your back \u2013 from first draft to final deliverable. Manage your time, your tools and all of your projects more efficiently.",
+ "lJEvbU": "Images",
+ "lJYRuM": "Retention",
+ "lJcU11": "Email your transfer to see who views and downloads it.",
+ "lJg1SY": "Restrict the number of devices per member",
+ "lKbROR": "PDFs",
+ "lL5U1Y": "Try free for {trial_days} days",
+ "lM4h1U": "You have a merge request that\u2019s in progress. Once it\u2019s complete, your team can send another one.",
+ "lMKjGJ": "Classification",
+ "lMd9CF": "Create unmanaged users report",
+ "lMeT1E": "Couldn\u2019t remove. Try again in case it was a one-off, or reload the page.",
+ "lMqVLz": "{num_suggested, plural, one {Thanks for your suggestion! We\u2019ve sent it to the team admin.} other {Thanks for your suggestions! We\u2019ve sent them to the team admin.}}",
+ "lMrq9s": "Example: ",
+ "lN11v3": "Security check",
+ "lN4p6H": "Link your team account",
+ "lN9om8": "Couldn\u2019t save changes. Try again, or contact us for help.",
+ "lNSexB": "Because this member was suspended when their account was in a deleted status, they\u2019ll still be suspended after the account is restored.",
+ "lNU//O": "Close modal",
+ "lO6IaQ": "Date format",
+ "lO7Hdy": "Your trial will end on {trial_end}. If you downgrade, your team will lose out on {space} of space, and your active team members will return to their initial space quota.{br}{br}If you want to keep using {trademark_business}, it only takes a few minutes to add your billing information.",
+ "lOT6IE": "You have unsaved changes.",
+ "lOd3yV": "Cancel plan",
+ "lPtN7+": "In order to remove your admin permissions, you must first give admin permissions to someone else on your team. You can do this by clicking the gear icon to the right of a team member\u2019s name and selecting \u201cGive admin permissions\u201d.",
+ "lQ5OJn": "Try Dropbox Plus to access your vault",
+ "lQqagN": "Member not found",
+ "lRG4Y3": "The {team_name} team will be permanently deleted and all members will be removed. Your team\u2019s folders will be converted to shared folders, nested shared folders will be flattened and your {team_name} groups will be deleted. Every member\u2019s account will be converted to a personal Dropbox.",
+ "lRIjKv": "{service_name} settings",
+ "lRkUos": "To add a team folder, you\u2019ll need to be an admin for both Dropbox and Salesforce Marketing Cloud.",
+ "lRm5uJ": "Your files are syncing again and you\u2019re good to go.",
+ "lS4c0W": "Billing information",
+ "lSIfyF": "Folder filter selector",
+ "lSeE1e": "A CSV report will be saved in your Dropbox Business Reports folder. We\u2019ll email you when the report is ready.",
+ "lSeM2c": "Select Google Docs, Google Sheets or Google Slides.",
+ "lSwz5n": "Deleted Paper doc",
+ "lSxVrY": "Got it",
+ "lTASPN": "Make sure you don\u2019t get charged for your Dropbox {trademark_plus} subscription",
+ "lTBbKl": "You control all subdomains except:",
+ "lTIn1A": "Something went wrong while uploading this file. The file name contains an invalid character.",
+ "lTKjEc": "We've sent you another code. It may take a few minutes to arrive.",
+ "lTOxVL": "{count, plural, one {{count} error} other {{count} errors}}",
+ "lTRVQL": "Share {folder_name}",
+ "lULsLt": "Anyone with the link and password can view this folder",
+ "lUcC9S": "Protect your user\u2019s accounts by using secure authentication methods such as two-step verification or SSO.",
+ "lUdY7W": "Limit who can be added as a member of this folder.",
+ "lUdlLb": "Avatar for {name}",
+ "lV7lqz": "Spot",
+ "lVEpBU": "Please enter the account holder\u2019s name.",
+ "lVUBzk": "You've only got {remaining_space} of space left, which might not be enough. Upgrade from 2 GB to 3,000 GB \u2013 and get extra features too.",
+ "lVmbnv": "If you\u2019d like to allow the use of third-party cookies, follow the instructions below for your browser.",
+ "lWGuPm": "viewed {ago}",
+ "lWPbUP": "We sent a code to your phone number ending in {last_two_digits}.",
+ "lWUf/y": "Replace a Canvas file if its name matches this one",
+ "lX6ewN": "Try free for 14 days",
+ "lXgJ7v": "{count, plural, one {Block {count,number} app?} other {Block {count,number} apps?}}",
+ "lXua//": "Admins",
+ "lYBgSZ": "Your team will be merged into this primary team soon. ",
+ "lYaw9D": "not added yet, in {location}",
+ "lYuN9K": "{initiator_name} (admin) initiated file recovery. This could take up to a\n few hours if there are a lot of files in your Dropbox account. You can go\n ahead and close this screen. Rest assured, recovery will continue at our\n end. We\u2019ll email you when your files are ready to use again.\n {br}{br}\n Please work with {initiator_name} to remove the ransomware from the\n infected computer.",
+ "lZ3sPD": "Your DocuSign account has restricted access",
+ "lZHT/D": "By cancelling {trademark_business}, you will lose:",
+ "lZWYYh": "{count, plural, one {Add {count} activity} other {Add {count} activities}}",
+ "last name": "Please enter a valid surname.",
+ "lbMG2X": "Search by your files\u2019 contents \u2013 without worrying about remembering the file names.",
+ "lbSEi4": "Once you accept the request:",
+ "lbndFp": "{num_suggested, plural, one {{num_suggested,number} invitation sent to admin.} other {{num_suggested,number} invitations sent to admin.}}",
+ "lcZCGf": "You ({name}) can edit",
+ "ldZiaj": "Gather up the important stuff",
+ "ldinwL": "Account transfer tool",
+ "ldvfuJ": "Before you can manage this domain, you\u2019ll need to complete one of these tasks.",
+ "le+3CZ": "No link created yet",
+ "leHpBD": "Your Dropbox will stop syncing",
+ "leM4vR": "This lets members download and use the Paper desktop app.",
+ "leOvZx": "Active",
+ "leZEaY": "Schedule a time for us to move your team\u2019s docs to Dropbox.",
+ "lefsX0": "{price}, excluding taxes",
+ "lehi6h": "Only enterprise admins can update",
+ "leoBCD": "Transfer data from your existing solutions with 1 billion included API calls per month to data transport partners. For additional data transport needs, please contact support.",
+ "lfdYKG": "{count, plural, one {Moved {succesfully_moved_files} out of {count} item to {folderName}.} other {Moved {succesfully_moved_files} out of {count} items to {folderName}.}}",
+ "lfq+HN": "Something went wrong. Please try again later.",
+ "lfrxLt": "Send or request documents for signature. Compliant with electronic signature regulations.",
+ "lfz3xn": "Available add-ons",
+ "lg43ur": "Enable or disable reseller support",
+ "lgSSK4": "Send or request documents for signature. Compliant with e-sign regulations.",
+ "lggZdA": "Multi-account login modal",
+ "lh5V7r": "monthly",
+ "lhKaOC": "Back",
+ "lhi2BY": "A drawing of a security guard preventing someone from entering a restricted area",
+ "lhk+nP": "After you create a retention policy, it\u2019ll appear here, so you can get reports or content.",
+ "lhzBKS": "Sharing {folder_name}\u2026",
+ "lhzTwh": "{id_string} will lose access to all {team_name} groups. {first_name}\u2019s account will be converted to a personal Dropbox.",
+ "li5upG": "Select next file (hold Shift to select range)",
+ "ligM/M": "Use your favourite collaboration tools",
+ "lisaeg": "Please enter a positive integer",
+ "lj3d2i": "No transaction history",
+ "lj4pan": "How Smart Sync works",
+ "ljMGdZ": "Work efficiently with teammates and clients, stay in sync on projects, and keep company data safe \u2014 all in one place.",
+ "ljVFCM": "Form for entering credit card information",
+ "ljW3Gx": "On by default",
+ "ljfv4E": "Lock editing",
+ "ljvDJ8": "Get documents signed with HelloSign, a Dropbox company",
+ "lkVLik": "\u2191",
+ "lkc6sQ": "Copy link",
+ "llnumb": "We\u2019ll create a HelloSign account for you automatically.",
+ "lnDPvm": "Close tip",
+ "lnNoXw": "Report started. We\u2019ll email you when it\u2019s ready.",
+ "lo/jpa": "preview this folder",
+ "loKd8B": "Teams you manage",
+ "loShlb": "Duration",
+ "loVWWm": "Marketing",
+ "lon/VQ": "Sent today",
+ "lpaQyB": "Remove admin privileges from {display_name}",
+ "lq7OOe": "What's the difference between {trademark_business} {standard_display_name} and {trademark_business} {advanced_display_name}?",
+ "lqogWt": "On {default_on_date}, Dropbox Paper will be turned on for your team. Paper comes free with all Business accounts.",
+ "lrQa4y": "Remove request to join",
+ "lrUESB": "All team admins will receive a copy of team files and folders",
+ "lrf+bf": "Set who can create, rename, move or delete items at the top level of the team space.",
+ "lrtvuX": "{plan_name} trial",
+ "ls1Yxs": "No suggestions right now",
+ "ls2FuR": "Show acknowledged",
+ "lsDA7h": "Sign-out URL: {url}",
+ "lu9pXH": "Yes",
+ "luV4IR": "Filters",
+ "lugJj9": "This export is quite big, so we\u2019ve broken it into several parts. Be sure to download everything.",
+ "lugWbo": "IT / Information Security",
+ "lujuec": "We were unable to complete your request.",
+ "luoF2E": "Sync, share and back up files directly from your hard drive. Download the desktop app now.",
+ "lv9xHm": "Change capture settings",
+ "lvGBGL": "Tidy up by year",
+ "lvYIwW": "Pending",
+ "lvdhhJ": "Change your selection",
+ "lvqTgn": "100-249",
+ "lvvy0T": "2. Enter payment details",
+ "lw1vdF": "Add and remove members, manage groups, and view team activity feed.",
+ "lw7vcu": "To purchase, please add your billing information.",
+ "lwDdPo": "Check out our Help Centre",
+ "lwMCYw": "name@example.com",
+ "lwq/Vu": "We sent a code to your phone.",
+ "lwyNeC": "Restrict sharing to team",
+ "lxAskD": "Add a personal Dropbox to keep your personal and work files separate.",
+ "lxNU0Z": "You don\u2019t have permission to change the settings on this file.",
+ "lxsjma": "Here are the folders you\u2019re currently sharing",
+ "lxspej": "Bits per sample",
+ "lxyCXy": "email me the link",
+ "ly/8VG": "{count, plural, one {{count} day left to accept} other {{count} days left to accept}}",
+ "ly1XN5": "Duplicate",
+ "lyCL5/": "Dropbox has sent a verification email to {email}. Check your inbox and click on the link in the email to finish updating your {team} email. If you can't find it, check your spam folder or click the button to resend the email.",
+ "lytkUs": "Make team admin",
+ "lyxkIn": "{count, plural, one {Invitation sent} other {Invitations sent}}",
+ "lz7DG7": "You\u2019re all set up and ready to use Dropbox with your team.",
+ "lzKC+S": "To view or restore all {file_count} files, visit the Event details page.",
+ "lzRy0P": "Keep everything you need in one place",
+ "lzZHyl": "As much space as needed",
+ "lztSxU": "Why aren\u2019t my photos appearing in the mobile app?",
+ "m+ZGp8": "Order summary",
+ "m+cPZv": "VAT",
+ "m+lYKP": "Sophisticated admin and audit capabilities to manage complex teams and data security.",
+ "m+pG8Y": "Change line colour",
+ "m/6Y+C": "Couldn\u2019t connect with {provider}",
+ "m/PiqD": "API calls this month: {apiPercentage,number,::percent .##} of {api_quota}",
+ "m0WS+a": "Downloading",
+ "m0jewu": "Stay secure with Dropbox",
+ "m0z9z6": "Are you sure you want to make {user_name} an owner?",
+ "m1ZBqW": "Anyone",
+ "m1hLUr": "Spaces",
+ "m28/B2": "Description:",
+ "m29oRc": "Sync this folder automatically to members\u2019 computers",
+ "m3kx6R": "{completed_docs} of {total_docs}",
+ "m4L2ag": "Revoke admin privileges",
+ "m4P3CO": "Confirm removal",
+ "m4RmFp": "Revoke token",
+ "m4b4bb": "To share this file, ask someone else for access to edit.",
+ "m4yPTk": "{cost}/user/year",
+ "m5C1qx": "2 of 4",
+ "m5HwtG": "Previews for {extension} files are limited",
+ "m5LWaK": "Undo",
+ "m5MNvs": "Phone support during business hours",
+ "m5kUfa": "{count, plural, one {You were removed from {count} item} other {You were removed from {count} items}}",
+ "m5kdkX": "Drop image here",
+ "m6/l0s": "Add any email address that ends in {oneDomain}",
+ "m61RGf": "Accept invitation",
+ "m68P5T": "There was an error sending this reminder.",
+ "m6TLUI": "Billing options",
+ "m6YJXG": "At the office. At home. Or around the globe. With {trademark_business}, everything your team needs is in one place. And it\u2019s instantly accessible anywhere you need to work.",
+ "m7+KB1": "These members are not required to use EMM.",
+ "m7IdAm": "{userCount, plural, one {when billed yearly, {userCount,number}+ user} other {when billed yearly, {userCount,number}+ users}}",
+ "m7zp3J": "Deselect all files",
+ "m8JXXD": "Send",
+ "m8bz7x": "All of your files, everywhere you are",
+ "m8oaq6": "Your trial ends today",
+ "m93xIq": "Team admins can only rewind their own folders and folders they can edit",
+ "m96IvY": "Starred {itemName}.",
+ "m9b0kY": "With our family plan, up to six members can back up files from their PCs or Macs, manage online account details with {passwords}, and save sensitive documents in {vault} \u2013 all under one bill.",
+ "m9spTH": "{DROPBOX_PASSWORDS} lets you seamlessly sign in to websites and apps by storing your passwords. The Passwords app remembers your usernames and passwords on all your devices, so you don\u2019t have to.",
+ "mALmar": "Edit the details",
+ "mAU7ay": "Great! Now copy the link",
+ "mAtx6/": "Dropbox {plus} 1 TB",
+ "mBi+1q": "Verify your work email address and finish setup on web",
+ "mBryLc": "Recommended for most teams. Members will be required to create secure passwords.",
+ "mBshLe": "Details",
+ "mC8LRm": "day",
+ "mCoSKq": "Please log in with your paired account, {email}",
+ "mDTfdW": "Below are some articles with information on common account downgrade and deletion questions.",
+ "mDrYnG": "{value} MB",
+ "mDs8EZ": "Online only (recommended)",
+ "mE4fZ4": "Court-admissible audit trail",
+ "mEUFdD": "{count, plural, one {{count} expiry date} other {{count} expiry dates}}",
+ "mEzdR+": "Admin controls and priority support",
+ "mF3ymz": "This .{extension} file is password protected.",
+ "mFVtnn": "Remove me",
+ "mFXmY0": "Show keyboard shortcuts",
+ "mFbB59": "Compress, edit or sign PDFs.",
+ "mG6ORh": "{count, plural, one {Already working with {count} team member} other {Already working with {count} team members}}",
+ "mGDfDi": "Team member",
+ "mGKQIe": "They\u2019ll also lose access to the Family Room folder.",
+ "mGLTNU": "Ready to download?",
+ "mGPZBF": "{focal_length} mm",
+ "mGnlBs": "Expand",
+ "mGoGDg": "Let\u2019s start by moving any folders you share with your team here. That way, everyone can always find what they need.",
+ "mHIANQ": "Chris Burgess, VP of IT",
+ "mHIpiE": "It looks as though you've already asked to join a different team.",
+ "mHLfrd": "Set up app",
+ "mHmoC1": "Connected to Slack",
+ "mHwVxm": "Invite some friends to join Dropbox",
+ "mIBcFr": "Lets members share their work with style using Dropbox Showcase.",
+ "mILGK3": "{filename} will be gone forever for everyone, including anyone still using the shared folder. Permanently deleting folders won\u2019t free up space.",
+ "mIVTjA": "Brainstorming",
+ "mIrTc0": "Their team admins will get an invitation",
+ "mJ9IWs": "You\u2019ll be charged {prorated_price} for the new billing schedule, pro rata for the current billing period.",
+ "mJnMrM": "Unknown",
+ "mKGo4j": "Get started connecting {serviceName}",
+ "mKXhFc": "An error occurred",
+ "mKtWIH": "Can I have fewer than {min_users} users on my account?",
+ "mL9XU3": "from {team}",
+ "mLjImS": "You have access to view this folder",
+ "mMKYfC": "New email",
+ "mMOTlg": "Apps with Dropbox access",
+ "mN88wt": "Cancel",
+ "mNLw1N": "I\u2019m having trouble with a shared folder",
+ "mNZ4jC": "Dismiss",
+ "mNi7Xx": "Only the owner can add people.",
+ "mNmI/a": "{showcase} is part of {dropbox_professional}",
+ "mO3cx4": "Please enable browser cookies to use the Dropbox website.",
+ "mO42hX": "{trademark_business} accounts",
+ "mOJi1I": "I agree to the Dropbox Terms",
+ "mOtyYS": "Restore or delete",
+ "mP1Q+W": "2. Invite your team members",
+ "mP8hiX": "Edit change",
+ "mPIBsk": "Delete file?",
+ "mPVdtX": "Ignore",
+ "mPVqeh": "This gives members the option to back up folders automatically on their computer. Everyone will get their own My Mac or My PC folder that isn\u2019t shared with the rest of the team.",
+ "mPhnVF": "You deleted {single_item_name}",
+ "mPuMoY": "{name}\u2019s calendar",
+ "mQR4oE": "Creating report. We\u2019ll email you when it\u2019s ready.",
+ "mQmZS9": "Live chat with Dropbox Support",
+ "mR7qxf": "Email attachments will be saved to this folder:",
+ "mRCTvJ": "Cancel link",
+ "mRDH8c": "Share to begin receiving insights",
+ "mRqHbI": "Your email address",
+ "mRtsI4": "device removal failed",
+ "mRvPwy": "Limited time trial offer",
+ "mSjmSo": "Dropbox",
+ "mSm+HP": "Recommended add-on for you",
+ "mT/SpT": "Set priority",
+ "mTAkPe": "These people gave you access to their files in Dropbox Vault. The owner will be notified if you download. About trusted contacts",
+ "mTG0Fd": "You\u2019re changing to a {trademark_business} {plan} plan. Starting from {date}, your new {schedule} total will be {recurring_total}. Your plan will be renewed on {renewal_date}.",
+ "mTHPqW": "Yesterday",
+ "mTVxlH": "Legally required:",
+ "mTbyll": "",
+ "mTmRKr": "Quickly add files to your Dropbox desktop folder, and access them easily anywhere.",
+ "mU6Spv": "Name or email",
+ "mUQPVD": "Bring this doc to life",
+ "mUXcXH": "You can ask the person who shared the link to invite you directly.",
+ "mUfPXD": "Add email addresses",
+ "mV6Js2": "Send a link",
+ "mVC4Qa": "Turn off",
+ "mVEUU0": "Earn more space ({current_space} earned)",
+ "mVnbhn": "Personal",
+ "mW0Mg3": "Your team\u2019s move is scheduled for:",
+ "mWRQ+X": "Before you can accept this invitation, you will need to cancel your scheduled downgrade.",
+ "mWWQev": "The Dropbox system extension has been turned off. Please sign in again.",
+ "mXcPpx": "IBAN ending in {last_4}",
+ "mY+P4M": "{count, plural, one {Anyone in your Dropbox team with this link can view the folder. Expires in {count} day.} other {Anyone in your Dropbox team with this link can view the folder. Expires in {count} days.}}",
+ "mY0jaN": "Choose how members can use Google Docs, Sheets and Slides in Dropbox.",
+ "mYGncD": "Name your shared folder",
+ "mYMm2a": "means the Health Information Technology for Economic and Clinical Health Act, which is Title XIII of the American Recovery & Reinvestment Act, and the regulations thereunder, as amended.",
+ "mYfn1X": "For effortless backups, get the app",
+ "mZo8K4": "{app_name} needs access to files you select",
+ "mZsz9G": "How locking works",
+ "ma216W": "The group name should be under 140 characters",
+ "maHKpa": "IP address",
+ "maSIf0": "See meetings you share with others",
+ "maSQGe": "Confirm cancelled change",
+ "mb54XE": "Extension updated.",
+ "mbovsD": "Create new content",
+ "mc08lh": "Which team folder you do want to access from Content Builder?",
+ "mc6Hd7": "Skip for now",
+ "mckYQj": "{trial_days_left} days left in your free trial",
+ "mdOJpc": "One safe place for all of your stuff",
+ "mdbgLV": "Not formatted quite right",
+ "mdhFnj": "You edited ",
+ "meRhZz": "Dropbox was successfully installed.",
+ "megHQj": "Responsible for payments and contract renewal.",
+ "men45k": "3. Enter payment details",
+ "mfGNdu": "Google Docs, Sheets and Slides",
+ "mfLT9G": "Failed to load modal",
+ "mfWC8r": "New team folder",
+ "mgY3e9": "There was an error completing this action.",
+ "mgYQKB": "Skip",
+ "mgikY5": "A security key allows you to complete two-step verification securely and conveniently when logging in to Dropbox. Learn more",
+ "mgq+D9": "Set an expiry date",
+ "mh4Q6C": "{count, plural, one {{count} member folder is full} other {{count} member folders are full}}",
+ "mhBa/a": "We can\u2019t find the HTML file",
+ "mhH2yN": "Logins",
+ "mhwwhK": "Keep your stuff safe with {dropbox_plan}",
+ "miE3lp": "Video comment",
+ "migX9v": "Members can sign in with SSO or password",
+ "miobx3": "Sign up for free",
+ "miukx7": "See how Paper can make your ideas better and brighter.",
+ "mj6gWY": "Something went wrong. Please try again.",
+ "mjG96z": "Transfer",
+ "mjV5dY": "Remove all devices",
+ "mjghJc": "I can\u2019t recover my account using this page",
+ "mjhU6d": "Create your account",
+ "mjljKx": "Edit photos and images.",
+ "mjsOTf": "Calendar and Contacts",
+ "mk1JKj": "When an existing or new app is listed in App Centre, team members will be blocked from connecting to the app.",
+ "mk3vac": "plans and upgrades",
+ "mkCWlR": "{filename} and {file_count} other {item}",
+ "mkG9ta": "Are you part of {team_name}?",
+ "mkObi6": "Create password",
+ "mlXeFC": "Colours",
+ "mliYD5": "{count, plural, one {You\u2019ll be charged for {additional_licenses} more person,{white_space}} other {You\u2019ll be charged for {additional_licenses} more people,{white_space}}}",
+ "mlqeI5": "Keep shared files organised, up to date and secure",
+ "mm0vG7": "Open folder activity",
+ "mn1OBo": "Disable",
+ "mnOOD/": "More actions",
+ "mnP38t": "Now add your team Dropbox",
+ "mnhDAU": "Sign in to continue",
+ "mnql+p": "36,036 days is the maximum",
+ "mo52uK": "Invite more members for free during your trial period.",
+ "moPhW/": "You shared this file in Slack",
+ "mpPvPV": "Your session has expired. Please sign in again to continue.",
+ "mpaAQH": "Unshared '{'name'}'",
+ "mpdvwi": "Selected",
+ "mppZEu": "Go to folder",
+ "mq1Y/D": "Admins in the secondary team won\u2019t automatically become admins in your team. You can add admin privileges back after the merge.",
+ "mqp+1n": "Sign in to websites and apps easily with Dropbox Passwords. Automatic sync to all of your devices allows you to access your passwords anywhere.",
+ "mr/NHg": "Creating report.",
+ "mr2WgN": "You will lose access to advanced sharing controls, remote wipe and other features of {current_plan_name}. To keep these benefits after your trial period, buy {current_plan_name} now.",
+ "mr7C8W": "For every friend who joins and installs Dropbox on their computer, we\u2019ll give you {bonus_per_referral} and your friend {friend_bonus_amount} of bonus space (up to a limit of {max_referral_bonus}). If you need even more space, upgrade your account.",
+ "msVXSB": "About moving members",
+ "msYW/D": "Invite your coworkers to Dropbox to make it easier to access files and work with {teamName}, without waiting for you.",
+ "msj5kh": "Hold name",
+ "msv6ib": "{count, plural, one {We\u2019d love to make your {trademark_business} experience even better.\n You can help us do that by answering a quick question.} other {We\u2019d love to make your {trademark_business} experience even better.\n You can help us do that by answering a few questions.}}",
+ "mtKRqh": "Improve productivity",
+ "mtVCQ2": "Please test this app",
+ "mtpoLW": "Overview",
+ "muDHPB": "Continue",
+ "muFB6o": "Get help",
+ "muNFvG": "Couldn\u2019t add image from Dropbox. Please reload the page and try again.",
+ "muP0dn": "You\u2019ll have access to your plan until {date}. After that, your backup will remain available but it\u2019ll be limited to the 2 GB storage quota of the Dropbox Basic plan. If you exceed your quota, automatic backups will stop.",
+ "mvOTrD": "in Paper",
+ "mvwSL1": "People we think you work with have joined these teams",
+ "mw6e6v": "Load older versions",
+ "mwEu6q": "Need help deciding? Take a look at our ",
+ "mweUml": "Can I have fewer than 3 users on my account?",
+ "mwg+wc": "Tell us what you think",
+ "mx5U0y": "you@mail.co.uk",
+ "mxCRTY": "Domain",
+ "mxHtEA": "Team name",
+ "my14++": "Zoom share dialogue",
+ "myHu+G": "Sharing and collaboration are just as easy with {trademark_business} as they are with Dropbox Basic or {trademark_plus}. You can add collaborators to shared folders so they always have the most up-to-date versions of files they're working on together, or you can send a copy of a file or folder instead. Plus, with {trademark_business}, admins can control sharing permissions and see audit logs of sharing activity.",
+ "mzS/Nw": "Your plan includes {quota} of space and {api_limit} API calls.",
+ "mzdTJq": "Get started with Paper templates.",
+ "mzikUe": "Change",
+ "mzy+1c": "Zoom",
+ "n+NENR": "Go from {basic_space} to {space} of storage space, and unlock premium features",
+ "n+T5bi": "{teamName} team account",
+ "n+uvlj": "Enter your Dropbox password to download",
+ "n/JoQ4": "Unlink {device_name}",
+ "n/Q7Zp": "Purchase {trademark_business}",
+ "n/R4Jp": "Term.",
+ "n/Wxkk": "Oh no!",
+ "n062nX": "Download",
+ "n071Q5": "Other",
+ "n0cvb8": "Thanks for verifying your email address {email}. Your account has been changed successfully.",
+ "n0kScC": "Version:",
+ "n17xGq": "COVID article",
+ "n1Nx/q": "Direct download",
+ "n1Po5D": "Select View site information {lock} on the left of the address bar.",
+ "n1zYou": "Retry",
+ "n2RKZS": "{familiar_name}, thanks for participating in {offer_name}.",
+ "n2gLkM": "{plus_vacuuming_policy_max_days} days",
+ "n3JFMB": "Cancel",
+ "n3PO1l": "Sending message...",
+ "n3SU35": "{dropbox_business} provides three plans to fit your team\u2019s needs. The {trademark_business_standard} plan gives your team {standard_space} of shared storage. For teams needing more space, the {trademark_business_advanced} and {trademark_business_enterprise} plans provide as much space as you need.",
+ "n46caf": "Buying on Dropbox",
+ "n47BCO": "{count, plural, one {{count} team} other {{count} teams}}",
+ "n4bpuy": "Exclude current month",
+ "n4fAB+": "Got it",
+ "n4m0yv": "Disable two-step verification",
+ "n4o67d": "Undo failed.",
+ "n4ojia": "User",
+ "n4vtwy": "Looks as though you don\u2019t have a work Dropbox yet",
+ "n52N16": "Layout",
+ "n5lUbq": "Be specific so you can tell each export apart",
+ "n6HjLb": "The {team_name} {business} trial has ended",
+ "n6en0o": "Purchase",
+ "n7TBjV": "Custom build your own Paper templates",
+ "n7dIq9": "Dropbox {trademarkProfessional}",
+ "n7drWm": "Select all files",
+ "n7x16A": "Zoomed in/out too much",
+ "n82jLM": "Request failed",
+ "n8EwXc": "Content calendar \u2192",
+ "n8SWpH": "High",
+ "n8X+HI": "If you remove your admin permissions, you\u2019ll no longer be able to upgrade or delete your team, change team settings, or remove invited and existing users.",
+ "n8aZAa": "Members with the link",
+ "n92loR": "View members",
+ "n9Od3w": "Eng: @rick, @karen, @mary",
+ "n9YlGq": "down arrow image",
+ "n9gJfZ": "You have access to edit this folder",
+ "n9nJwy": "With {plan_space} of space and powerful sharing features, {dropbox_plan} keeps your stuff accessible and safe wherever you are. For a limited time, get {discount,number,::percent .##} off with your first year of {dropbox_plan}!*",
+ "n9yYUb": "Please submit your information and a {trademark_business} representative or reseller will get in touch with you",
+ "nAk2mg": "{displayName} will be notified if you download",
+ "nAwKbF": "Bear in mind that if they have a shared link to this file, they might still be able to view or edit it.",
+ "nB/pls": "Password",
+ "nB93ha": "Unreadable text",
+ "nBT7AS": "You can annotate video projects, track review cycles and capture time-coded feedback. The Vimeo Dropbox extension simplifies video sharing and reviews. New users get 30 days of Vimeo Pro with free review and advanced analytics tools.",
+ "nBVvrz": "Find out how Dropbox can help you get \u2013 and stay \u2013 focused.",
+ "nBgj3Q": "{name} will be saved to your personal Dropbox account and synced to any connected devices.",
+ "nBhcVL": "We can move your docs {now}. However, we recommend in the evening or at the weekend.",
+ "nCBn3i": "Share ideas in real time",
+ "nCBxgl": "Control access with password protection",
+ "nCQtVq": "Which device are you having problems with?",
+ "nCZAww": "Sending...",
+ "nCsvOW": "Failed to load notifications.",
+ "nD+cIf": "Close",
+ "nD7sOl": "Sharing date",
+ "nDofxz": "Illustration of a group of people",
+ "nDvVuA": "Job title:",
+ "nDw6hl": "Grow bigger, brighter ideas with Dropbox Paper",
+ "nFcWg2": "Opening files",
+ "nG1sYn": "Dropbox Rewind lets you restore any files, folders or even your entire Dropbox account.",
+ "nGnLxa": "Request access for:",
+ "nGu7YN": "You can\u2019t import over 1,000 people in one go",
+ "nHKL5p": "Size slider",
+ "nHOq1c": "Members of the file with this link can edit. Downloads disabled.",
+ "nITGKN": "Free",
+ "nIWB/K": "Can I change the currency on my Dropbox subscription?",
+ "nIdCxe": "Open requests",
+ "nJ1acE": "Account capture",
+ "nJAbBx": "The member has no access to Dropbox for now.",
+ "nJGEFH": "Pin",
+ "nK3mdw": "This won\u2019t delete the Dropbox Passwords app or any of the accounts you saved there.",
+ "nKTH5m": "You were removed from {single_item_name}",
+ "nLLL8d": "View-only in {current_editor}",
+ "nLtLrY": "Check back here once someone shares something with you.",
+ "nM32P+": "Add branding with your photo or logo",
+ "nM5Fv4": "Last month",
+ "nMBhV+": "Create",
+ "nNOUrK": "Your team",
+ "nOBhEP": "Delete",
+ "nOO9Qi": "OK",
+ "nOS+/t": "Expand module",
+ "nOuyMw": "Save it for later in your Dropbox account",
+ "nOygV6": "Connect the tools you already use",
+ "nPGI06": "Collapse",
+ "nPLVOL": "Member\u2019s content will immediately be transferred to {email}",
+ "nPTUr8": "Prevent deletion of data for a certain period of time",
+ "nPnx0l": "You also have a {team_name} {trademark_business} account. Please contact your admin to downgrade that account.",
+ "nQ45Jp": "Confirm cancellation",
+ "nQPthO": "Something went wrong. Please try again or visit our Help Centre page.",
+ "nQmO1L": "We had problems loading your events feed. Please try again later.",
+ "nQncys": "You\u2019ll no longer get notifications about \"{folderName}\"",
+ "nQys0m": "Add URL",
+ "nR3PAi": "Suspended members",
+ "nR7iek": "Branded sharing",
+ "nRDdm5": "Send a password reset link to your devices?",
+ "nRYN3i": "{count, plural, one {Sending invitation} other {Sending invitations}}",
+ "nRgwkK": "Step 2/2: choose your billing period",
+ "nS8yQU": "
Automatically back up one computer \u2013 regardless of size \u2013 for half the price of Plus.
{backupPlanName} is $5.99/mo and lets you easily recover your files if things go wrong.
",
+ "nSIWcw": "Has expiry date",
+ "nSQHN7": "For complex teams",
+ "nST3rs": "Add your payment information now to set up your subscription to be renewed automatically when it expires",
+ "nSmYxv": "DELETED LIFE VAULT FOLDER",
+ "nStYNE": "Why does my bank statement show multiple charges for one upgrade?",
+ "nTGYX9": "As",
+ "nU3TuP": "Sticker: {description}",
+ "nU90w+": "We cancelled the account recovery request. If you think someone else is trying to access your Dropbox account, please let us know.",
+ "nUAdnG": "Email, name or group",
+ "nV2Prb": "What happens when you cancel Dropbox {plan}",
+ "nV4dvn": "Your transfer is good to go",
+ "nVRR28": "{count, plural, one {{successCount} of {count} file uploaded. Try the other {failureCount} again.} other {{successCount} of {count} files uploaded. Try the other {failureCount} again.}}",
+ "nVU2en": "They can still access Dropbox through previously linked devices, however. You can see and unlink those devices on their member page.",
+ "nVmCfa": "Expires on {date_string,date,::yyyyMMdd}",
+ "nW2iLc": "Multiple users commenting and sharing feedback about an image.",
+ "nWHtlz": "Downgrade vault",
+ "nWR7ib": "Don\u2019t worry, removing {export_name} won\u2019t delete any files. But if you want to download these files in the future, you\u2019ll need to create the export again.",
+ "nX7qGU": "Price",
+ "nYBDhA": "BlackBerry",
+ "nYf519": "Leave feedback on this moment with a time-coded comment.",
+ "nYiQFV": "Are you sure you want to cancel {trademark_business}?",
+ "nZ/TMQ": "Folder is in {path}",
+ "nZAbRg": "Apply this policy to some folders",
+ "nZhREZ": "We were unable to complete your request.",
+ "nZtxjD": "{count, plural, one {Anyone in your Dropbox team with the link and password can view this file. Expires in {count} day.} other {Anyone in your Dropbox team with the link and password can view this file. Expires in {count} days.}}",
+ "na/t5a": "Products",
+ "naRCjx": "Google Calendar",
+ "naZScv": "More about what files are held",
+ "nacs1m": "member page",
+ "najQtK": "1. Select the file you\u2019d like to upload.",
+ "nans2u": "To share this Dropbox file, just copy the URL from your browser. Bear in mind that anyone with the URL may be able to edit.",
+ "nbCsok": "Are you sure you want to add admin permissions for {display_name}?",
+ "nbcoHm": "You restored {single_item_name} in {folder_path}",
+ "nbpOQc": "Top team and admin articles",
+ "nc1GMq": "We couldn\u2019t process your background image.",
+ "ncI9A1": "Groups make it easier to share with common lists of people in your team.",
+ "nchDM4": "Policy type and duration",
+ "nd23j7": "To see folders shared with you, you need to verify your email address.",
+ "ndMNx/": "Created folder {folder_name}.",
+ "neBk7u": "Dropbox Paper",
+ "neZirb": "
{name},
Would you like to connect this computer to your Dropbox account ({email})? If you didn\u2019t request this, please click 'Cancel'.
",
+ "nf00nr": "Preferences",
+ "nfEJVj": "This link is password protected",
+ "nfH4Fc": "3 of 4",
+ "nfkI3y": "Fine-tune",
+ "nfpb7D": "Upgrade to {trademark_name}",
+ "nfqCOo": "For some reason, we couldn\u2019t install the extension.",
+ "ngKwi5": "If you already have the Dropbox app, just go to preferences and click Backups.",
+ "ngkt2k": "Storage",
+ "ngoQaW": "Can\u2019t load activity \u2013 to try again.",
+ "nh12tG": "Admin",
+ "nh4ZGk": ".pptx, .docx, .rtf, .azw4, .ppsx, .ps, .ai, .papert, .odt, .pps, .binder, .paper, .pptm, .docm, .wpd, .djvu, .epub, .ppsm, .gslides, .mobi, .doc, .eps, .ppt, .odp, .gdoc, .dwg",
+ "ni0VpI": "",
+ "niJq3p": "Contact your admin to add more space.",
+ "niYQeL": "View settings",
+ "niYoXM": "To",
+ "nin8N7": "Changed email",
+ "niuDq6": "Looking for something?",
+ "niud+E": "Download",
+ "nivPJP": "Public sharing policy",
+ "njWYJj": "Set for how long members can be idle while signed in to dropbox.com.",
+ "njxK7y": "",
+ "nk7m1x": "Invalid email address",
+ "nkCWjP": "Upgrade",
+ "nkG7su": "Unsuspend {display_name}\u2019s account",
+ "nkY8sK": "
Using a strong and unique password ensures that only you can access your Dropbox. Please change your password now to ensure that your account is secure.
{pw_policy}Learn more about how to set a strong password.
",
+ "nkYDxb": "The members who are moving",
+ "nksSmj": "Clear your manually added contacts?",
+ "nlxpt6": "Storage space is shared by all members of the Family plan.",
+ "nm04vK": "Create new folder",
+ "nmYCpq": "Anyone using the Paper desktop app will be signed out. This won\u2019t uninstall the app from their computer.",
+ "nnFfUf": "Authenticator app",
+ "nnde/l": "Get {space} of space to store and share all my files",
+ "noEdGR": "The secondary team will use your billing info, and you\u2019ll need a licence for every new member.",
+ "noGS9i": "Lock your vault with 1 click",
+ "nomYjM": "Bank",
+ "noyhQI": "Presentations",
+ "npviR9": "Deleting group...",
+ "nq1HqC": "edit",
+ "nqVXmb": "Members can\u2019t edit top-level folders, but admins can edit them here. Change setting",
+ "nr9Ux4": "Currently, security keys are only supported in Google Chrome, version 38 or higher.",
+ "nrqPdY": "User access updated.",
+ "nrthCd": "Invite team members to upload shared work to Dropbox",
+ "ns0ERj": "Continue with cancellation",
+ "ns3cFM": "Reload",
+ "nsIJp1": "Edit EVH add-on",
+ "nsMBgM": "To sync the recovered Dropbox files on {infected_user_familiar_name}\u2019s\n computer, {infected_host_name}, you must first remove the ransomware.\n Dropbox can\u2019t remove it for you, but antivirus software can. You can find\n antivirus software by searching the web. If a reinfection occurs, Dropbox can help\n you recover the files again.",
+ "nsN1Q2": "You're joining a work-related Dropbox account. If there's anything personal in there, we'll help you create a separate account to keep it private.",
+ "nsfCAf": "To free up {xgb} GB, set all of your files as online only in Dropbox. You\u2019ll still see everything in your account in the Dropbox folder on your computer. Just double-click any file to download it again. Learn more about Smart Sync",
+ "nsh0or": "deleted video",
+ "nswDHh": "You can add your payment information now to set up your subscription to be renewed automatically when your keys expire.",
+ "ntEVA+": "We\u2019ll let {name} know you uploaded files.",
+ "ntHoPL": "I agree to the Dropbox Terms",
+ "ntVDje": "Drag and drop tasks into your open calendar slots below, or in the pane to the right.",
+ "ntZqC3": "Verify your secondary email before swapping.",
+ "nubVED": "Find what you need faster",
+ "nujFg2": "HIPAA support is not currently available for Passwords.",
+ "nuqQkL": "Remove {name}\u2019s admin role",
+ "nv3jy/": "Editing locked. Now only you can make changes.",
+ "nvLizJ": "Pick a date and time to move",
+ "nvkATX": "Invite members to your team",
+ "nvlC/2": "Upgrade",
+ "nwGXdb": "The percentage of active, suspended and invited licences.",
+ "nwQfHP": "We\u2019ve got your back",
+ "nwmSUT": "What happens to my free trial?",
+ "nx1w5T": "Allowed for 1 day",
+ "nxIFEk": "No need to fill up people\u2019s inboxes. Just attach a Dropbox link instead.",
+ "nxVDYw": "You do not have permission to edit this folder",
+ "nxhAca": "Confirm changes",
+ "nxrAQw": "No flash",
+ "ny0ovp": "Learn more",
+ "nyEngX": "Dropbox brings your files and cloud content together, so that your PowerPoints can live next to your Google Docs, Trello boards and any other files you may need.",
+ "nyrsTE": "Sorry, in order to perform this action, you need to add more storage to your Dropbox.",
+ "nyuorm": "Ask the person who sent you the transfer for help.",
+ "nyy+ht": "Colleagues can ask to join your team",
+ "nz2Zjl": "You\u2019ve organised your files \u2013 now get plenty of space and features for peace of mind. You\u2019ll even be able to get to your files when you don\u2019t have Internet access.",
+ "nzAl0Q": "Keep teams flowing",
+ "nzICZX": "You can request documents for signature or send out signed documents from Dropbox. New users get free unlimited signing for 3 months.",
+ "nzQo09": "Can view",
+ "nzqkZQ": "Add to {cdm_tmf_name} folder",
+ "nztJ46": "How to change your Dropbox billing information",
+ "nzubao": "Your email address",
+ "o+5hmU": "Delete \u201c{group_name}\u201d?",
+ "o+CHKf": "+{count}",
+ "o+JBUo": "We were unable to fetch two-factor status.",
+ "o+fjzx": "An abstract illustration of your current storage plan, compared with {dropbox_plus} and {trademark_professional}, in the shape of a triangle.",
+ "o+sT31": "Close",
+ "o/EyS0": "Surname",
+ "o/eqtb": "Remember that, after downgrading to {trademark_basic}, your account will go from {current_plan_space} to {free_quota} of space (plus any bonus space earned previously).",
+ "o/pyAF": "Get organised. Stay focused. And bring content, collaborators and tools together in one place. Welcome to your team\u2019s smart workspace.",
+ "o/xoxI": "Dropbox Paper won\u2019t be turned on automatically.",
+ "o15ZmC": "Some of these items are shared. You no longer have access to some of them, and other people might have changed them since you removed them.",
+ "o19fmC": "Unsupported path provided {path}.",
+ "o1Lvfy": "Connect to your favourite tools",
+ "o1Ssj/": "We\u2019ll email this member to let them know they can sign in again.",
+ "o1Wy7v": "{audio_freq} kHz",
+ "o2uL8S": "Share \u201c{folder_name}\u201d with everyone who can access \u201c{parent_folder_name}\u201d?",
+ "o38k+W": "Switch trial",
+ "o3Djy2": "Select tile",
+ "o3Pr5y": "Links with no password, viewed by someone outside your team",
+ "o3mRdr": "Excel for the web",
+ "o3rTDK": "Tell me more",
+ "o4Frl+": "You have {remaining_space} remaining \u2013 you will only be able to view requests that are within your quota.",
+ "o4tdpN": "Couldn\u2019t save the preference you selected this time.",
+ "o541DB": "Dark",
+ "o5oFaO": "Send us a tweet",
+ "o6Oqk/": "More templates",
+ "o6VCdg": "Only specific dates",
+ "o7C6SM": "until we release them publicly.",
+ "o7NttS": "Check out our FAQs",
+ "o7QVkN": "0-60",
+ "o7VMxD": "How we\u2019ll move your team\u2019s docs",
+ "o7po3R": "Access every file and folder in your Dropbox account from your computer, using virtually no hard drive space.",
+ "o81APx": "Traffic and insights",
+ "o8EPDH": "Upgrade to add logo",
+ "o8FIhI": "From builders to film-makers, see why people love Dropbox.",
+ "o8Ovrb": "Copy",
+ "o8UHK5": "Visa",
+ "o8u5jd": "File name",
+ "o96TiK": "Create",
+ "o9O3cO": "1 user",
+ "o9iQdR": "Don\u2019t cancel",
+ "o9mqwS": "Explore everything Dropbox has to offer.",
+ "oA46AW": "Updated {time_ago} by you",
+ "oAiPnw": "{member_name} will only be able to view this folder, and new members of {parent_folder} won\u2019t be able to access it automatically.{br}To add more people to this folder in the future, you\u2019ll need to invite them directly.",
+ "oB7Vaf": "If you downgrade, your team will lose out on {space} of space and your active team members will return to their initial space quota.",
+ "oBo1/X": "Let us know more about why you\u2019re cancelling:",
+ "oBpryc": "Personal information labelling",
+ "oCPrYU": "Company logo",
+ "oCrSN0": "Keep changes",
+ "oDIAM/": "Upload by {date,date,medium} at {time}",
+ "oDy6M3": "Recommended add-on",
+ "oEGZHf": "Copy public link\u2026",
+ "oENeDN": "Owner email",
+ "oEguDz": "Couldn\u2019t add some people to this doc. Try inviting them instead.",
+ "oFA/9f": "Sign-in failed. If you\u2019d like to sign in with Apple again, see how in our Help Centre. You could also sign in with your Dropbox account email and password.",
+ "oFDCFq": "We couldn\u2019t move your folders. Please try again later.",
+ "oFHvou": "Everything in {advanced}",
+ "oFUGWn": "Yes",
+ "oFanUK": "Copy Zoom cloud recordings to Dropbox?",
+ "oFcSSl": "and more",
+ "oFzeNH": "Are you sure you want to leave?",
+ "oG9oIy": "Your agreement has been signed successfully and will be uploaded to your Dropbox shortly.",
+ "oGBPah": "Your own space",
+ "oGCt5e": "Your existing Dropbox files will live here. To get set up, enter a new email address for your personal account.",
+ "oH+eDK": "Add more files",
+ "oHBKTq": "File too large",
+ "oHMH6/": "or sign in to your account",
+ "oHNNG5": "Security keys are currently only supported with Google Chrome version 38 or higher, and Firefox version 60 or higher.",
+ "oHZbXS": "To subscribe to this file, sign in to Dropbox.",
+ "oHpGsH": "See plan details",
+ "oIbZQo": "Attribute",
+ "oIyP4b": "Send to {name}",
+ "oJVrbs": "Your trial will be automatically upgraded to a Dropbox {plus} account in the next 48 hours.",
+ "oJghFv": "Sharing made simple",
+ "oJw4g4": "Unknown",
+ "oK0AGt": "yearly with monthly billing",
+ "oK0WuD": "Keep your team seamlessly in sync",
+ "oK1+ka": "Choose a unique 6-digit code that you\u2019ll use to unlock your vault on all devices.",
+ "oKDqmU": "Your current members want you to invite these people so they can work together in Dropbox.",
+ "oKFqyL": "Request sent successfully",
+ "oKO81V": "Dropbox App Centre",
+ "oKTCoc": "Check out the best way to create and build on ideas with your team.",
+ "oKXvEm": "Your {trademark_business} account will be downgraded on {date}.",
+ "oKoKom": "Discard and continue",
+ "oKv5aq": "Document",
+ "oLEaCW": "You can select yearly or monthly billing before entering your payment details.",
+ "oM4CwI": "This link code is invalid. Please try again.",
+ "oMOGk0": "Scrolling list of files, showing multiple users who have access to each file type.",
+ "oMVDF7": "Payments and billing",
+ "oMWVkR": "Back",
+ "oNZBs/": "Domains",
+ "oNk+Hz": "0-35000 or leave blank",
+ "oNm7rV": "Pricing",
+ "oNuOaL": "Expense",
+ "oO6gez": "Single sign-on (SSO) integration",
+ "oOHggg": "Get a link",
+ "oOTndc": "Edit preferred 2FA method",
+ "oP3/4M": "{remainingLicenses, plural, one {{numMembers} members \u2022 Add {remainingLicenses,number} licence} other {{numMembers} members \u2022 Add {remainingLicenses,number} licences}}",
+ "oPPpOc": "Contact Dropbox",
+ "oPfJiI": "Secure eSignatures for any documents with HelloSign by Dropbox",
+ "oPivFQ": "Password-protect this link for viewing the file.",
+ "oPu2wG": "Change folder name",
+ "oQ/5ii": "Built for your most important files",
+ "oQlMDm": "Apr",
+ "oQnu9f": "Extensions in 'Open with' menu",
+ "oRar4M": "You\u2019ve imported contacts from the following mobile devices.",
+ "oS1+mX": "Are you sure you want to remove the shared folder {filename} from your Dropbox? This folder will stay shared with any existing members. You can add it again later.",
+ "oSMOwx": "You don\u2019t have access to some of those files. To perform a restore, untick the files you don\u2019t have access to and try again.",
+ "oSMrQu": "{count, plural, one {Anyone in your {trademark_business} team with this link and password can view the file. Expires in {count} day. Downloads disabled.} other {Anyone in your {trademark_business} team with this link and password can view the file. Expires in {count} days. Downloads disabled.}}",
+ "oSU2pc": "You're invited! Join the {teamName} account and work better together.",
+ "oTEqgI": "deleted executable",
+ "oTIViq": "The folder \u2018{folder_name}\u2019 has been moved",
+ "oTRjTU": "Delete extension",
+ "oTjpov": "{numMonths, plural, one {{name}, get {discount,number,::percent .##} off {numMonths,number} month of {dropbox_plan}*} other {{name}, get {discount,number,::percent .##} off {numMonths,number} months of {dropbox_plan}*}}",
+ "oTlo1p": "10 minutes",
+ "oU0z79": "Pin {num} items to...",
+ "oU1i4H": "Switch account?",
+ "oUOZLa": "Go to dropbox.com/paper or get the Dropbox Paper app for iOS or Android.",
+ "oUP+qL": "On",
+ "oUVqsi": "Add folder to {cdm_tmf_name} folder",
+ "oUlEeK": "Connected teams",
+ "oVP6dB": "Remind yourself which download is which",
+ "oVsu3Y": "Check All cards or Create new card.",
+ "oVzqwq": "Link to manually download the app",
+ "oW4yFu": "Preview instead",
+ "oWO0ug": "Add, remove and manage member accounts",
+ "oWR0DH": "Send",
+ "oWVzHR": "Need more help?",
+ "oWfH5u": "You can\u2019t cancel an active federation",
+ "oWtMAW": "Member will still have access to Paper docs they own that aren\u2019t shared",
+ "oX7L4J": "Active members",
+ "oXILe3": "Loading",
+ "oXLIPe": "Click a button and Paper will automatically turn your doc into a professional-looking presentation.",
+ "oXQEPW": "From",
+ "oXiCBT": "Failed to load modal.",
+ "oXsYye": "Hold a copy of any available files that members edit between these dates. Once you activate the hold, you can\u2019t change these dates.",
+ "oY3P97": "Step {step} of {total_steps}",
+ "oYMnkP": "You edited this file",
+ "oYSO1Z": "Please save your other changes before making them here.",
+ "oYp4Dw": "Don\u2019t cancel",
+ "oYxhVB": "Recipient required",
+ "oZ87NQ": "{number, plural, one {Viewed {number,number} min ago} other {Viewed {number,number} mins ago}}",
+ "oZDQ32": "Organise team content in a central workspace",
+ "oZL+9Z": "No, thanks",
+ "oZNXJZ": "It looks as though you\u2019ve already asked to join this team.",
+ "oZnLvd": "Guest team name",
+ "oa0cHO": "Name",
+ "obAVjB": "Make every interaction an opportunity to impress with {showcase}. Share your work with partners and clients easily, track progress, and keep tabs on who\u2019s seen what \u2013 all in one place.",
+ "obFNpg": "Move left",
+ "obSlFz": "Sorry, this file name isn\u2019t allowed.",
+ "oc5Lmu": "We\u2019ll label a file if it contains any of the info types below.",
+ "ocI36k": "{count, plural, one {Your {count} existing shared folder invitation in your {team} Dropbox will be removed if you change your email address.} other {Your {count} existing shared folder invitations in your {team} Dropbox will be removed if you change your email address.}}",
+ "ocRCHp": "Remote wipe status",
+ "ocgQTp": "Files can\u2019t be uploaded after the deadline",
+ "ocsN4r": "Dropbox interface for file transfers.",
+ "odl67p": "Search members",
+ "odpVRo": "Who can access",
+ "ods6gH": "Start free trial",
+ "oeASwG": "Continue upgrading to add the shared folder to your Dropbox.",
+ "oeH3nJ": "Dropbox Business",
+ "oeHz+T": "Couldn\u2019t update sync default for these folders. Try again.",
+ "oeNPkV": "More actions",
+ "oeXEgT": "Video editing",
+ "oezDDh": "32-bit",
+ "of/6qv": "List",
+ "ofLB4B": "{count, plural, one {Doc shared with {count} person.} other {Doc shared with {count} people.}}",
+ "ofO6WA": "Something didn't work, we were unable to link your card at this time. Return to your banking app and try again",
+ "ofvIui": "Download",
+ "ogPuVL": "Combine with team account",
+ "ogpNz8": "48 hours",
+ "ogxGtl": "dropbox.com",
+ "oh288L": "{count, plural, one {{count} admin} other {{count} admins}}",
+ "oh2tHX": "Current members",
+ "ohTQwA": "Invited",
+ "ohUZkz": "Live chat support",
+ "ohh7kh": "Remove my access",
+ "ohhbvQ": "Dropbox location",
+ "ohm049": "Team admins (including you)",
+ "ohsPNV": "Set for how long members can stay signed in to dropbox.com",
+ "oi0zm4": "Stop saving email attachments to Dropbox?",
+ "oi9ssi": "Download the app again.",
+ "oiEZPZ": "Cancel this merge?",
+ "oiPyQG": "Click to jump to a page",
+ "oicFVh": "Jump to the latest version of files from Trello",
+ "oifcwV": "Top account access and security articles",
+ "oirOyz": "Uploading\u2026",
+ "oj0t4N": "Creating suggestions for you",
+ "oj1myK": "Items you viewed recently will be displayed here",
+ "ojNoDZ": "File size cannot be more than 20 MB",
+ "ojSZu3": "See space usage",
+ "ojSogg": "Updated. You can double-check in the preview. ",
+ "ojkQfv": "Versions",
+ "ok71Ya": "Add members:",
+ "ok8Odj": "{trademark_sync_everything}",
+ "okAqt3": "Time of sign-in",
+ "okic6x": "per licence/month",
+ "omTab8": "You won\u2019t get an alert if a member shares an unusually large amount of data with people outside your team, which increases the chance of data loss",
+ "omUhTI": "Remove from Dropbox",
+ "omXczy": "Send",
+ "on00GM": "Next",
+ "on0Nju": "Rewinding to an earlier time\u2026",
+ "onOPHb": "Mytaxi",
+ "oncw2h": "Dropbox Paper",
+ "onubGk": "Billed yearly",
+ "ooDtnA": "Update your title",
+ "ooNdL7": "{gigabyteSpace}",
+ "ooTeZE": "That\u2019s all that happened",
+ "ooaUAP": "Create a new address",
+ "oor0f7": "Before you can upload files, you need to get more space.",
+ "oosCM3": "Switch account",
+ "opGguN": "Unused space ({freeSpace})",
+ "opIYM7": "Choose files to move",
+ "opuMLm": "Open my Dropbox",
+ "opwyb5": "University of Sydney",
+ "oqMULo": "Try again",
+ "oqW97K": "Sort by",
+ "oqcApb": "Your team admin has disabled all email notifications.",
+ "oqwS3H": "Manage the visibility, access and download permissions of everything you share.",
+ "orKaOG": "No access to report",
+ "orL+7x": "{member_name} can still view this folder",
+ "osCkIy": "At the bottom, next to 'Allow', select Add.",
+ "osTei0": "{count, plural, one {{count} file request was closed because the folder was deleted or you no longer have permission to edit the request folder. To reopen it, click \u2018Reopen\u2019 and choose a new folder.} other {{count} file requests were closed because the folders were deleted or you no longer have permission to edit the request folders. To reopen them, click \u2018Reopen\u2019 and choose a new folder.}}",
+ "osWcoo": "and {howMany} more",
+ "osYzDp": "Sync default",
+ "osl3qq": "You need a Dropbox {trademark_plus} or Business account to do this.",
+ "ot8ivW": "Invalid password.",
+ "otsE6R": "Too many members to restrict access. Try adding specific people to a new folder.",
+ "ouKfC+": "Enable comments",
+ "ouOuQF": "Install Dropbox on other computers you use",
+ "ouVx+5": "Admin dashboard to monitor sign-ins, devices and sharing activity",
+ "ov0fmg": "File recovery and version history",
+ "ovBgtz": "Forgotten your password?",
+ "ovaGPh": "Unable to load campaigns",
+ "ovhQZO": "Anyone in your Dropbox team with the link can view this folder. Downloads disabled.",
+ "oviAE3": "Try Professional for free",
+ "ow64Ns": "Invite members",
+ "owqExx": "{price}/family/month",
+ "owv/8t": "It is the parties\u2019 intent that any ambiguity under this HIPAA BAA be interpreted consistently with the intent to comply with applicable laws.",
+ "owvZ8t": "Managing this team is disabled.",
+ "ox2GQ/": "Open {folderName}",
+ "oxZeg7": "Anyone with this link can view the file.",
+ "oyC3Ha": "Unshare",
+ "oyDWAD": "How viewer info works",
+ "oz0V3s": "We were unable to unsubscribe from the file.",
+ "oz4auQ": "Close",
+ "ozBFaQ": "Click for more",
+ "ozRPYZ": "Number of users",
+ "ozstUd": "Send and share your Dropbox files on Gmail without leaving Dropbox. Choose a file, click 'Open with' and send the file with Gmail.",
+ "ozwny6": "Trusted team",
+ "p+J/9i": "{number, plural, one {Viewed {number,number} month ago} other {Viewed {number,number} months ago}}",
+ "p+qbry": "Confirm plan",
+ "p+tBI0": "View or edit",
+ "p/EeZW": "Delete",
+ "p/kUhO": "You don\u2019t have any groups yet.",
+ "p/mBGn": "Enter email addresses",
+ "p/vXRj": "Bring Zoom and Dropbox together",
+ "p0AvaL": "use another account",
+ "p0ZP1q": "Update email",
+ "p0waTh": "{showcase} is available for {trademark_business} Advanced and Enterprise users",
+ "p1EB+W": "You don\u2019t have permission to create a link to this file",
+ "p1FXFw": "People can edit, delete, comment on and add the file to their Dropbox",
+ "p1Pu8m": "Give your team a single view of all bugs. Create a shared bug tracker to capture, prioritise, assign and resolve bugs and issues.",
+ "p1ixxr": "For 15 or more licences, we accept payments by bank transfer. Please contact sales for an invoice.",
+ "p28rXC": "We\u2019ve successfully updated your account\u2019s billing information.",
+ "p2o5/+": "A shared link with your current sharing settings will be created for each item.",
+ "p3Vuim": "Make sure moved members can keep access to shared folders",
+ "p3bBTz": "An error occurred while saving to your Dropbox",
+ "p41TEs": "Days",
+ "p4Roc1": "Failed to add the shared folder.",
+ "p4X4PM": "Your changes will be applied to this team folder and any folders inside it.",
+ "p4fl6+": "Configure which features users have access to.",
+ "p4gcrG": "Integrations",
+ "p4xE80": "Links could stop working if they were created by a member who\u2019s moving.",
+ "p51v5t": "Store and sync your passwords across devices to sign in to websites and apps seamlessly. Only you can access your passwords \u2013 not even Dropbox can.",
+ "p58M12": "Creating new folder\u2026",
+ "p5OhNM": "Try free for {duration}",
+ "p5d0Ik": "Add your professional branding to shared files and folders.",
+ "p6H6bn": "Dropbox Paper is a new type of doc where teams can create together in a single space.",
+ "p6SPzn": "Online only",
+ "p6Z2iI": "Cancel",
+ "p6s3Z6": "Thanks for verifying your email address: {email}. You can now register API apps.",
+ "p6vtg+": "Individual",
+ "p7/5aE": "Create new account",
+ "p74dHz": "Your changes will become permanent.",
+ "p7AEI6": "Current browser",
+ "p7Q4jy": "New last",
+ "p7Y98q": "Showcase isn\u2019t available for teams who\u2019ve signed a HIPAA Business Associate Agreement.",
+ "p7bS//": "Admins only",
+ "p7gKoP": "Dropbox doesn\u2019t offer HIPAA support for Paper and Showcase at the moment.",
+ "p7uvd6": "Go to the partner portal",
+ "p87qAX": "Did you know you can request an instant refund for your account without the help of an agent? You must be the team admin of the account to request a refund of your Dropbox subscription. Find out who your team admin is. To request a refund of your subscription, sign in with your team admin account and click Request a refund of your Dropbox Business subscription to be taken directly to your cancellation page.",
+ "p8Qlvq": "Get Dropbox for desktop",
+ "p8kNzp": "Every version",
+ "p9C+y6": "Paste undone.",
+ "pA8w8P": "Legal holds",
+ "pAFsgL": "Cannot attach item",
+ "pAHD/N": "Report generation failed.",
+ "pAHhp/": "You\u2019ve chosen to transfer account files to a suspended member, {name}. This member won\u2019t be able to access any files until their suspension is lifted.",
+ "pAS2H5": "Couldn't copy, but it might be a one-off. Try reloading the page or ask us for help.",
+ "pApXZD": "Ctrl + v",
+ "pB0i/M": "Add folder to Dropbox",
+ "pBBkBv": "sharing activity report.",
+ "pC9IJd": "Accepted",
+ "pCBnN5": "Last sent on {date}, but you can resend emails as a reminder",
+ "pCTnJk": "Access on web",
+ "pCUIin": "{count, plural, one {Pasted {succesfully_copied_files} of {count} item.} other {Pasted {succesfully_copied_files} of {count} items.}}",
+ "pCdNnf": "Open in desktop app",
+ "pCtGKa": "Store PDFs next to Google Docs or any other file type. Now all of your project content lives in one place. And it\u2019s available automatically from any linked device.",
+ "pCwgi6": "Share files using {app_name} by selecting it from the Share menu in Dropbox.",
+ "pDYnvf": "Anyone in your Dropbox team with this link and the password can view the file. Downloads disabled.",
+ "pDnAQ5": "Show",
+ "pDtCQY": "More stories",
+ "pEl8uI": "Your {email} files will be in a private folder that only you and your admin can access.",
+ "pEsVhG": "Upgrade to Professional",
+ "pEzMEI": "Choose the permission for this app.",
+ "pFCFTf": "Dropbox Rewind ({maxRewindDays}-day history)",
+ "pFFWiX": "Computer backup",
+ "pFdCbC": "for the new billing schedule,",
+ "pGFAXd": "finite",
+ "pGqywX": "Work better together with {trademark_business}",
+ "pHFNKD": "The watermark could not be saved because the file was moved or deleted.",
+ "pHgeOK": "5 years",
+ "pHnGhq": "With {plusSpaceLongFormRounded}, you\u2019ll have plenty of room for files from all of your linked devices, stored securely in one organised \u2013 and easily accessible \u2013 place.",
+ "pHnJw0": "Download",
+ "pHsXLD": "Manage your team in the admin console",
+ "pI6QTt": "Restored version",
+ "pIGRYv": "Latest version",
+ "pIGUaD": "Just a couple more steps to set up Smart Sync, and you\u2019ll be ready to use Dropbox.",
+ "pIItso": "Please take a moment to review your Dropbox account to keep it secure.",
+ "pIK927": "This HTML file has a unique verification code tied to your account. After you download the file, we\u2019ll tell you where to upload it.",
+ "pIM+Sj": "Copy link",
+ "pJBjrf": "Store and sync your passwords",
+ "pJD2b7": "You can create a shared folder here.",
+ "pK5LJK": "Zoom out",
+ "pKMyCw": "Sign in to your existing account",
+ "pKNwhV": "We\u2019ve sent an email to {user_email}. Click the verification link in the email to continue.",
+ "pKneSX": "Request signatures, fax and edit",
+ "pL0M9g": "Add arrow",
+ "pL65cy": "To Support Individual Requests.",
+ "pLigS6": "Allow your team to enable camera uploads?",
+ "pLoES3": "Add your logo",
+ "pM+XGv": "Next slide",
+ "pMKGmg": "You need to sign in to see files and folders in your personal Dropbox that may cause syncing problems.",
+ "pMQcbv": "Compare plans",
+ "pMY2WY": "2. Click Select file to retrieve. Or just search for Dropbox files in the Canvas content editor.",
+ "pMeTFx": "You can now manage {team_name}",
+ "pMfs41": "You've used {usage} of {quota} ({percent,number,::percent})",
+ "pMvVuy": "{count, plural, one {Already sharing {count} folder with your team} other {Already sharing {count} folders with your team}}",
+ "pNbN+L": "{count, plural, one {Anyone with the link can view this file. Expires in {count} day. Downloads disabled.} other {Anyone with the link can view this file. Expires in {count} days. Downloads disabled.}}",
+ "pNfyG2": "Import from Gmail",
+ "pNyBcR": "Approve the request to join your team?",
+ "pO8IP6": "Your {plan} plan will be renewed on {date}. {billing_summary}",
+ "pOQued": "Share with members",
+ "pOXUrc": "File has no data, try adding again",
+ "pObRZH": "Your ticket history",
+ "pOrrz7": "You will no longer be able to sign in to the trusted team\u2018s admin console. If you want to regain access, they will need to send you a new trusted team request.",
+ "pPFsa4": "Show who viewed this file to team members and people who can edit.",
+ "pPonxL": "We\u2019re currently experiencing issues with our live support services (phone and chat). We\u2019re aware of the issue and are currently investigating.",
+ "pQ+CTN": "Successfully logged out of remote web session.",
+ "pQ9utX": "Optional",
+ "pQR6Hz": "When you disband:",
+ "pQrSTh": "{gigabyteSpace}",
+ "pR7fxF": "Other details",
+ "pRO4np": "Edit hold",
+ "pRd5Xx": "Open in Gmail",
+ "pRfx2F": "User management admins can add, remove and manage member accounts. Are you sure you want to continue?",
+ "pSiFZ2": "Scheduled billing period",
+ "pT4bcK": "Done",
+ "pTHVq3": "This Dropbox is only for work, and {team_name} will have admin control of this account.",
+ "pTMcB4": "Sign in with Apple",
+ "pTruEZ": "Now",
+ "pU/As6": "As activity occurs",
+ "pUBm7w": "Renaming failed.",
+ "pUKCTq": "Early access features haven\u2019t been subjected to the same reliability, availability and security testing as our publicly released features. Features in early access are subject to our",
+ "pV/Btf": "Continue",
+ "pVEqbN": "{paymentInfo}{br}{br}Charges will continue until you cancel, and previous charges won\u2019t be refunded unless it\u2019s legally required.",
+ "pVN801": "Save",
+ "pVNGVr": "Version ID",
+ "pVmsqE": "This Addendum is applicable (a) only to the Included Functionality and (b) only to those End User Accounts in a Dropbox team for which an Administrator, as an authorised representative of the Customer, has entered into this HIPAA BAA through that team\u2019s admin console. If the Customer manages multiple Dropbox teams and intends that all End User Accounts in the Customer\u2019s teams are covered by this HIPAA BAA, the Customer will need to enter into a separate HIPAA business associate agreement for each team via each team\u2019s admin console. Dropbox may expand the scope of the Included Functionality by providing written notice to the Customer, on which date this HIPAA BAA will automatically apply to the additional new functionality and features identified in that notice. If the Customer downgrades to a Dropbox service that is not included in the Included Functionality: (a) all obligations of Dropbox under this HIPAA BAA will terminate; (b) Dropbox will not have any obligation to return or destroy PHI transmitted to Dropbox after the termination of this HIPAA BAA and while the Agreement remains in effect; and (c) the Customer certifies that it has deleted any PHI it maintains in the Services and has ceased to create, receive, maintain or transmit PHI to Dropbox or within the Services. The Customer is solely responsible for ensuring that this downgrade will not cause the Customer or Dropbox to violate any applicable laws or regulations.",
+ "pW/ahW": "Continue with Dropbox",
+ "pWAwtE": "{name} moved {single_item_name} into {dst_folder}",
+ "pWUWWJ": "Not added",
+ "pWWaTq": "Allow admins to create groups that members can\u2019t modify",
+ "pWpyyE": "Sign in as member settings",
+ "pXTGpc": "Cancel your {trademark_business} subscription",
+ "pXao+C": "Close",
+ "pY6EzI": "Sorry, we couldn\u2019t find that target in your workspace",
+ "pY6KPZ": "{count, plural, one {{team_name} and {count} member} other {{team_name} and {count} members}}",
+ "pYAdxo": "{owner} ({team}) shared this with you.",
+ "pYEmSX": "Get Dropbox Plus to access files on your desktop while saving hard drive space.",
+ "pYtBgL": "This alert is triggered when a team member shares a file containing malware.",
+ "pYzGgU": "You may want to refer to them later",
+ "pZ5e/J": "\u2318 + Opt + {key}",
+ "pZSH2r": "Online-only files will take up hard drive space",
+ "paEy7B": "Select a file to see more details",
+ "padKbf": "Device",
+ "pakmyA": "Restore and delete files",
+ "pani5K": "Before you continue with your {trademark_business} purchase, please note that you have a Dropbox {trademark_plus} subscription managed through the {billing_store}. You must cancel it to avoid paying for two subscriptions.",
+ "pao+4G": "{name} renamed this file",
+ "paoscA": "Next",
+ "papAzf": "Edit, convert or annotate PDFs.",
+ "papBji": "Turn on",
+ "paxTZY": "{price} per {duration}",
+ "pbCwXC": "Dropbox Spaces",
+ "pbHfjm": "Members of {team}",
+ "pbK/Es": "See more details",
+ "pbYebK": "Tick this box so others can see your message when viewing this file.",
+ "pbumCN": "Access your files from anywhere with the Dropbox mobile app, and never miss a beat. You can even mark files and folders for offline access to make them available if you lose your Internet connection.",
+ "pbwqN9": "Remove",
+ "pc2qFp": "Advanced sharing controls",
+ "pcahlJ": "Devices and browsers reviewed",
+ "pcsTpL": "The zip file is too large.",
+ "pdDzm5": "This information can help you understand how your team usually uses Dropbox",
+ "pdENbn": "To enable Smart Sync, the Dropbox app must be\n installed with admin privileges.\n See if this affects your team by creating a Smart Sync readiness report.",
+ "pe8rcQ": "{count, plural, one {{filename} and {count} more item will be gone forever and you won\u2019t be able to restore them. Permanently deleting these items won\u2019t free up space.} other {{filename} and {count} more items will be gone forever and you won\u2019t be able to restore them. Permanently deleting these items won\u2019t free up space.}}",
+ "peFM3z": "Get Dropbox for personal use",
+ "penoSl": "Incorrect password. Please try again.",
+ "pepzFx": "On",
+ "pewwTv": "Set reminder",
+ "pezXnL": "View in app",
+ "pf47Pj": "Shared by",
+ "pf4y9P": "Move and rename files and folders in your Dropbox desktop folder",
+ "pfP1bY": "files illustration image",
+ "pfRbg3": "Member",
+ "pfzCOV": "Shortcut",
+ "pg9VBq": "Inviting...",
+ "pgBOLS": "If you remove a member, copies of any files held for them will be released and any exports that include their files will be removed.",
+ "pgC8uf": "Jane Smith",
+ "phqFAm": "The report includes the following:",
+ "piCn4s": "Share from Dropbox",
+ "piLFgU": "Invite your friends to join Dropbox and, for each one who installs Dropbox, we\u2019ll give you both {bonus_per_referral} of bonus space. If you need even more space, upgrade your account.",
+ "pibsYB": "Get advanced protection for company data",
+ "pifqnI": "You\u2019re currently on the {plan} plan, billed {schedule}. Your current {schedule} total is {recurring_total}.",
+ "pjDgz+": "Your transfer is on its way",
+ "pjef8d": "Work across devices",
+ "pjvZAD": "Send new code",
+ "pjyJun": "{count, plural, one {Couldn\u2019t delete {count} item.} other {Couldn\u2019t delete {count} items.}}",
+ "pkffme": "Preview next file",
+ "plBc8p": "File info",
+ "plHZl8": "Calendar",
+ "pllUQE": "Failed to download zip file.",
+ "plrOWA": "for the new plan,",
+ "plszlY": "Add OAuth redirect URI",
+ "plus-plus-more-actions": "More actions",
+ "pmEWSx": "Please enter a name that has {max_len} characters or less.",
+ "pmeVK5": "Remove {user_name} from plan?",
+ "pmkY4K": "{price} per month when billed yearly",
+ "pn1QE8": "Showing a preview for the content of sheet `{name}` is not yet supported",
+ "pnPTCp": "Log in successful.",
+ "poBxY2": "just now",
+ "poOIkv": "The easiest way to keep everyone organised",
+ "poQ8Ok": "Sort & preview files",
+ "poQPIW": "Edit policy",
+ "pompma": "Expired",
+ "poz0DD": "Previous first",
+ "pp6VNv": "Choose logo",
+ "pp9ILf": "Just now",
+ "ppfHwd": "You only have {storage} MB of space left in Dropbox.",
+ "pptEMp": "You can sign in to their admin console and adjust any settings such as security and sharing.",
+ "pqI08/": "Reset all members\u2019 passwords",
+ "pr57uQ": "Please enter a valid surname.",
+ "pr8wRm": "When should we move your team\u2019s Paper docs?",
+ "prLeJU": "{count, plural, one {{filename} and {count} more item will be gone forever for everyone, including anyone still using the shared folders. Permanently deleting folders won\u2019t free up space.} other {{filename} and {count} more items will be gone forever for everyone, including anyone still using the shared folders. Permanently deleting folders won\u2019t free up space.}}",
+ "psEScp": "Dropbox Paper is a new type of doc where teams can bring ideas to life in a single space.",
+ "psKHIM": "Could not attach item",
+ "psVIP5": "Tasks marked as complete here will unstar the email in Gmail automatically.",
+ "ptO1tM": "1 of 2",
+ "ptZ96W": "Unlock account",
+ "puUyqi": "Priority chat, email and business hours phone support",
+ "pv7yxv": "Cancel",
+ "pvLtDn": "These members won\u2019t be included in space limits and will have unlimited space.\n You can set custom limits on the individual\u2019s member page.",
+ "pvR+AO": "Upgrade",
+ "pvTd9t": "Allow Dropbox traffic for members only",
+ "pw/NZ0": "Remove",
+ "pw6Etg": "The folder name contains invalid characters",
+ "pwAu0w": "{space_quota}",
+ "pwmhyJ": "Now, let\u2019s zoom in",
+ "px0EJi": "Yes! You can change your payment method at any time.",
+ "pxGZm3": "New folder",
+ "pxf8F/": "Anyone in the {trademark_business} team with this link and password can view the file.",
+ "py5dlR": "Control who can create groups",
+ "py6ABK": "Start free trial",
+ "py8IGt": "3 years",
+ "pyKRcp": "Installation and desktop app issues",
+ "pyUCBn": "County",
+ "pyhY+s": "New users will join the team as soon as you invite them",
+ "pz/yrN": "Disconnect Zoom",
+ "pz0pE7": "Recent searches",
+ "pzO4Cd": "Active",
+ "pzXaHT": "Uninstall",
+ "pzXj86": "Password control",
+ "q+pC64": "Yes, I\u2019ve removed the ransomware from\n {infected_host_name}",
+ "q/uR05": "Get started with a Paper template",
+ "q08CHI": "GET THE FREE APP",
+ "q0DZmp": "Dropbox {plan_name}",
+ "q0Deoy": "Want to join the team with another email address?",
+ "q0SCGK": "New state",
+ "q0Xzd7": "Limited preview",
+ "q0Ydw5": "We were unable to uninstall the app. Please try again.",
+ "q0qppQ": "Use existing card ending in {last_4}",
+ "q1EqaH": "Learn more about {trademark_business}",
+ "q1L2OY": "{team_name} will soon be merged into your Dropbox team",
+ "q1rO5Z": "1 minute",
+ "q21u99": "Min {min_cost}/month",
+ "q2FKAy": "Last activity: {last_activity}",
+ "q2FM3d": "You\u2019ll need to create a second Dropbox account to keep work and personal files separate.",
+ "q2Th0X": "Disabled by your admin",
+ "q2bp4O": "While this hold is being updated, you can\u2019t edit, export, release or create a summary",
+ "q2fnyc": "{name} will have access to the admin console and {role_name} permissions. ",
+ "q2iccY": "Since",
+ "q2nsQW": "It looks as though you\u2019re trying to move a lot of stuff. {dropbox_basic} has a limit of {basic_space_quota}. Upgrade to {dropbox_plus} and get:",
+ "q2sIur": "A user is any person or role in your team with a unique email address. Each team member should have his or her own user licence. Users can link their Dropbox accounts to as many of their devices as they like (PCs, phones, tablets, etc.) at no additional charge.",
+ "q2skMY": "{count, plural, one {Anyone in your {trademark_business} team with this link and password can view the file. Expires in {count} day.} other {Anyone in your {trademark_business} team with this link and password can view the file. Expires in {count} days.}}",
+ "q2smew": "Error requesting call",
+ "q3KPUy": "To add or change a VAT number or request a tax refund, contact support.",
+ "q4/3wb": "Changes to this setting were not applied. Try again in a few minutes or contact support.",
+ "q4Ievc": "Cancelling your Dropbox {trademark_plus} subscription in the {billing_store} will not affect your {trademark_business} account.",
+ "q4nQXE": "Placement",
+ "q4sK13": "Invitation method",
+ "q4sw/l": "{trademark_business} accounts",
+ "q53NSg": "FAQs",
+ "q5IDfL": "Single admin login to manage multiple teams",
+ "q5LxGC": "You don\u2019t have permission to delete files in this folder.",
+ "q5XxwP": "Request sent.",
+ "q5dnyB": "{countDisplay} members",
+ "q67EUi": "Billing",
+ "q6W///": "To save hard drive space, right click on a file or folder, go to Smart Sync\n and choose online only.To sync content to your computer again,\n just open the file. Or right click, go to Smart Sync and choose Local.\nLearn more",
+ "q6m+2V": "{count, plural, one {Members of the file with this link and password can view. Expires in {count} day.} other {Members of the file with this link and password can view. Expires in {count} days.}}",
+ "q8Uy9s": "Your plan can be billed either yearly or monthly.",
+ "q8j/Yf": "Stuff you add here is automatically shared with your team.",
+ "q976ux": "You are already in a session.",
+ "q9IMae": "Amount",
+ "q9Lfl1": "You already have access.",
+ "q9LvRh": "Remove yourself as a trusted contact?",
+ "q9bBTQ": "Renew your account",
+ "q9p/of": "Select all",
+ "q9pobO": "Skip",
+ "q9yzUT": "Show {howMany} more",
+ "qAhMHO": "Key added.",
+ "qAkazE": "Administrative tools",
+ "qArP+G": "Start meeting notes",
+ "qB+2aM": "Join a team",
+ "qBCNfN": "Set team security and sharing permissions, manage admins and members.",
+ "qBSm4T": "You\u2019re not an admin for that Dropbox account",
+ "qBczQg": "How to get more space on your Dropbox account",
+ "qBpbaD": "Start numbered list",
+ "qCD/5i": "You\u2019re an admin for {host_team_name}, so we\u2019ll just take you straight to the admin console.",
+ "qCO+rN": "Collaborative work",
+ "qCzRTi": "Invoices and receipts for Dropbox subscriptions",
+ "qDI6Kp": "Web",
+ "qDYIgp": "Licence keys will be applied before any other form of payment method",
+ "qF9jH/": "Only from specific members",
+ "qFSjFH": "Try Dropbox Standard free for 30 days \u2013 no credit card required.",
+ "qFVQer": "Empty table",
+ "qFiAKo": "Planning to keep lots of data here?{br}Choosing this option can affect performance during the initial sync. Instead, clear the tickbox to let members sync only the content they need. Learn more",
+ "qFr8lq": "Tasks are synced from issues assigned to you.",
+ "qG3VMJ": "Manage access",
+ "qGjq97": "One Park Place / Hatch Street Upper / Dublin 2 / Ireland",
+ "qGq7mR": "New card",
+ "qH//qr": "Updating prices...",
+ "qH3QQm": "{dropbox_family} user",
+ "qHAlmH": "If you change your mind, you can still find it in your Dropbox app preferences.",
+ "qHChXk": "Sign-in approved",
+ "qHlb+A": "Extracting {file_name} to the {cdm_tmf_name} folder because you don't have edit access to the current folder \u2013 {time_remaining}.",
+ "qI5wEh": "Go to Help Centre",
+ "qIBZpx": "Upgrade to upload",
+ "qJ1kF5": "Send request",
+ "qKcsua": "Showcase is off by default for Enterprise teams. Today, Showcase doesn\u2019t support certain Enterprise features, including EMM, network control and device approvals. If your team is interested in enabling Showcase but makes use of these features, please be advised that these features are not currently supported by Showcase.",
+ "qKjTE6": "HR",
+ "qKw4US": "Collaborate",
+ "qKy/7I": "Column order",
+ "qL/GCx": "Tables",
+ "qLFsSc": "All devices",
+ "qLPMn5": "View on dropbox.com",
+ "qLPTw+": "How Rewind works",
+ "qLearS": "Video production plan",
+ "qLuZMM": "Send members a reminder?",
+ "qM1YcI": "{price} charged monthly",
+ "qM3BaJ": "Add an optional message...",
+ "qMMLEM": "Get the app",
+ "qN97Zx": "Mac",
+ "qNWaEl": "Uninstall the Dropbox system extension from your team\u2019s computers?",
+ "qO60N2": "Couldn\u2019t generate report. Try again once your other reports are complete.",
+ "qO62Db": "Audit logs with file event tracking",
+ "qO7xrs": "Folders, even entire projects, are just a click away. Open a file and it's synced automatically to your hard drive \u2013 it\u2019s that simple.",
+ "qP+0qH": "Cancellations",
+ "qP/KUy": "Finished restoring files.",
+ "qPChcb": "Is this related to a refund?",
+ "qPNKY9": "Link your personal account",
+ "qPYbFt": "Unable to connect {name}",
+ "qQ5fmk": "Nothing to summarise",
+ "qQI88A": "Invitations pending",
+ "qQWLzj": "Everything in {name}",
+ "qQZCs0": "Bring Dropbox Business to your business.",
+ "qQhzrN": "Copyright",
+ "qQllCR": "Give everyone access to the info they need. Organise key data, link important docs together and drop files into a centralised doc that teams can edit and access.",
+ "qR8UiH": "Collaborate with anyone in just a few clicks.",
+ "qRTK38": "Member of {teamname}",
+ "qRmALY": "You\u2019re all ready to install Dropbox on your computer",
+ "qRxCKl": "{trademark_business} is more than just secure file storage \u2013 it\u2019s a smart workspace where teams, tools and content come together.",
+ "qSWNUl": "Off",
+ "qSbKO6": "Protect your organisation",
+ "qSkDre": "See plan details",
+ "qSwUz+": "How to recover deleted files in Dropbox",
+ "qT1l41": "MP3, WAV, MID and more",
+ "qT7k0C": "upload to the folder \u2018{folder}\u2019 in your {team_name} Dropbox",
+ "qTxTQV": "You unarchived the {card_name} card with this file attached",
+ "qTxsJd": "Working with me",
+ "qV779v": "Send notifications to",
+ "qVc83D": "On",
+ "qW+bA1": "Improved document completion rates up to 96%",
+ "qW1J59": "1 day",
+ "qW3q74": "The password you entered is incorrect. Please try again.",
+ "qWDshh": "Everyone in {team_name} ({member_count_string})",
+ "qWHg+M": "Emailing...",
+ "qWMBWe": "{max_file_size} MB",
+ "qWYefQ": "Delete team",
+ "qWYni+": "Please update your billing information to change your plan.",
+ "qWyvXD": "Trusted teams",
+ "qXAvFp": "Downloads",
+ "qXBE0s": "An older version of a folder",
+ "qXHfbG": "Free trial ended on {date}",
+ "qXY4zf": "Remove watermarking",
+ "qYLW3N": "We\u2019ve received your help request and will be in touch as soon as we can to help you with your issue.",
+ "qYZxKw": "For members over the device limit, this will automatically remove and disconnect their oldest\n devices (by last activity) to meet the limit.",
+ "qYkIw8": "Your free trial period won\u2019t be affected. You won\u2019t be charged until after your free trial ends on {trial_end_date}, and your plan will transition without interruption.",
+ "qZG35t": "Email preview",
+ "qZTFM0": "Can\u2019t create folder.",
+ "qZU5kf": "Invite with a link",
+ "qZpUNY": "The folder \u2018{path}\u2019 has been deleted.",
+ "qaFEBf": "Only you have access to this folder",
+ "qaOkkY": "Set up",
+ "qaluwB": "Primary",
+ "qb5Ds+": "Take advantage of training and other resources for partners.",
+ "qboPoB": "On",
+ "qc+cIe": "What would you like to tell us about?",
+ "qc2+KU": "Everyone who can access {parent_folder_name} will be able to access this folder.",
+ "qcHpky": "Members of the file with this link can view.",
+ "qcJdtH": "Deliver any files quickly and easily",
+ "qcOd04": "Remove device",
+ "qcYVue": "Incoming",
+ "qd4DrR": "{filename} can\u2019t be opened. You may be able to recover this file. Why can't I open my web-based file?",
+ "qd97v7": "Now download the free desktop app.",
+ "qdLIlc": "Under 'Privacy and security', click Site settings {chevron_right} Cookies and site data.",
+ "qdXrq7": "Report still being created. We'll email you when it's ready.",
+ "qdc4tz": "New features and updates",
+ "qdhfl4": "Are you sure you want to remove extended version history? Once you remove it,\n you won\u2019t be able to add it back again. Your plan will change from one year of\n version history to the Dropbox {plan} length of {days} days\n of version history.",
+ "qdjxLY": "Uninvite",
+ "qeAbuo": "Error linking your computer to your account.",
+ "qeRA7T": "{count, plural, one {Move {count} item to\u2026} other {Move {count} items to\u2026}}",
+ "qeaYa+": "Andrew Hall, Product Manager",
+ "qfF5dJ": "From",
+ "qfM8P6": "Email input",
+ "qfrsGB": "Admin creates a report in Dropbox Business insights dashboard for members outside team",
+ "qgCi5t": "Man walking down a street.",
+ "qgM6UX": "Change confirmation modal",
+ "qgeqX/": "Default sharing settings",
+ "qh9CE5": "by {locked_by}",
+ "qhG5Ev": "You archived the {card_name} card with this file attached",
+ "qhHpFU": "These devices are linked to your personal Dropbox account.",
+ "qhHpfg": "Access folders wherever you are, even with no Internet connection.",
+ "qhjIx0": "500-999",
+ "qi/kLt": "5000+",
+ "qi9JJx": "Enable Showcase",
+ "qiGMuD": "Put your documents, photos and media into your Dropbox folder on one computer and they\u2019ll automatically appear on any of your other computers that also have Dropbox installed. Learn more",
+ "qioX4z": "Remove members of \u201c{folder_name}\u201d folder?",
+ "qix+X+": "With Smart Sync, online-only files save hard drive space and are ready when you need them.\n Local files are downloaded to your hard drive and are always available.",
+ "qiyW2s": "Basic",
+ "qj0V4t": "{plan_size} of space for secure storage",
+ "qjiCgI": "{in_progress_exports, plural, one {{in_progress_exports} preparing\u2026} other {{in_progress_exports} preparing\u2026}}",
+ "qjpddh": "Easy way to get legally binding eSignatures",
+ "qjqn3o": "Work with external clients",
+ "qjrF3n": "Edit backup method",
+ "qk2EK9": "On 31 January, Showcase is going away. Whilst we're sad to say goodbye, we've added some new tools we think you'll like even more.",
+ "qkhEgf": "Ai Ando, Account Supervisor{br}Dentsu",
+ "qklV/o": "Plan billed yearly",
+ "qkmyRi": "This link allows viewing. Now copy and share it.{br}{copiedUrlDisplay}",
+ "qkudum": "This folder will be saved instantly to your Dropbox and downloaded to all of the computers linked to your account.",
+ "qmJ/KK": "From",
+ "qmkIog": "You haven\u2019t given any third-party apps access to your Dropbox account.",
+ "qmmFch": "Did we label the right info types? Anything we missed?",
+ "qmzNq4": "You purchased Dropbox {dropbox_plan} through Google Play.\n To make changes to your subscription, visit the Google Play Store.",
+ "qn5twm": "Member requests were sent to the admin",
+ "qnWrSp": "You\u2019ll join the team using {email}, and we\u2019ll help you sort your personal files into your new account. ",
+ "qoTF5e": "Your account won\u2019t be merged with {team_name}, but you need to change the email address you\u2019re\nusing with it.",
+ "qoTmgt": "Retry",
+ "qoinF9": "You can switch to your other Dropbox at any time.",
+ "qokNeH": "Try free for {trial_days} days",
+ "qonAGY": "This sheet is loading",
+ "qoo+pW": "Remove",
+ "qoqdPt": "Welcome to Dropbox!",
+ "qouiYu": "Your shared folders/files will show up here so they\u2019re easy to find.",
+ "qp3NgR": "You",
+ "qpSeLW": "Connect Dropbox and {app_name}",
+ "qpa1ie": "Reset two-step verification for {user_display_name}",
+ "qpkffV": "If you think this was a mistake, invite them to join on the Members page.",
+ "qpwvDp": "Brand guidelines",
+ "qq+9Xu": "Shared meetings",
+ "qqXJyB": "Need to send more than {file_size_limit}? Upgrade to {premium_product_name} to send up to {premium_file_size_limit} per transfer for {plan_price}.",
+ "qqzCr0": "Please close the other tab and try again.",
+ "qr5jLe": "The desktop app syncs files on your computer to dropbox.com, so you can get to your stuff from anywhere.",
+ "qrH/PP": "Import Google contacts",
+ "qrJLL0": "Your admin has required that you enable two-step verification. Please log in to dropbox.com from a web browser to do so.",
+ "qrfmd1": "Your current plan details (your {trade_mark} subscription ends on {next_billing_date})",
+ "qrxq+C": "{br}{br}We added a folder called Dropbox (pre-recovery) to the\n computer that includes everything {infected_user_familiar_name} had in their\n Dropbox before we restored it. This folder won\u2019t be synced. It will contain\n encrypted files, but this doesn\u2019t mean their computer is infected. If\n anything is missing in Dropbox, check that folder first. Otherwise,\n {infected_user_familiar_name} can delete the folder.",
+ "qsSZwj": "You don\u2019t have permission to perform this action.",
+ "qtEHDj": "Can\u2019t upload to Dropbox",
+ "qtMP6G": "Trusted team admins can:",
+ "qu/Xu2": "Resubscribe",
+ "quIclB": "{count, plural, one {Anyone in your Dropbox team with the link can view this folder. Expires in {count} day. Downloads disabled.} other {Anyone in your Dropbox team with the link can view this folder. Expires in {count} days. Downloads disabled.}}",
+ "quJo6h": "Folders",
+ "qumvpA": "Restricted Use of Services.",
+ "qur9Nb": "Before exploring your vault, set a 6-digit PIN that you\u2019ll use to unlock it on all of your devices.",
+ "qvN0R5": "Create account",
+ "qvPLEV": "Set up BAA",
+ "qvh/5X": "Education",
+ "qw0cNj": "BETA",
+ "qwTaiu": "Get a quick response from the Dropbox support team for anything that comes up.",
+ "qwWPBM": "Cancel",
+ "qwd/ep": "Create a central source of truth for your team. Gather requirements, add code snippets and designs, and get input from stakeholders where everyone can be involved.",
+ "qx0cgi": "Back",
+ "qx0o+q": "Invite team members to join you.",
+ "qx99Uk": "A version needs to be approved before the campaign can be approved",
+ "qxJhIS": "Recycling:",
+ "qxOb+s": "Disband team and log out",
+ "qxfDnR": "Loading...",
+ "qxgfih": "External domains",
+ "qxj4ZU": "Hide certain members from directories and suggestions",
+ "qxnFAj": "If you require an invoice to make a payment, please contact our sales team.",
+ "qy/LOK": "{count, plural, one {When you submit this form, you\u2019ll be billed straight away for your {trademark_business} subscription\n and any additional licences, but you\u2019ll receive the remaining {count} day of your trial for free.} other {When you submit this form, you\u2019ll be billed straight away for your {trademark_business} subscription\n and any additional licences, but you\u2019ll receive the remaining {count} days of your trial for free.}}",
+ "qy1Y7J": "Web browsers",
+ "qy79ri": "Your account will be downgraded to {dropbox_basic}, and you\u2019ll lose access to the plan\u2019s storage and features, and the Family Room folder",
+ "qyUkt9": "Cancel",
+ "qyfA3K": "new-campaign-name",
+ "qymE+7": "{userCount, plural, one {{userCount,number}+ user} other {{userCount,number}+ users}}",
+ "qzHXcn": "Your changes have been discarded.",
+ "qzZUVc": "Create a new link",
+ "r+IKuD": "Suggested contact from your domain",
+ "r+xJ//": "{count, plural, one {As a member of the parent folder listed below, {member_name} can still view the contents of \u201c{content_name}\u201d.} other {As a member of the parent folders listed below, {member_name} can still view the contents of \u201c{content_name}\u201d.}}",
+ "r0YtNn": "Use security alerts to track threats in your organisation.",
+ "r0vhjJ": "Go back",
+ "r1Kfvk": "Successfully connected your Google Calendar",
+ "r1SqDA": "Dropbox Transfer is the safe, easy way to deliver final files of any size to colleagues and clients. Set custom passwords and expiry dates to protect your work, and confirm delivery with download notifications.",
+ "r1wY/6": "When they\u2019re totally full, folders will stop syncing and members won\u2019t be able to add new files. To get more space, upgrade to {trademark_business}.",
+ "r2H8hJ": "Scope.",
+ "r2WuDp": "New comment",
+ "r2s2Or": "Simple, secure file storage and sharing, with built-in tools to help you get and stay organised.",
+ "r2uRtk": "Automatic time zone",
+ "r3T3xT": "Copy",
+ "r3W9KO": "Jun",
+ "r3oIqT": "Choose your plan",
+ "r3vKLt": "The document was archived.",
+ "r3vXam": "What\u2019s changing?",
+ "r409m+": "Go back one week",
+ "r43Wgi": "Two team members using Dropbox to collaborate on work from a laptop",
+ "r43yZS": "Avoid being charged for your Dropbox {trademark_plus} subscription",
+ "r445sC": "Members removed from {folder_name}.",
+ "r4d7qa": "Manage everything for admins and members in this team.",
+ "r4pJfS": "Dates",
+ "r4whCV": "Choose your billing cycle",
+ "r53Tuh": "Open Information blade",
+ "r5DO+A": "Frequently asked questions",
+ "r5Iy0S": "{name} \u2192",
+ "r5WMyk": "Extension removed.",
+ "r5k+Ef": "{count, plural, one {{count} file uploaded} other {{count} files uploaded}}",
+ "r60TD+": "Optional",
+ "r60eQJ": "Oops! No contacts here.",
+ "r6cBCT": "From {transition_date}, your new {schedule} total will be {recurring_price}.",
+ "r6me8b": "{device_name} unlinked.",
+ "r6q13e": "Shared folder",
+ "r89T4k": "You're low on space",
+ "r8Mpyq": "{owner_name} ({owner_team_name})",
+ "r8NbJ9": "Too many incorrect attempts. Please try again in a few minutes.",
+ "r8n/88": "You restored {item_name}",
+ "r92/D4": "Deliver large files easily with {dropbox_transfer}. Request content directly from any client. Sign contracts in seconds. And get credit for the hard work by adding your branding to shared links.",
+ "r98g8J": "Moved or renamed",
+ "r9HHX9": "Keep your files private with multiple layers of protection from the service trusted by millions.",
+ "r9dVED": "Your plan includes as much space as you need.",
+ "rAPGQb": "Can\u2019t open this folder",
+ "rAbvnu": "Account:",
+ "rAl/Dl": "We have received your request and will get back to you shortly.",
+ "rAo2Vy": "Deactivated",
+ "rB4BsH": "Suggested team members",
+ "rB5wvQ": "Report period:",
+ "rBSlLP": "There was a problem dismissing your selection",
+ "rBUZLr": "{count, plural, one {You and {count} other edited this file} other {You and {count} others edited this file}}",
+ "rBgywO": "Name was invalid.",
+ "rCRRO0": "Resolve tickbox",
+ "rCUwSi": "How version history works",
+ "rCzwEP": "Remove my admin permissions",
+ "rDZCUy": "Please make sure you\u2019re logged in with the correct account and click the button below to verify.",
+ "rEOsfj": "Delete link to \u201c{filename}\u201d?",
+ "rEWs7c": "They\u2019ll no longer be an admin, and they won\u2019t be able to access their team\u2019s admin console.",
+ "rEk4Rp": "Office add-in",
+ "rF8YNu": "Rewind",
+ "rFTQ8h": "The Dropbox website requires JavaScript.",
+ "rFwHYL": "You don\u2019t have permission to add to this folder.",
+ "rGM0cW": "1 item couldn\u2019t be permanently deleted",
+ "rGOfhl": "Dropbox learn",
+ "rGVw1L": "View users",
+ "rGwHrj": "Created shared folder, failed to sign in, reset password",
+ "rH6G4E": "Right arrow",
+ "rHOoG3": "Light",
+ "rHRVYx": "by {event_name}",
+ "rHXOII": "Reset membership",
+ "rI2kiM": "Select files",
+ "rIF3oV": "Uploads will be disabled one day after the deadline.",
+ "rIir19": "Dropbox",
+ "rJEV8X": "Dropbox folders",
+ "rJHa1d": "Go up a folder",
+ "rJPZ7z": "Team members",
+ "rJUHer": "Tell us what you like or don't like",
+ "rJUytN": "Go forward one week",
+ "rK0mlB": "Sync all of your passwords to Dropbox Passwords",
+ "rKBrhz": "If you work on files with other people, here\u2019s how to prevent unwanted changes.",
+ "rKue5Z": "Invite a team",
+ "rKv3OG": "
No, anyone you\u2019ve shared a showcase with can view it, even if they don\u2019t have a Dropbox account.
\n
However, to leave comments on your showcase, the people you\u2019ve shared it with will need a Dropbox account and need to be signed in to that account.
",
+ "rKzsbt": "Manage account",
+ "rLKCEv": "FTP",
+ "rLKsQF": "Only the owner of {file_name} can move it to the {team_name} team space.",
+ "rLPr3P": "Let me know when someone downloads",
+ "rLQ0Wi": "Restricted Disclosure.",
+ "rLQXz1": "Desktop & web",
+ "rLXEzj": "Work photo",
+ "rLgZyR": "{price}/month (save {savings})",
+ "rLhqjo": "You create lots of great work, especially when you collaborate with clients and your team. And as projects add up, your hard drive space eventually runs out. But with Smart Sync, space is no longer an issue.",
+ "rLjiMm": "deleted font",
+ "rLpqKx": "The owner hasn\u2019t granted you access to share this file. Please ask them to grant you access.",
+ "rM13pn": "Or find out more about {shortBackupPlanName}",
+ "rM9AyJ": "Created",
+ "rMXssg": "Allow members to lock editing of a file while they\u2019re working on it",
+ "rMu3ZT": "Couldn\u2019t upload. Try again in case it was a one-off, or reload the page.",
+ "rN5x2A": "upload to your team\u2019s workspace",
+ "rNMBTS": "{value} KB",
+ "rNUov2": "Your current plan doesn\u2019t support switching to the Family plan.",
+ "rNrCBf": "Audio",
+ "rO5uvf": "You turned on commenting for {entity}",
+ "rOCA1A": "Settings",
+ "rOEIS1": "What do you do?",
+ "rOFcNI": "(Includes 2 months free)",
+ "rOHvMe": "Quickly share work, photos and even large folders with anyone.",
+ "rP6UV8": "An error occured while sending the email",
+ "rPSCOl": "Invite to join",
+ "rPaNGq": "When people share folders and files with a secondary email, content is automatically routed to this Dropbox account. How do secondary emails work?",
+ "rPshns": "If selected, the corresponding 'Remind me later' button text value can be set by the version",
+ "rQBbRC": "IP address",
+ "rQJFG5": "As much space as you need",
+ "rQOIK5": "Contact name",
+ "rQbc7J": "Sign-in required for this link",
+ "rR3L5Q": "Yes. At the checkout, you have the option to send this gift later.",
+ "rRDvGe": "Email link",
+ "rRJb6A": "I have uploaded the HTML file",
+ "rRTQRh": "{infected_user_familiar_name} can now access their recovered files at\n dropbox.com. These files are also ready to be synced to the affected\n computer. Depending on the Internet connection, it might take a little while for all\n files to be synced to that computer. For added security,\n {infected_user_familiar_name} will need to sign in when accessing Dropbox on their\n desktop. Once {infected_user_familiar_name} signs in, Dropbox will start\n syncing.",
+ "rRXTCc": "Couldn\u2019t create report. Please try again after the current scan.",
+ "rSAb+a": "Unmanaged users",
+ "rSHYZt": "Choose files to add to the {team_name} team folder. You can also drag and drop files onto this page to upload them. Anyone who joins the {team_name} Dropbox will have access to files in the team folder.",
+ "rSX+PZ": "Open in Jira",
+ "rSeA97": "More",
+ "rSy2De": "BINDER",
+ "rTT3LL": "Have a look at our paid plans",
+ "rTaV0v": "This will put the folder over its limit of {member_limit} members. Learn more.",
+ "rTbWXd": "Very strong",
+ "rTqbgt": "Sign in to {host_team_name}?",
+ "rU+yHG": "Maine Pointe Consulting company logo",
+ "rU7/HG": "Time\u2019s not up",
+ "rV+Py+": "Couldn\u2019t save markup. Refresh the page to try again.",
+ "rV0u1M": "views",
+ "rVBnmq": "Thanks for confirming.",
+ "rVKxGd": "7 days is the minimum",
+ "rVqtj7": "You and your family can sign in from anywhere and from any device: Windows, Mac, iOS and Android. Whether you\u2019re at home or on the go, personal and family content is always within reach.",
+ "rVup3h": "Continue without making changes?",
+ "rVyj57": "We hope you enjoy the new design.",
+ "rVz+0L": "{count, plural, one {{name} added {count} item} other {{name} added {count} items}}",
+ "rW6ePW": "This includes all files and folders outside the purple member folders. It comes with 2 GB of shared space. Learn more",
+ "rWEPV0": "Shared folder, {alt}",
+ "rWb8d2": "Dropbox doesn\u2019t support your browser. For a better experience, upgrade to the latest version of a modern browser such as Chrome, Firefox, Edge or Safari.",
+ "rWnLvq": "Page {page}",
+ "rY7b9W": "Team members with edit access can add people.",
+ "rYiGmY": "Email",
+ "rYkZrO": "Event",
+ "rZcZPA": "Error loading calendar events",
+ "rZjT/5": "You\u2019re the only one here",
+ "rZnlRM": "Red",
+ "rZtGe7": "Admin role",
+ "ra1icr": "Export to\u2026",
+ "raJYDl": "Keep your stuff safe with {dropbox_plan}",
+ "raLp6W": "Sign in",
+ "rawfdP": "Launch plan \u2192",
+ "raxpN5": "Code",
+ "rbSlq+": "Dropbox Family space",
+ "rcbdKo": "Sync your passwords and access them across devices",
+ "rcp4Rc": "We\u2019ve sent an email to {user_email}. Click the verification link in the email to continue.",
+ "rd8+Mu": "deleted image",
+ "rdpIKz": "Redirecting you to the file preview.",
+ "reDVDJ": "Communication",
+ "reTJtz": "Roles & statuses",
+ "rew2qC": "Surname",
+ "rfJRAQ": "{currFileIndex} of {totalPreviewableFiles}",
+ "rfpSm4": "Want more devices linked, {space_short_form_tb} of space and more? Upgrade to {dbx_plus}",
+ "rg/kpn": "Remove {user_name} from '{'group_name'}'",
+ "rgDvLb": "Check team activity to see all files",
+ "rgIel5": "Our business needed features that {trademark_business} doesn\u2019t have",
+ "rgQEf4": "You are changing to {schedule} billing. From {date}, we\u2019ll bill you once a month. Your new {schedule} total will be {scheduled_total}.",
+ "rgYQhy": "User management admins",
+ "rgvTb4": "What is the difference between Smart Sync and Computer Backup?",
+ "rh8wwv": "Free trial (no credit card needed)",
+ "rhXtn/": "We were unable to complete your request.",
+ "rhrYre": "Let team members copy Zoom cloud recordings to Dropbox automatically",
+ "rhtU/5": "Options for team member {name}",
+ "ri+YoJ": "Plan",
+ "ri68pm": "Copy the link",
+ "riHCIk": "More than 500,000 teams use {trademark_businesss}",
+ "ribcyl": "Use text messages",
+ "rihiFD": "Something went wrong. Please try again.",
+ "riqC16": "Access all of your Dropbox files from your desktop without taking up all of your hard drive space.",
+ "rj7/iE": "Disconnect {workspace_name}?",
+ "rjbpT/": "Name",
+ "rjoHwX": "Canvas integration",
+ "rjtXU9": "Create group",
+ "rjzWWE": "Meeting notes",
+ "rkKFQh": "Security codes will be sent to your mobile phone",
+ "rki01J": "Purchase now",
+ "rl500C": "The owner hasn\u2019t granted you access to this link",
+ "rldvVA": "256-bit AES and SSL/TLS encryption",
+ "rlsxW9": "Dropbox Transfer",
+ "rmYhno": "Access restricted. Not shared with everyone in {team_name}.",
+ "rn6IdR": "Saving...",
+ "rnNUn1": "Generate new codes",
+ "rnb7YE": "Insert {description}",
+ "rnh6DR": "Remove manager permissions from {name}?",
+ "rnnqHp": "To",
+ "rnuyM8": "Creating view link...",
+ "rnywgf": "Couldn\u2019t save preference",
+ "rnzApw": "Layout",
+ "roSJGZ": "Tasks help you manage work across all of the places where you do work. It works particularly well after you\u2019ve connected a couple of different apps.",
+ "rocNNI": "You\u2019re signed in as {logged_in_name}.",
+ "rp1Lxc": "Couldn't copy the link.",
+ "rp1wT2": "Please enter a valid contact telephone number.",
+ "rpSaTb": "Previous groups",
+ "rpYp9O": "Groups",
+ "rqS5l+": "Add trusted contact",
+ "rqVsJS": "Your account will be merged into the {team_name} Dropbox account, where you\u2019ll have\na private area for your stuff. {team_name} admins will be able to manage your files and Paper docs.\nYou\u2019ll sign in with {work_email}.",
+ "rqoF7x": "Mark as unread",
+ "rs4C4L": "We couldn\u2019t find a Dropbox account for {email}. Would you like to create one?",
+ "rsdCyM": "Postcode",
+ "rskFRz": "Free trial ends on {date}. To keep {trademark_business}, add your billing info.",
+ "rt+Eez": "Skip",
+ "rtO4xq": "Verified",
+ "ru4Qhg": "If you remove {name}, they won\u2019t be able to see future changes to this shared folder. Bear in mind that anyone who can access {parentname} will still be able to access this folder.",
+ "ruR+3P": "Install Dropbox app",
+ "ruXNAR": "We couldn\u2019t find a Dropbox account matching the email address {responseemail}. Sign up for a new account or get help signing in to an existing account",
+ "rugm6C": "Settings & sign-in",
+ "rulDg+": "Team collaboration",
+ "rupZo7": "To help you download Dropbox, we\u2019ll add a temporary extension to your browser.",
+ "ruwa4d": "Remove extended version history",
+ "rvADKY": "Are you sure you want to delete {filename} from the shared folder \u2018{shared_folder_name}\u2019?",
+ "rvkufC": "Your markup will be lost if you exit before saving this file.",
+ "rwVLmk": "The other team retains content using the data governance add-on. The content will be lost if you merge without the add-on. Contact us for help or talk to your Dropbox representative to purchase the add-on.",
+ "rwgI/k": "Whether you prefer comments, requesting docs or private feedback \u2013 these tools can help.",
+ "rx1/M7": "Chat with sales",
+ "rx1FQL": "If you already use Dropbox, moving to a Business account is easy! All of your content will stay the same \u2013 your files will stay where they are, and all of your settings (such as shared folder relationships and linked devices) will remain the same. For admins, all of your team members who already use Dropbox will have the same experience, and anyone without an existing Dropbox account will be prompted to sign up when you send them an invitation. For {trademark_plus} users who switch to {trademark_business}, any remaining credits will be returned as a pro rata refund to the original payment method.",
+ "rxUEj5": "{count, plural, one {Let {count} member know you unlocked editing:} other {Let {count} members know you unlocked editing:}}",
+ "rxk1CD": "Send a reminder",
+ "ryRNo2": "To date",
+ "rySdAO": "Last completed: {datetime}",
+ "ryjgt5": "Need to send more than {file_size_limit}? Upgrade to the {premium_product_name} to send up to {premium_file_size_limit} per transfer.",
+ "rz24qK": "Deleted forever for everyone, including anyone still using them.",
+ "rzQc7n": "You need an additional {space_needed} in your Dropbox to add this folder.",
+ "rzaBEu": "Cancelled successfully",
+ "s++UtU": "Sign in",
+ "s+OPqt": "",
+ "s+lUgT": "You\u2019ll need to verify your new email address in order to finish updating your email.",
+ "s+pc7h": "Show {number} more",
+ "s/Hxx+": "The username portion of the email address is invalid (the portion before the @)",
+ "s/X4yk": "Recovery codes",
+ "s0JtSZ": "invalidate",
+ "s0mqEc": "Don\u2019t ask me this again",
+ "s0pcU+": "you@example.com",
+ "s10RHv": "Close",
+ "s1Aw0o": "Go to admin console",
+ "s1GFW8": "Dropbox Paper: your team\u2019s collaborative workspace",
+ "s1Kp4P": "Couldn't save as PDF",
+ "s1NBO2": "Get an overview where you can configure settings, such as authentication, in the best way for your organisation.",
+ "s1cYKm": "Not allowed",
+ "s26ZRw": "Free from Dropbox",
+ "s2JjsZ": "Paper embeds any type of content beautifully and automatically. So, whether your team is making mood boards in Pinterest or choosing video clips from YouTube, everything related to their project is in one central place. And, because Paper is from Dropbox, the files you embed from your account are updated automatically whenever the file changes.",
+ "s2SQzc": "{name} will no longer be able to add and remove managers, change group information or delete the group.",
+ "s2SsJR": "Timeline",
+ "s2W7dS": "Add secondary email address",
+ "s2XJI8": "More space needed",
+ "s2YL0G": "Preview your brand",
+ "s2bK+3": "Tell us what problems or questions you have with your Dropbox account.",
+ "s2z0yg": "{count, plural, one {{count} item} other {{count} items}}",
+ "s39/fs": "PDF",
+ "s3RWxF": "Contact",
+ "s3VU9p": "People",
+ "s3buDx": "Centre-weighted average",
+ "s3x30B": "Upload files and they\u2019re synced securely across all your devices, ready for you when you want them \u2013 even offline.",
+ "s4+SaS": "{dropbox_passwords} isn't available on this computer yet",
+ "s4ib8d": "PIN added.",
+ "s56tD6": "Ensure your files get delivered",
+ "s5DXRz": "Select recipients",
+ "s5zwx7": "Removing member...",
+ "s6G1H4": "Success \u2013 your personal account has been created!",
+ "s6X/wC": "Here\u2019s what you get with {trademark_business}",
+ "s6iLg8": "Surname",
+ "s7DE4+": "You can also choose to keep your Dropbox {trademark_plus} subscription by going back and selecting \u201cKeep my account personal\u201d.",
+ "s83oV3": "{count, plural, one {{count} licence} other {{count} licences}}",
+ "s86tt6": "Couldn\u2019t send request. Try asking to join in person.",
+ "s87tDK": "We blocked this link for safety",
+ "s8lIYX": "{count, plural, one {Moved {succesfully_moved_files} out of {count} item to {folderName}. Shared folders can\u2019t be moved to other shared folders.} other {Moved {succesfully_moved_files} out of {count} items to {folderName}. Shared folders can\u2019t be moved to other shared folders.}}",
+ "s9wEZx": "Keep trial",
+ "sAU1dD": "Looking for something else?",
+ "sAZa2U": "Rename complete.",
+ "sAcvdZ": "We\u2019ll ask you some customisation questions in a moment.",
+ "sAkbY3": "Lock vault",
+ "sAxJWH": "Made {name} the owner",
+ "sB3BtA": "Dropbox Transfer files",
+ "sBgsKx": "{display_name} now has a Dropbox Basic account. You can also invite 1 more member at no extra charge.",
+ "sCHiez": "Go to {reseller_name} to view or make changes to your account details.",
+ "sCMFzX": "The watermark could not be saved because you do not have permission to save to this folder.",
+ "sCwU2b": "Two-step verification is already enabled. Did you enable it in another window perhaps?",
+ "sD1sax": "Go to Dropbox Help",
+ "sDAUf8": "The Dropbox EMM app will stop working, and employees will be prompted to use the normal Dropbox app to access company files.",
+ "sDC4Ax": "Create and present with Dropbox {trademark_professional}",
+ "sDGta5": "Cloud editors",
+ "sDPjE1": "
Cancelling your {currentPlanName} plan? Automatically back up one computer \u2013 regardless of size \u2013 for half the price of Plus.
{backupPlanName} is {monthlyPrice}/mo and lets you easily recover your files if things go wrong.
",
+ "sE7CkZ": "or try free for {trial_length} days.",
+ "sE9Ims": "The Dropbox support team is here for you. Chat to resolve any issues that come up.",
+ "sECMJn": "Changing name...",
+ "sETSJK": "unique views of links shared externally.",
+ "sEWTc2": "Integrated desktop experience",
+ "sEqbvJ": "High",
+ "sEukn4": "Loading...",
+ "sExBV7": "Type",
+ "sFJ+Hm": "Open \u25be",
+ "sFTqZL": "Dropbox will take appropriate measures to ensure that any agents and subcontractors used by Dropbox to perform its obligations under the Agreement that require access to PHI on behalf of Dropbox are bound by written obligations that provide the same material level of protection for PHI as this HIPAA BAA.",
+ "sFivS0": "{file_name} has other shared folders inside it. Try moving each shared folder individually.",
+ "sFqbWh": "Anyone you add to the folder will automatically get the latest version of files in it.",
+ "sG08Zk": "Start your free trial",
+ "sGKSF8": "Learn more",
+ "sGoZLi": "What to do after rewinding",
+ "sGx9TN": "Access your admin console",
+ "sH4isO": "New email",
+ "sHmFVT": "Click here",
+ "sHvl7E": "Be ready to tackle a variety of circumstances by creating detailed plans that support your organisation\u2019s overall emergency and continuity plan.",
+ "sHyWgn": "Starting upload...",
+ "sI6fMU": "Manage visibility and access to shared files with password protection, download permissions and expiry dates.",
+ "sIVZG2": "Remove {name}?",
+ "sIclY/": "Plan change summary",
+ "sJDevB": "For the full contract, invoice copy and remittance information, please refer to your copy of the executed contract.",
+ "sJKxkq": "Please note:",
+ "sJRsRx": "Select item",
+ "sKIwWI": "You're all set with this step. You haven\u2019t linked any apps to your Dropbox account. Learn more.",
+ "sKmCFq": "OK",
+ "sKmMCG": "Remember to name it",
+ "sL5QQd": "Find out more about Transfer",
+ "sLA3F9": "Save hard drive space",
+ "sLU6rL": "Couldn\u2019t copy to clipboard",
+ "sLvLeQ": "Someone saves and syncs their Facebook account credentials across devices using Dropbox Passwords.",
+ "sMPet7": "Can\u2019t get to your assignments right now. It should work later.",
+ "sMSm3v": "Downloads",
+ "sMb5Hr": "Top alert types triggered over the last 7 days",
+ "sMo6pN": "Contact us to change your billing schedule.",
+ "sMy5PN": "Zoom in",
+ "sN1hXL": "Contacts",
+ "sN2nOJ": "Are you sure you want to leave?",
+ "sN5g4y": "Watermarking file...",
+ "sNr43t": "",
+ "sO5j/T": "Remind me later",
+ "sOGxWm": "{professional_storage_tb} ({professional_storage_gb})",
+ "sP9Fn8": "What are the names and emails of the affected users?",
+ "sQFnnu": "A screen capture demonstrating the header customisation capabilities within the Showcase feature of Dropbox. The user adds a logo and title to the showcase page, then selects the full-width layout for the featured image in the header. Then the image zooms out to reveal the completed header for a showcase page.",
+ "sQbTsQ": "Request sent. Once it\u2019s been approved, you\u2019ll get an invitation from the team.",
+ "sQeztr": "Help your colleagues understand your personality, working style and goals.",
+ "sQwGLA": "Bear in mind that members won\u2019t be able to rewind at all, including any of their own content.",
+ "sRrzyE": "Everyone in your team can access this folder",
+ "sSGsrT": "Set whether the Dropbox desktop app opens by default",
+ "sSJ+PD": "Remove everyone in {team_name}?",
+ "sSXjJC": "Your team has used all of its data transport API calls for the month.",
+ "sSXxCC": "Access level",
+ "sSt7o/": "from {location}",
+ "sTTJTA": "Present file in Zoom",
+ "sTZgnw": "Invite",
+ "sU2eXg": "File backup",
+ "sV/k1C": "Share your work with increased control and security",
+ "sVMh6j": "Add a team you manage",
+ "sVSjKv": "If you think this was an error, request access to {filename}.",
+ "sVWQjW": "When people work on this file, you\u2019ll see their activity here.",
+ "sVanPX": "Moving a folder into itself isn\u2019t allowed",
+ "sVyxjk": "Do any of these help with sharing?",
+ "sW+o7c": "Your plan is set to be downgraded on {trial_end}. If you downgrade, your team will lose the additional space it\u2019s been using and your active team members will return to their initial space quota. If you want to keep using {trademark_business}, it only takes a few moments to add your billing information.",
+ "sWDIpT": "Title",
+ "sWECOq": "Files in sync, everywhere",
+ "sWb2oY": "Search by channel or person",
+ "sWchsF": "Everyone who had access to this content before will have access again.",
+ "sWfgaw": "{total} per {period}.",
+ "sWlrEH": "Delete",
+ "sXbzOl": "Folder icon",
+ "sY2bUM": "Download link sent to {user_email}.",
+ "sYRkw6": "Connected apps and extensions",
+ "sYUe0C": "Anyone with this link and password can view the folder.",
+ "sYe6CO": "Grant admin privileges",
+ "sZ+p34": "Only admins can edit top-level folders.",
+ "sZ4JWk": "Full access to {trademark_business} for {trial_length} days",
+ "sZAlpD": "{count, plural, one {{filename} and {count} more item will be gone forever for everyone, including anyone still using the items. Permanently deleting items won\u2019t free up space.} other {{filename} and {count} more items will be gone forever for everyone, including anyone still using the items. Permanently deleting items won\u2019t free up space.}}",
+ "sa6AtU": "{count, plural, one {Current member:} other {Current members:}}",
+ "sa8acb": "They can see it and join on their own",
+ "saddOk": "{count, plural, one {Invite {count} person to join your team?} other {Invite {count} people to join your team?}}",
+ "sago3n": "Page up",
+ "saorDp": "{name} has been cancelled",
+ "sbG0Ow": "Make Paper your project manager",
+ "sbO30Y": "Dropbox Binder (beta)",
+ "sc9Z0O": "DELETED FAMILY ROOM FOLDER",
+ "scPey9": "Toggle main navigation",
+ "scVYLl": "Error.",
+ "scm8rG": "Install Dropbox on your computer",
+ "sd/ylm": "Please note that you have an active Dropbox {trademark_plus} subscription managed through the {billing_store}. You must cancel it to avoid being charged in the future.",
+ "sdNYix": "Dropbox lets me keep my important documents and photos safe and prevent them from being lost, and I know I can access them whenever I need to, on any of my devices.",
+ "sdVR3Z": "Reseller support",
+ "sdXG7S": "Company logos",
+ "sdaeqd": "Based on your account history, you are eligible to downgrade your account and receive an immediate refund.",
+ "sdcCRZ": "Mobile",
+ "sdndqE": "Invalid backup code",
+ "sdxcon": "Invite people to {teamName}",
+ "seHweQ": "Marked as resolved by {name}",
+ "seMnVT": "Couldn\u2019t find vault. Please check with the owner.",
+ "seRlbx": "Current PIN",
+ "segCBY": "This will remove the contacts imported from this device and sign you out of the Dropbox mobile app.\n If you sign in to the app later, your contacts may be imported to Dropbox again.",
+ "sfMcCZ": "Remember, you\u2019re about to replace the policy on some of the folders you selected.",
+ "sfNuPA": "Download Dropbox Paper",
+ "sfSmtg": "Sign in as member?",
+ "sgD7C4": "Join an organisation?",
+ "sgNaE1": "We\u2019re getting all of the invitations ready, and we\u2019ll let you know once they\u2019ve all been sent out. This might take a little while.",
+ "sgmpQr": "Update where you work",
+ "sgvdUo": "Switch to your work account",
+ "sh4TnS": "Add people",
+ "sh4wBz": "Your plan has scheduled changes that will cause your Dropbox to become full.",
+ "shOh4q": "Feedback works for alerts from March 2021 onwards",
+ "shmoBI": "You\u2019re changing to a {trademark_business} {plan} plan for the remainder of your free trial. Your new {schedule} total will be {recurring_total}, due on {date}.",
+ "siFaPg": "Business critical:",
+ "sinwN6": "You unshared {single_item_name}",
+ "sj79z4": "Track all of your team\u2019s work with Asana while keeping Dropbox content alongside.",
+ "sjM3E3": "Leave '{'group_name'}'",
+ "skJH+1": "Suspend",
+ "skSN5E": "Last edited by a permanently deleted user on {creationTime}",
+ "skfgf2": "Trello integration",
+ "skrspC": "Real-time alerts and notifications",
+ "sl5Fj7": "I @mentioned you in this folder. Take a look.",
+ "slD1pf": "If you want members to keep access to shared folders from their old team, set the folder membership for each one to 'Anyone'.",
+ "slJNdC": "Errors found in the CSV file",
+ "slbdL4": "Upload the HTML file",
+ "sldEb5": "Add the meta tag",
+ "slkoxp": "Total",
+ "slo33I": "Select view type",
+ "smBdVk": "Your new email address can\u2019t include {team_domain_name}",
+ "smByay": "Get file storage and sharing for everyone in my family",
+ "smyluT": "Thank you for taking the time to keep your Dropbox account secure.",
+ "sn3FbU": "Your {trademark_business} trial has ended",
+ "snvpS3": "Set a unique password to protect your work Dropbox account.",
+ "so/hoo": "Your team\u2019s content will be moved into the primary team\u2019s account",
+ "soLE0M": "You don\u2019t have permission to view some of the contents of some of these files. Please note that restoring these folders will reinstate access according to their original members, including any members of child content. The folders you don't have permission to view will remain confidential to you, but will be accessible by other users.",
+ "soh5HQ": "Create",
+ "somghu": "Folder or file\u2026",
+ "sox4lX": "Move Paper docs into Dropbox",
+ "spCwO+": "Following",
+ "spH6O7": "Free individual plan with 2 GB of space and limited sharing features",
+ "sq/C7H": "Select items to make online only. You\u2019ll still be able to see them from the Dropbox folder on your computer.",
+ "sqJ7ge": "Trying to sign in to Dropbox?",
+ "sqNGnW": "Quickly check the status of things such as available licences, number of members and space used.",
+ "sqlnXG": "Edit and eSign PDFs",
+ "sr0cDs": "Enter the password to open this file.",
+ "sr8ZpS": "busy",
+ "srI/to": "Sent! Check your email on your device.",
+ "srKG/z": "You don\u2019t have permission to view the contents of \u2018{folder_name}\u2019. Please note that restoring this folder will reinstate access according to its original members, including any members of child content. \u2018{folder_name}\u2019 will remain confidential to you but will be accessible by other users.",
+ "srLy1v": "Members of {shared_folder_name}",
+ "srXjWw": "Give your team visibility of your typical week and describe how you can work together well.",
+ "srdUGg": "Add colleagues quickly",
+ "srndH4": "Access changed for {current_folder}.",
+ "ss4CO0": "Folder name",
+ "ssRqjC": "Saving hard drive space is easy",
+ "ssdefa": "Can\u2019t save changes. Paste text elsewhere to save, then click Refresh.",
+ "ssjQ58": "Access all of your files from your desktop, without taking up all of your hard drive space.",
+ "ssk5PE": "Security. Access level, and whether they\u2019re protected by a password or expiry date",
+ "sssV8H": "Check account security",
+ "stkqXh": "Only you can view via the link.",
+ "su9q9n": "Synced",
+ "suHv2e": "Click 'Share' to upload your Dropbox file directly to Canvas.",
+ "suJg74": "When you invite new users, they\u2019ll get an email so they can finish setting up their account. Anyone who already had a Dropbox password can now use that password (preview email). Anyone who didn\u2019t have a Dropbox password will need to create one to sign in (preview email).",
+ "suJofd": "To import everyone, submit multiple CSVs with 1,000 or fewer people in each.",
+ "sufs69": "Enter the code generated by your authenticator app.",
+ "sujx6Q": "Your version of {trademark_business} doesn\u2019t support team merges yet. Let support know that you\u2019d like to update to a version that supports this feature \u2013 don\u2019t worry, there\u2019s no additional cost.",
+ "suwlZc": "Show in {file_browser}",
+ "svCMOP": "Only the owner",
+ "svLH03": "Previous deadline",
+ "svW9/s": "{actor_name} archived the {card_name} card with this file attached",
+ "svxOei": "{display_name} is now a support admin.",
+ "swPTxg": "Your team will lose the additional space it\u2019s been using and access to powerful features such as the admin console, extended version history and Smart Sync.",
+ "swViYV": "Choose your Dropbox folder for your signed copy to be saved automatically and stored safely.",
+ "swYU4I": "If you want to keep using {trademark_business}, why not add your billing information now and get it out of the way?",
+ "sxF0qm": "Your request to join was declined",
+ "sxLN49": "{count, plural, one {Expires in {count} day} other {Expires in {count} days}}",
+ "syJiNE": "Transfer with no items",
+ "sywyNe": "Re-send notifications",
+ "sz+5vG": "Spend less time tracking down and updating files, and more time doing the work you actually want to do. Team folders help everyone store and organise work in one location, making it easy to find what you need, when you need it.",
+ "sz+AhS": "{count, plural, one {Pinned {count} item.} other {Pinned {count} items.}}",
+ "szIrMe": "Removing folder from your Dropbox\u2026",
+ "szTr0b": "Sign out of {host}?",
+ "szYHfI": "More about viewer info",
+ "szfzWV": "Loading articles...",
+ "t+M+VP": "An account with the email address {email} already exists, but has not been verified. Enter your existing Dropbox password to sign in.",
+ "t+RdzF": "Can\u2019t send more than one merge request",
+ "t+qFUO": "Folder selector",
+ "t+rsFS": "Extended file recovery and version history",
+ "t/1uLY": "You may need to check your spam folder or unblock no-reply@dropbox.com.",
+ "t/Jn61": "items",
+ "t/KhAI": "{maxRewindDays, plural, one {{maxRewindDays,number} day} other {{maxRewindDays,number} days}}",
+ "t/wxXe": "preview this file",
+ "t0Frp1": "Copy link",
+ "t0ve6c": "Finish",
+ "t0xr6L": "Try {trademark_business} with your team!",
+ "t14tE4": "Skip",
+ "t1ckrO": "Multi-segment",
+ "t1w2EM": "Using Dropbox with a team?",
+ "t1ylDh": "Not included in the report: files and folders that are only shared because they\u2019re in a shared folder.",
+ "t2HuL6": "Any online-only files your team has will be downloaded and take up space on members' hard drives.",
+ "t2h3Y9": "Set new file default",
+ "t3Jo9w": "Sort by",
+ "t3gSp4": "Maintain ownership of data",
+ "t40FTi": "Legally valid, court-admissible signatures",
+ "t4QhIx": "Set up your folder structure",
+ "t4qNgJ": "From",
+ "t4ulvi": "Upcoming changes to Dropbox Paper",
+ "t55DhV": "Drag files or folders here",
+ "t5Lipo": "Learn about the different roles",
+ "t5mEYm": "Centralise and secure all of your family\u2019s files and share {quota} of encrypted cloud storage. Everyone gets their own account for photos, passwords and docs, and there\u2019s a shared place for the whole family.",
+ "t6hm3E": "American Express",
+ "t6mPeQ": "Undo complete.",
+ "t7/tLn": "Enter your email address to set your password.",
+ "t7Oe8k": "Close page and continue without joining a team",
+ "t7SwRy": "{count, plural, one {Anyone in your Dropbox team with this link and the password can view the folder. Expires in {count} day.} other {Anyone in your Dropbox team with this link and the password can view the folder. Expires in {count} days.}}",
+ "t9+I06": "Submit this form now to make sure you don\u2019t lose access to your important work files. You\u2019ll be billed straight\n away for your {trademark_business} subscription.",
+ "t9gV1e": "Request",
+ "t9xcgy": "Locked files",
+ "tA1A/A": "Set timezone",
+ "tAFtaB": "Remove a member of \u201c{parent_folder}\u201d?",
+ "tAM3MQ": "(showing {amount} of {totalEvents})",
+ "tAPF0a": "We\u2019ll look into this straight away. For now, make sure everything else looks OK with our security check tool",
+ "tAVyoH": "I want to keep both subscriptions",
+ "tAhmph": "{count, plural, one {{count} video} other {{count} videos}}",
+ "tB608b": "Releasing",
+ "tB7wey": "Open",
+ "tBDUcB": "Send files",
+ "tBNy96": "{count, plural, one {Your plan supports {count} device} other {Your plan supports up to {count} devices}}",
+ "tBZioS": "Print",
+ "tBqSvt": "Payment",
+ "tCkEqu": "The copy we\u2019re saving of these files will be deleted, and you won\u2019t be able to export the hold in the future. Don\u2019t worry, we won\u2019t delete any of the actual files your members are using.",
+ "tCwBHH": "You have removed your own access to this folder.",
+ "tD48Wg": "Recover lost work",
+ "tDMjo2": "bytes",
+ "tDQ6/g": "Chrome",
+ "tDfU/w": "Translated",
+ "tDnfzm": "Clear activities",
+ "tEArbp": "{count, plural, one {As a member of the parent folder listed below, {member_name} can still access the contents of \u201c{content_name}\u201d.} other {As a member of the parent folders listed below, {member_name} can still access the contents of \u201c{content_name}\u201d.}}",
+ "tEX5tu": "Leave team",
+ "tF1F37": "{count, plural, one {{count} team folder} other {{count} team folders}}",
+ "tF8pPr": "Select Word document, Excel workbook or PowerPoint presentation.",
+ "tFFykq": "Get plenty of storage for all of your work.",
+ "tFGyx0": "{count, plural, one {Moved {count} item.} other {Moved {count} items.}}",
+ "tFP38W": "Campaign type",
+ "tFVI8B": "Update",
+ "tG5+96": "All members will keep their member folders.",
+ "tGT2VA": "Basic settings",
+ "tGaOiN": "Click 'Open with' and select DocuSign to open PDFs.",
+ "tGzw4L": "Can\u2019t find any courses. In Canvas, check whether you\u2019re enrolled on an active course.",
+ "tH6wIo": "Last activity: ",
+ "tHNeW4": "See owner",
+ "tHT3pC": "Loading...",
+ "tHTGIC": "Create new export",
+ "tHg9W5": "Preview not available.",
+ "tIMDr+": "{terabyteSpace} ({gigabyteSpace})",
+ "tJFdOn": "File",
+ "tJPsNN": "Try permanently deleting this again",
+ "tJzlWE": "Comment",
+ "tK//MX": "Enterprise",
+ "tK7+L8": "Invite team members via email",
+ "tKVnjr": "Billed {billing_schedule}",
+ "tKbyJ8": "Unshared {folder_name}.",
+ "tKe0z/": "View",
+ "tL3kkO": "{count, plural, one {Copying {count} item...} other {Copying {count} items...}}",
+ "tL9BMb": "Have you tried using one of our quick support tools?",
+ "tLGeVx": "Preview files shared in Slack",
+ "tLJ/eV": "Couldn\u2019t upload. Try again in case it was a one-off, or reload the page.",
+ "tLSiuw": "Unexpected pagination",
+ "tMJAbf": "Manage {billing_store} subscription",
+ "tMN7Nz": "No, a showcase doesn\u2019t use additional Dropbox storage space.\n Only the files in the showcase use your storage space.",
+ "tMVEdI": "{count, plural, one {{count} member with compulsory SSO won\u2019t be affected.} other {{count} members with compulsory SSO won\u2019t be affected.}}",
+ "tMbAT6": "Medium",
+ "tMiHzE": "Cancel for now",
+ "tN2BDI": "Edited {relative_time}",
+ "tNvsyA": "Send invitation",
+ "tOJfEY": "Since {date}",
+ "tOfnIZ": "{team_name} members with this link",
+ "tPcEYW": "Any policies or legal holds you have will be moved over.",
+ "tPcnDE": "Slack",
+ "tPuvjh": "Add a team folder",
+ "tQ1bJN": "Can\u2019t upload. Your team no longer has full use of {trademark_business} features.",
+ "tQTXOk": "Your plan is scheduled to be downgraded to Dropbox Basic on {date}. If you want to make any changes, first cancel your scheduled downgrade.",
+ "tR4Cv0": "Off by default",
+ "tR8p1/": "{count, plural, one {{name} deleted {count} item} other {{name} deleted {count} items}}",
+ "tRN9Ri": "Help with photos and videos",
+ "tRUDJx": "Add members",
+ "tRV47d": "Yep, that\u2019s you.",
+ "tRlSi7": "Can\u2019t add. Choose an image file such as a JPEG, GIF or PNG.",
+ "tS6aDQ": "Other file types",
+ "tSGJ7k": "Are you sure you want to continue?",
+ "tSHKpu": "Admin",
+ "tSSTbX": "Discount",
+ "tSs2ty": "Back",
+ "tStQNw": "Your files are on their way",
+ "tT+u7F": "Uploads will be disabled two days after the deadline.",
+ "tT7CPi": "There\u2019s already an export with that name. Try another one.",
+ "tTDAjc": "Explore plans",
+ "tTEKfn": "Dropbox Plus",
+ "tTSQor": "What happens when the gifted subscription ends?",
+ "tTgDqf": "Suspend member",
+ "tTi2vZ": "Leave the {team_name} team",
+ "tU393d": "Contact sales for pricing",
+ "tUQkb5": "Default editing apps",
+ "tUSiPt": "Sync this folder automatically to members\u2019 computers",
+ "tUgQnG": "Do more than share files \u2013 guide people through your work. Use visual previews, customised layouts and informative captions so they see the right content, with the right context, in the right order.",
+ "tUjhJf": "Unauthorised user.",
+ "tVLdyJ": "Choose a language:",
+ "tVkhHa": "Assign task to",
+ "tVp2O+": "Add permissions",
+ "tWZexu": "Last active",
+ "tWmQYf": "Plan billed monthly",
+ "tWra0l": "Impacted by COVID-19",
+ "tXAIYu": "Block (current default)",
+ "tXCFBm": "Security and compliances where it matters most",
+ "tXX+a4": "Nice job getting organised. Ready for the next step?",
+ "tXeqUS": "Automatically saves email attachments to a folder when you send emails to {email_address}",
+ "tXiH4l": "Let {collaboratorName} keep a copy of this shared folder",
+ "tXjtlI": "Microsoft Office 365 Tenant ID",
+ "tXptqg": "Only team admins",
+ "tYHubF": "Send large files to anyone",
+ "tYo3ZT": "Share file request",
+ "tYw/vF": "{actor_name} shared this file with {slack_recipient_name}",
+ "tZ+OmK": "I agree that Dropbox can send me messages\n using an automatic telephone dialling system and using the phone number provided.\n I understand that I am not required to agree in order to sign up for Dropbox. I\n understand that standard data and message rates may apply.",
+ "tZ2c0r": "Cancel",
+ "tZ4Cl0": "Before you can access {content_name}, we just need to verify that your email address is {user_email}.",
+ "tZ9Zk9": "This means you can no longer download {displayName}\u2019s vault files, but you can still access any files you\u2019ve already downloaded. We\u2019ll let {displayName} know you made this change.",
+ "tZhi73": "Anyone with the link can view this folder. Downloads disabled.",
+ "tZn8tS": "Unstar",
+ "tZz57V": "Decline",
+ "taNFWh": "Home",
+ "taP8wv": "{billing_schedule} billing",
+ "taXtH/": "Keep {trademark_business} and purchase instead",
+ "talpft": "Activate",
+ "tb19lj": "Extension installation failed",
+ "tb9YQs": "Invite to team",
+ "tbFeQQ": "Update billing",
+ "tbMyDV": "Something went wrong with the request \u2013 please refresh the page",
+ "tbN3jw": "Removing member from {current_folder}\u2026",
+ "tbdSoK": "Add PIN protection to valuable docs, such as passports",
+ "tc+0L8": "Can\u2019t sign in?",
+ "tc/4YZ": "Your changes weren\u2019t saved because you are editing this description elsewhere.",
+ "tc7UdS": "'View more' arrow",
+ "tcTOBj": "The Smallpdf integration with Dropbox offers a complete online PDF software suite for you and your team to seamlessly process digital documents, simplify workflows and collaborate on large projects.",
+ "tcU8OS": "Send email to {email}",
+ "tcjpY3": "Comments \u00b7 {count}",
+ "tcxsRK": "If any team members are using linked accounts on their computers, this will sign them out of the second account they added and remove it from their desktop app.",
+ "td6yIA": "Connect your {service} account to your Dropbox account",
+ "td9Mz6": "Something went wrong with the request \u2013 please contact admin",
+ "te+SSh": "Alert severity",
+ "teB/JU": "Which domains outside your team do members share with?",
+ "teLqGk": "Your file request is now active.",
+ "ted8XA": "Removed",
+ "tfGQfP": "{count, plural, one {{count} member folder is almost full} other {{count} member folders are almost full}}",
+ "tfZFkx": "Type:",
+ "tfdxPP": "Anything specific that people should know (such as internal links or resources)?",
+ "tfq31P": "App folder",
+ "tg/Kpc": "You can access their files through the content page, and sign in as any member of their team.",
+ "tgHMpz": "People at {team_name} with the link can view",
+ "thJF4c": "Send it again",
+ "thjcD3": "Failed to copy link to clipboard",
+ "thmzHN": "{count, plural, one {Can\u2019t move shared folder to a team folder} other {Can\u2019t move shared folders to a team folder}}",
+ "thyxZr": "Connect apps to Dropbox and see what\u2019s happening with your file in other apps.",
+ "tiKa++": "{name} will have a different set of admin permissions.{br}{br}New role: {new_role} admin{br}Old role: {old_role} admin",
+ "tjn1zH": "deleted",
+ "tk18q5": "Top billing, payment and subscription charges articles",
+ "tkBGME": "99+",
+ "tkX9Qf": "Rename transfer",
+ "tkcLcU": "On",
+ "tkfLxs": "{count, plural, one {You shared {count} item in {folder_path}} other {You shared {count} items in {folder_path}}}",
+ "tlEIIf": "Error loading",
+ "tlRjy2": "Connect",
+ "tm1VBM": "Michael Kuntz, COO{br}Simusolar",
+ "tn/39D": "Unable to load",
+ "tnX9rj": "LIFE VAULT FOLDER",
+ "tngNEJ": "Set",
+ "to+DX0": "Enter Zoom meeting ID",
+ "toOggs": "You edited this file",
+ "toUeSs": "Login session ID",
+ "toXz6N": "{value, plural, one {{value,number} year} other {{value,number} years}}",
+ "toc0wl": "Added",
+ "tomAos": "From Word",
+ "tosdcC": "PIN:",
+ "tq1aa1": "Scanning for security key",
+ "tq4ncq": "Install the mobile app to finish setup",
+ "tq8Zhb": "Something went wrong, but it should work if you try again.",
+ "tqImHu": "Link will work for 7 days",
+ "tqVt6I": "Take your workflow to go",
+ "trPbPE": "You moved {single_item_name} into {dst_folder}",
+ "tsdRAZ": "file too large",
+ "tswsos": "Manage",
+ "tsyuSz": "I didn\u2019t receive notifications or can\u2019t recover my account using this page",
+ "ttHWNF": "Dropbox allows us to move 10 times faster. It's really the brain of the organisation.",
+ "tthwuJ": "Create a group",
+ "ttkTFw": "Start your {plan} subscription today. This offer expires on {expiration_date}.",
+ "ttmV3r": "Hide sidebar",
+ "tuKZQZ": "Close",
+ "tunaZf": "Standard files ({fileSize})",
+ "tv6lmS": "{platformName} logo",
+ "tvFbL0": "Delete group",
+ "tvNfyO": "Break free from your hard drive",
+ "twi6Bc": "{name} settings",
+ "twkLfg": "Members can create a HelloSign account so they can sign and send documents from Dropbox.",
+ "tx+fwq": "Your card code is a 3 or 4 digit number that is found in these locations:",
+ "tx3Ap4": "or move files here from your Dropbox",
+ "txUjQq": "Size",
+ "ty8OUw": "Archive",
+ "tyW3Tq": "Resend invitations",
+ "tyamqE": "You\u2019re upgrading to a {trademark_business} {plan} plan. Starting from {date}, your new {schedule} total will be {recurring_total}.",
+ "tyzuDO": "Link copied. Allows editing.",
+ "tzjPCu": "Or sign out of some devices",
+ "tzyBCT": "This {extension} file is password protected",
+ "u+USTG": "The best sharing and storage solution for your business",
+ "u+tHhA": "Not enough hard drive space. Choose online only.",
+ "u/SFbl": "out-of-date browser warning",
+ "u/gT4q": "Couldn\u2019t clear manually added contacts. Try again.",
+ "u/p3Pl": "Close",
+ "u/wM4p": "The Dropbox in Windows system tray/macOS menu bar, shows the calendar integration that suggests files to attach to your meeting, as well as content suggestions and team highlights.",
+ "u09i+4": "An authenticator app lets you generate security codes on your phone without needing to receive text messages. If you don\u2019t already have one, we support any of these apps.",
+ "u0FIpm": "Updated timezone.",
+ "u0oi4m": "Present shared files with your logo, company name and a background image.",
+ "u1+s8b": "Message me on Slack when",
+ "u1OtMc": "Members with directory restrictions",
+ "u1R/iY": "Extract all",
+ "u1hIpU": "Set default access for newly created Paper folders. This setting can be changed by members for individual folders.",
+ "u1jBzP": "Show files shared",
+ "u1mdzp": "Request approved",
+ "u223u2": "All linked users",
+ "u28O+d": "Space",
+ "u2PbEI": "Please enable cookies to use the Dropbox website.",
+ "u319bW": "Shared with",
+ "u3CNYU": "Join forces with admins in other Dropbox teams to coordinate settings and security",
+ "u3GBhB": "You can\u2019t email more than 300 people at a time.",
+ "u3PRMn": "List",
+ "u3d9dU": "F2",
+ "u3vxkg": "Settings",
+ "u3zokp": "Dismiss banner",
+ "u4EHIo": "You may still have access to this folder via a company group or parent folder.",
+ "u4Fl30": "Size",
+ "u4cDSd": "Do you have a computer or mobile device linked to Dropbox?",
+ "u5PKxh": "Desktop app and dropbox.com",
+ "u5UFHt": "You have a large Dropbox. We recommend choosing online only.",
+ "u5f47y": "Back of a folder.",
+ "u5zxQY": "Policy",
+ "u68XIJ": "Creation time",
+ "u6AlvH": "\u2190",
+ "u6HQQX": "Select this row",
+ "u7hry5": "Actions",
+ "u7mFJh": "To keep deleted files for up to {version_history_policy} days, upgrade to {trademark}.",
+ "u7vpeG": "Can\u2019t open this file",
+ "u8/DLx": "New expiry date",
+ "u842ND": "Select {description}",
+ "u89DID": "Declined on {requestDeniedDate,date,medium}",
+ "u9oxUT": "Download anyway",
+ "uA/W1U": "Unshare?",
+ "uB0ll+": "Continue",
+ "uBK2wU": "Present in Zoom",
+ "uBRRiV": "Submitting...",
+ "uBcSXa": "Direct messages",
+ "uBmBDM": "Following Discovery of a Breach or a Security Incident.",
+ "uBopyb": "Click here to describe this Space",
+ "uC6JWs": "You do not have access to perform this operation",
+ "uCVAxq": "Who has access",
+ "uCbqux": "Expiry",
+ "uChE0e": "{space} of space for secure storage",
+ "uCttX5": "Content owner",
+ "uD1sQL": "Remove {app}?",
+ "uD4mCH": "Add details to your invoice, such as the company name and address.",
+ "uDZuQ/": "Please rename this app",
+ "uDhMax": "Sign in to your {label} Dropbox",
+ "uDn+Ex": "Includes active, invited and suspended members",
+ "uE2zpB": "Contact your admin to resend your invitation.",
+ "uEU1LJ": "\u201cDropbox lets me keep my important documents and photos safe and prevent them from being lost, and I know I can access them whenever I need to, on any of my devices.\u201d",
+ "uEnBTO": "Edit, convert and annotate the document. Sign or request signatures.",
+ "uFFK4t": "Previous",
+ "uFVAPQ": "Send link",
+ "uFbQOk": "Comments",
+ "uFfyDv": "Suspended {name}",
+ "uGDUlE": "This file will be saved instantly to your Dropbox and downloaded to all of the computers linked to your account.",
+ "uGHYAs": "Unlocked editing. Anyone else with access can edit again.",
+ "uGRi5m": "Send a reminder",
+ "uGbqz6": "You\u2019ve already requested a change to your billing period. If you want to choose a different billing period, first cancel your pending change. Cancel change",
+ "uGrlSw": "yearly",
+ "uH1oiy": "Archive",
+ "uHRHvj": "1 team folder",
+ "uHTmHj": "Camera make",
+ "uIQYB8": "No archived team folders",
+ "uIVHWb": "{name} moved {single_item_name} out of this folder",
+ "uIg+ju": "viewed {time_str}",
+ "uInvw3": "Policy type and duration",
+ "uIrB8j": "Date format updated.",
+ "uJOFi1": "Policy: {name}",
+ "uJPgvB": "Keep this account personal",
+ "uJxOXX": "We couldn't find that person",
+ "uK7PIT": "{start_date} - {end_date}",
+ "uKvpKG": "The Australian Ballet",
+ "uL1rnd": "Your team will lose {space} of space and access to powerful features such as the admin console, extended version history and Smart Sync.",
+ "uL2/ur": "Email addresses",
+ "uL7ze3": "Unlimited",
+ "uLMn8y": "Connect Dropbox to even more apps",
+ "uLVmrP": "Also ask to join {teamName}",
+ "uLpVJt": "{count, plural, one {This folder is covered by the retention policy \u201c{policy_name}\u201d. To get the items currently in the folder, download here.{br}{br}To get all items that are in their retention period, including data deleted by members, download the folder from the policy.} other {Some of the folders you selected are covered by retention policies. To get the items currently in the folder, download here.{br}{br}To get all items that are in their retention period, including data deleted by members, download from the policy page:{br}}}",
+ "uLwElN": "Get peace of mind",
+ "uMjLqH": "To continue, create a free Dropbox account.",
+ "uMuaYi": "Add to plan",
+ "uNhjIM": "Paper\u2019s smart formatting and simple, clean design mean you can create beautiful work without spending hours on it.",
+ "uO+nHb": "Manage password and two-step verification, and view activity reports for non-admin members.",
+ "uOIXFb": "Your email has already been verified",
+ "uP4VUY": "Your domain host hasn\u2019t updated your {record_type} record yet. We\u2019ll keep checking and let you know when it\u2019s been done.",
+ "uPHefB": "Timezone: GMT {offset}",
+ "uPK3Ke": "Apply watermarks quickly",
+ "uPjbdw": "Open",
+ "uPlpIx": "Overdue \u2022 Open",
+ "uQ9oGF": "We were unable to complete your request.",
+ "uQCRK9": "{user_name}",
+ "uQF0D4": "Unable to upload {file}",
+ "uQsEat": "Processing request...",
+ "uR6YMd": "{index}. Choose your space",
+ "uRA/73": "Please enter an email address.",
+ "uRiiH0": "How satisfied are you with Dropbox Transfer?",
+ "uT4VqR": "The file name should have fewer than 255 characters",
+ "uTD2X0": "This account\u2019s Dropbox {plus} plan was activated with a licence key. The plan is active until {date}.",
+ "uU05DR": "Deleted {ago}",
+ "uUFxJs": "Step 1 of 3",
+ "uVZpJw": "out of space",
+ "uVh5cg": "{duration, plural, one {{duration,number} hour free} other {{duration,number} hours free}}",
+ "uVhmPi": "Preview a shared file",
+ "uVtWFD": "A user creates a Google Doc directly from Dropbox.",
+ "uWSxFo": "Work Dropbox name",
+ "uWloCk": "Alert",
+ "uXv0Nv": "Make sure you don\u2019t get charged for your Dropbox {trademark_plus} trial",
+ "uXxNTN": "Font",
+ "uY/bLP": "Having problems? Please try again.",
+ "uYBBSD": "You won\u2019t get an alert if a member moves an unusually large amount of content.",
+ "uYj3ze": "Cancel",
+ "uYqlQ1": "Project / Program Management",
+ "uZJiY3": "Preview the email we send",
+ "uZV5CG": "Default",
+ "uZXnPS": "Might be your IT team or helpdesk",
+ "uZZoh8": "Add to Dropbox",
+ "uZf736": "Your current plan summary",
+ "ua8k7H": "Loading teams",
+ "uaF2Te": "Invite team members",
+ "uaZcVT": "or log in with Dropbox credentials",
+ "uabM2e": "Password required",
+ "uaoCeS": "Early access",
+ "uapumL": "New to Dropbox",
+ "ubRpF9": "Zoom meeting added",
+ "ubUSyC": "The best way to store, share and securely access all of your files. Get powerful sharing tools to let your work shine.",
+ "uc/3l/": "Claim your domain to help invited users join your team more quickly.",
+ "ucCDQG": "First, we\u2019ll review how the move will work, then you can schedule a time for the move to happen.",
+ "ucc16j": "Add people",
+ "ucdr5f": "Choose at least 1 type",
+ "uciNR2": "The member and activity log (recommended)",
+ "ucqLru": "Can\u2019t show content because the link has expired.",
+ "ucy7AC": "Click 'Open with' and select HelloSign to open your PDFs directly in Dropbox.",
+ "ucyy9A": "Or send invitations",
+ "udFUjU": "Secondary email {email} added.",
+ "udlLOv": "Track and save signed documents",
+ "udvT+R": "A deleted file",
+ "ue68Os": "Everyone in {team_name} has access to new folders",
+ "ueivUA": "Send invitation link",
+ "ueqKqh": "Make them a user management admin?",
+ "ufSK1e": "Active ({size})",
+ "ufXdGT": "Assign yourself or someone else a task for this file",
+ "ufl8ka": "View link created.",
+ "ufwq4C": "You are scheduled to cancel {trademark_business} on {date}. Are you sure?",
+ "ufxjOg": "No results. Sorry.",
+ "ugA2PS": "Upload failed, please try again",
+ "ugUr8k": "Create groups to give the right people access to files quickly.",
+ "ugZzDZ": "This means {email} can\u2019t download your vault files any more, but can still access any files they\u2019ve already downloaded. We won\u2019t notify them of this change.",
+ "uh83Ju": "Selective Synced",
+ "uhIsze": "Learn more",
+ "uhWEVb": "A woman uses her laptop as she holds a tablet in her hand.",
+ "uhx0D0": "Add details to your invoice, such as the company name, address and VAT registration number.",
+ "ui2X3y": "Couldn\u2019t activate the hold. Try creating it again, or contact us so we can help.",
+ "uiGNOZ": "You added {single_item_name} in {folder_path}",
+ "uiaINw": "One place to organise and share family content",
+ "uihTD1": "What's included?",
+ "uiqfT+": "Tidy up inactive content",
+ "uitaX8": "Searching...",
+ "ujO/36": "{id_string} will be removed from the member list. Any invitation or activation links you\u2019ve sent will no longer work.",
+ "uja8q9": "Quickly move more files into Dropbox",
+ "ujnk3d": "{licenseOverage, plural, one {You\u2019ll be charged for {licenseOverage,number} more person, and your new yearly total is {recurringCostIncludingTaxText}. Watch out for an email with all the details.} other {You\u2019ll be charged for {licenseOverage,number} more people, and your new yearly total is {recurringCostIncludingTaxText}. Watch out for an email with all the details.}}",
+ "ujsJLp": "Step 1 of 2",
+ "ukyV/6": "Black",
+ "ul4QwY": "in {location}",
+ "ul7rQs": "Once you unlink this app, it will no longer have access to your Dropbox.",
+ "um0219": "Live chat box",
+ "um5odk": "Set password",
+ "um7qHG": "What\u2019s included?",
+ "umIJKx": "What\u2019s included in {trademark_dbx_professional}?",
+ "umKvUG": "120-day version history",
+ "umViCk": "Sorry, we could not find all the files to download.",
+ "un+d9j": "(change)",
+ "un5VKD": "Invitation resent to {email}",
+ "unGiDh": "Smart Sync",
+ "uo7C3M": "For solo workers",
+ "uo9z+q": "Tackle your everyday tasks with one tool. Create, edit and share cloud content from Google Docs, Sheets and Slides, Microsoft Office files, and Dropbox Paper directly from Dropbox.",
+ "uoF9c7": "Everyone in your team can edit top-level folders.",
+ "uoLC3b": "Error trying to sign in with push notification.",
+ "uos+ms": "Password-protect this link for viewing the folder.",
+ "uosqaq": "Admin console",
+ "upNE1C": "Remote device wipe",
+ "upeVZS": "{invitingUserName} wants you to join the {teamName} Dropbox team. Join them for business features and instant access to team files",
+ "upmba9": "{num_suggested, plural, one {We couldn\u2019t send the invitation, but we let the admin know. Contact them for next steps.} other {We couldn\u2019t send the invitations, but we let the admin know. Contact them for next steps.}}",
+ "uqQwD8": "Key not found.",
+ "uqW2ln": "Shared",
+ "ur4wUO": "Manager",
+ "ur9Ewf": "Members can set their own branding",
+ "urHFcV": "Create an account to join your team",
+ "urvMXI": "Need help restoring deleted files? Learn more",
+ "usN8kc": "No. You will only be charged for a gift once, and it will not be renewed.",
+ "uszwge": "Select Dropbox Paper or Dropbox Paper Template.",
+ "ut04US": "View details",
+ "ut44fQ": "Can\u2019t upload .{ext} files because they\u2019re web based.",
+ "utBohU": "With this update, online-only files will no longer appear to take up hard drive space.",
+ "utNf/m": "Stay in sync",
+ "utRrNM": "Space used",
+ "utTicB": "Open folder",
+ "utybtT": "Pick another folder. It looks as though you can\u2019t access this one any more.",
+ "uuF/uT": "Team folders keep work accessible",
+ "uufVvn": "Status",
+ "uukIVm": "Share a file",
+ "uwPlIR": "with {member}",
+ "uwqxfJ": "We\u2019ll refund the pro rata portion of your remaining subscription to your payment method.",
+ "uxR2fx": "Beta testers",
+ "uxSU4g": "Guest",
+ "uy2TUv": "Back",
+ "uy4Ve5": "Member, but can invite and manage team members",
+ "uyGQa+": "Which files are accessible to people outside your team? Search and filter to see exactly what\u2019s going on.",
+ "uyIsjv": "Sign up for Dropbox to use Spaces",
+ "uyXDaM": "Why are you previewing this file?",
+ "uyZR7V": "{tax_name} ({tax_percent}):{space}{tax_amount}",
+ "uzLWdB": "Ask me later",
+ "uzhNPq": "\u201cPHI\u201d",
+ "uzovJo": "Billed {schedule}",
+ "uztJK1": "Create a central source of truth for your team. Gather requirements, add code snippets and designs, and get input from stakeholders.",
+ "uzu9NH": "Remember me",
+ "v+fiz1": "You only have partial access",
+ "v/5nw/": "Join Zoom meeting",
+ "v/COiN": "Failed to unlock editing.",
+ "v/LQSv": "Store files, cloud docs and web shortcuts together. Get {plan_space_in_gb_rounded} of encrypted storage with unlimited linked devices. And upgrade your computer\u2019s hard drive with industry-leading sync technology.",
+ "v/ZDmi": "Currently reviewing your {role} Dropbox .",
+ "v/wIZk": "Follow",
+ "v0GnKn": "Couldn\u2019t retrieve shared folders and files. Reload the page to try again.",
+ "v0b6+E": "Confirm licence purchase",
+ "v0jn5I": "View payments and billing help",
+ "v1IjMy": "We are unable to provide refunds directly for Google Play or Apple App Store purchases.",
+ "v1jRfl": "Manage",
+ "v22uDz": "Enter PIN to unlock",
+ "v26lQG": "Verifying...",
+ "v2SyxH": "Definitions.",
+ "v2wC3C": "Fourth highest activity",
+ "v2yJMn": "Link copied.",
+ "v3Nlj2": "Set for how long members can stay signed in to dropbox.com.\n They\u2019ll be signed out automatically when the session expires.",
+ "v3Rw50": "{name} viewed this file",
+ "v3oTv1": "Something went wrong at our end",
+ "v3ps3s": "Dragging many files into central folder. Then showing all available files wherein a user clicks a PS file to download.",
+ "v4Pwf6": "Settings...",
+ "v4qAYu": "Close",
+ "v5BTg5": "With {showcase}, you get a more fluid workflow that helps build client relationships. Because when they see your vision the way you see your vision, extraordinary things can happen.",
+ "v5qde2": "Repeat",
+ "v5zm5w": "You can add your billing information now and you will not be charged until after the free trial ends.",
+ "v6+J7C": "Check spelling or try again.",
+ "v6+dnp": "Join team now",
+ "v6KcNP": "Request a call",
+ "v6Qr5b": "3. Confirm your trial",
+ "v6qFPS": "Download and set up Dropbox",
+ "v77whi": "Supplied by your identity provider. Verifies members when they enter their work credentials.",
+ "v7foBc": "Extend the power of Dropbox",
+ "v7iUT9": "Professional trial {ios}",
+ "v7lRJw": "{count, plural, one {{name} restored {count} item in {folder_path}} other {{name} restored {count} items in {folder_path}}}",
+ "v8O3C+": "Photos and videos",
+ "v8PNkk": "Nothing is currently held for the {hold_name} hold. These members haven\u2019t edited Dropbox files between the dates the hold is set for.",
+ "v8WvP1": "Try adding a file",
+ "v8xb/+": "Renaming folder\u2026",
+ "v9BQ2N": "Add email addresses",
+ "v9MuRp": "View-only shared folder permissions",
+ "v9WO46": "Community",
+ "v9aoIx": "Keep {business}",
+ "v9bSTi": "Select a search result to see details",
+ "v9ugCa": "Help with account access and security",
+ "vAFlk4": "Anyone with this link",
+ "vAOUkz": "Deselect all",
+ "vApw15": "This folder can only be shared as a link because it\u2019s in a shared folder.",
+ "vB1R6p": "You moved the {card_name} card with this file attached to another board",
+ "vBFpIq": "Save changes",
+ "vBfB8B": "Video",
+ "vC5hhF": "{space_long} of storage",
+ "vCbj4X": "Released",
+ "vDqlZ3": "All types",
+ "vECsXs": "View in admin console",
+ "vEc1Xz": "View as grid",
+ "vEd7YT": "Click 'Open with' and select AutoCAD to open DWG files.",
+ "vEenvr": "Are you sure you want to delete this extension?",
+ "vEpMWb": "{member_name} will only be able to view this folder, and new {team_name} members won\u2019t be able to access it automatically.{br}To add more people to this folder in the future, you\u2019ll need to invite them directly.",
+ "vExjB7": "Restore not allowed due to disposal policy.",
+ "vF3QRb": "Sunday",
+ "vF7MjI": "To use Smart Sync, you\u2019ll need to allow a system extension from Dropbox. First click Continue, then click OK on the alert that appears.",
+ "vFDLgh": "Try it with Professional",
+ "vFb6Ur": "Unread comment thread",
+ "vFhcfF": "Saving to your Dropbox...",
+ "vFi/Dt": "Remove",
+ "vGWLOq": "{count, plural, one {As a member of the parent folder listed below, {member_name} can still edit the contents of \u201c{content_name}\u201d.} other {As a member of the parent folders listed below, {member_name} can still edit the contents of \u201c{content_name}\u201d.}}",
+ "vGXGUN": "You\u2019ve almost finished!",
+ "vH3mTa": "Other issues",
+ "vHIwL3": "To open this file, make sure you\u2019re signed in to G Suite and Dropbox with the same email address.",
+ "vHTAAQ": "Sign in or create an account",
+ "vHgZs0": "Unknown",
+ "vIACNF": "Connect to Trello",
+ "vIFGrd": "To the extent that the administrative tools provided as part the Services are insufficient to provide an accounting of disclosures to an individual as necessary for the Customer to satisfy the Customer\u2019s obligations under HIPAA, Dropbox will make available the information required to do so. The Customer acknowledges that Dropbox may not know the content of the Customer\u2019s Stored Data and, therefore, it will be the Customer\u2019s responsibility to provide a brief description of any PHI that was included in the Stored Data that was disclosed.",
+ "vIFSSl": "Direct",
+ "vIJ2x0": "Find all of your transfers and see stats such as views and downloads.",
+ "vIiAPQ": "{alertName} edited. The alert's threshold can take up to one hour to update.",
+ "vJ3Igb": "This package file can only be shared as a link.",
+ "vJDNdg": "New notification type",
+ "vJGcTi": "Share file",
+ "vJgZg+": "Next",
+ "vJkXYY": "After you downgrade, you\u2019ll have far less space to have collaborative moments like this one.",
+ "vK+GN+": "You can archive team folders in the admin console.",
+ "vKX8er": "Integrated features from these apps make it easier to collaborate with people you know on Dropbox.",
+ "vLOLVx": "Bryan Hallas, Director of IT, Maine Pointe",
+ "vLX1kS": "How to use Dropbox Transfer",
+ "vLmOAd": "Shared link URL",
+ "vLpco5": "It\u2019s been too long since you signed in. Please sign in again.",
+ "vLxc6S": "Continue signing in with {provider}",
+ "vM860B": "Dropbox International Unlimited Company",
+ "vM9XAD": "{name} unshared {single_item_name} in {folder_path}",
+ "vMF+bp": "Complete purchase",
+ "vMGeUC": "Choose background image",
+ "vMUnHN": "Works with you a lot",
+ "vMftY3": "Design across time zones and locations",
+ "vMxvH1": "An error occurred.",
+ "vN/CZP": "Share a link",
+ "vN21Hm": "contact support.",
+ "vNTGeR": "You can add your payment information now so that your subscription is renewed automatically when it expires.",
+ "vNZivq": "Shared folder",
+ "vO3mme": "A folder overview of a customer proposal in Dropbox Spaces being shared",
+ "vOBkFB": "Search",
+ "vOHhSs": "You might need to set a few things up",
+ "vOLK2M": "Add circle",
+ "vOwN7P": "There was an error uploading your background image.",
+ "vP/ZGk": "Organise sensitive files in one safe place and view them on any device",
+ "vPbpJI": "Step 3 of 4: Schedule your move",
+ "vPiRDz": "To see folders or files shared with you, you need to verify your email.",
+ "vPlyaD": "Cancel processing",
+ "vPyd3c": "Users will join as soon as you invite them.\n That way you can sign in as the user to get them set up.",
+ "vQ0ZP6": "Their email address is {value}",
+ "vQ64dZ": "Page...",
+ "vQndaY": "Cancel plan",
+ "vQquJX": "View-only",
+ "vRDiD3": "{chosen_file_size} KB",
+ "vRE9NS": "I\u2019d like to receive direct marketing email updates from Dropbox",
+ "vRToCl": "You were automatically signed out",
+ "vRmw4U": "The amount of space included with your plan",
+ "vRnlaU": "What kind of group is it?",
+ "vRnpSz": "Personalise your transfers with a default background image",
+ "vS2Rdu": "Outgoing",
+ "vS2t89": "Cancel",
+ "vS4Oei": "Anyone with this link and password can view the folder. Downloads disabled.",
+ "vScsi0": "Enable Smart Sync",
+ "vSoamy": "Closed",
+ "vSscn6": "You can\u2019t edit some of these folders. Ask an owner or editor of the folders for access to edit them.",
+ "vSxwIF": "By clicking \u201cI agree\u201d, you understand that we\u2019re unable to provide any refunds and that you\u2019ll need to cancel your Dropbox {trademark_plus} subscription through the {billing_store} to avoid future charges.",
+ "vTHStn": "{name} hasn\u2019t added this to their Dropbox yet",
+ "vTM4iO": "You won\u2019t get an alert if someone shares malware with your team.",
+ "vTSVPm": "No flash function",
+ "vTaaOS": "File settings",
+ "vTdeG3": "If your contact accepts, they can download all files in your vault, but we\u2019ll notify you if they do.",
+ "vTrAuv": "Something went wrong. Please try again.",
+ "vU7AXJ": "Search for a Stormcrow feature",
+ "vU98ul": "Quickly reset your password here.",
+ "vUZrvL": "{numInvitees, plural, one {You need more licences for this invitation. Contact {resellerName} at {resellerPhone} to add more.} other {You need more licences for these invitations. Contact {resellerName} at {resellerPhone} to add more.}}",
+ "vUtWh+": "Dropbox was successfully installed, but won\u2019t be able to store files until you grant permission.",
+ "vV8SHN": "\u201cWe strive to create a world-class work environment with the top technologies available. We\u2019ve achieved a return on investment of over 500% with Dropbox, while taking a giant step to modernise our IT strategy and enhance collaboration across our company.\u201d",
+ "vV9B1q": "No, cancel",
+ "vV9l+M": "Connect",
+ "vVU6YH": "Flip right",
+ "vWPrZf": "Members of the file with this link can view. Downloads disabled.",
+ "vWbu7+": "{count, plural, one {Suggestion sent to {team_name} admin {admins}} other {Suggestion sent to {team_name} admins {admins}}}",
+ "vX3e7z": "No alerts found",
+ "vX3ptT": "Not now",
+ "vX9I4G": "Communication",
+ "vX9MC5": "Open in {editor_with_lock_string}",
+ "vXHik/": "Before you turn on account capture, we\u2019ll notify users in your domain (@{domain}) who will be affected. We won\u2019t notify users who are also in other teams.",
+ "vXNgEM": "Loading",
+ "vXQEej": "\u2318 + a",
+ "vXZoL7": "Just drag files into your Dropbox folder and they\u2019re automatically backed up for you on dropbox.com and accessible on all of your devices.",
+ "vXeDf5": "You can use dropbox.com now, but wait for your devices to finish syncing. If anything doesn\u2019t look as you expected, learn more about your options",
+ "vXiJj7": "No one added",
+ "vXtPAG": "Report an issue",
+ "vY+uF+": "Notifications sent! Check your linked desktop clients or mobile apps (if any) for notifications.",
+ "vY5cS/": "Click on the shield to the left of the address bar.",
+ "vYAn0c": "{current_size} (your {current_plan_name})",
+ "vYVz+4": "Every action is tracked and time-stamped.",
+ "vYZ5jE": "Congratulations on extending your free trial!",
+ "vYmc42": "Click to lock your vault at any time, and it will auto-lock if you\u2019re inactive for 20 minutes.",
+ "vZ+Gcq": "{count, plural, one {Anyone with this link and the password can view the folder. Expires in {count} day. Downloads disabled.} other {Anyone with this link and the password can view the folder. Expires in {count} days. Downloads disabled.}}",
+ "vZ/zQV": "Keep a copy of this folder",
+ "vZJUAu": "With {trademark}, you\u2019ll get 1 TB (1,000 GB) of space and powerful features to set your work apart. Present your work more beautifully at every stage, save hard drive space and more.",
+ "vZtJe2": "{count, plural, one {{count} visual note} other {{count} visual notes}}",
+ "va1NIN": "Dropbox Passwords manager screen showing account information for Dropbox, Facebook and Netflix",
+ "vaHXjn": "Set link expiry to encourage downloads",
+ "vaUVHO": "Allow (current default)",
+ "vaZcYO": "Remove",
+ "vault-initiate-reset-success": "An email has been sent to reset your PIN",
+ "vault-trusted-contact-cancel-success-toast": "Invitation to {email} cancelled.",
+ "vault-trusted-contact-header-subtitle": "Grant emergency access to a trusted family member or friend. Learn more",
+ "vault-trusted-contact-header-subtitle-pro": "Ensure the people you trust can find your important documents if they need them. Learn more",
+ "vault-trusted-contact-header-title": "Access for trusted contacts",
+ "vault-trusted-contact-invite-button": "Invite contact",
+ "vault-trusted-contact-invite-success-toast": "Invitation sent to {email}.",
+ "vault-trusted-contact-remind-success-toast": "Reminder sent to {email}.",
+ "vault-trusted-contact-resign-success-toast": "You are no longer a trusted contact for {email}.",
+ "vault-trusted-contact-revoke-success-toast": "{email} removed from trusted contacts.",
+ "vazg5S": "Only {max_aliases} secondary emails allowed",
+ "vbDuY9": "That account is already paired with another account.",
+ "vbHiUW": "Be sure to download everything, including the report.",
+ "vbMu7n": "{count, plural, one {{count} person in {group_name} can view} other {{count} people in {group_name} can view}}",
+ "vbTxNa": "Installing Dropbox on your computer is the best way to make sure your information is always with you.",
+ "vbYWAB": "Not an active team admin",
+ "vbchm2": "Get your files on your phone or tablet, even if you\u2019re offline",
+ "vbytsy": "Files without extensions cannot be previewed",
+ "vc2Cxo": "{space_remaining} left",
+ "vcVbAV": "If you downgrade, your team will lose the additional space it\u2019s been using, and your active team members will return to their initial space quota.",
+ "vcVh5A": "Double click the Dropbox logo to finish installing the desktop app.",
+ "vciT6O": "Transfer sends a copy without giving people access to the original.",
+ "vcnMGb": "New Dropbox desktop experience: Windows File Explorer/macOS Finder, new desktop app and Dropbox in Windows system tray/macOS menu bar.",
+ "vdBwOw": "No users found",
+ "vdOltn": "A member shared a large amount of data with people outside your team. This increases the chance of data loss.",
+ "vdPwYR": "Team admin",
+ "vdYbD6": "There was a problem completing this request.",
+ "vdagQ2": "unique views of links that were created over 3 months ago and are accessible to people outside your team.",
+ "vdqTup": "We sent you a code. It may take a few minutes to arrive.",
+ "vdr9v2": "Server error \u2013 please try again later",
+ "vdrSAe": "Hide files",
+ "veD/Im": "Invite people to {team_name}",
+ "veE0wk": "How should we handle your current account?",
+ "vexzUa": "Above the last purchased number",
+ "veyFXJ": "You\u2019re automatically signed out of a trusted team after 30 minutes. You can sign in again on the trusted teams page.",
+ "vfWhT4": "lost connection",
+ "vfaZhn": "Do you think your linked computer isn\u2019t affected? If it\u2019s not infected,\n resume Dropbox access",
+ "vfmSkZ": "Please select one reason for cancelling",
+ "vg7oNs": "We can\u2019t find the {record_type} record.",
+ "vgPtJM": "Drop sensitive files, such as financial and health records, here for safekeeping.",
+ "vgXxer": "This item was deleted",
+ "vgeumv": "Paste URL to screenshot or video",
+ "vgq7sa": "Email to my Dropbox",
+ "vhX3jx": "Change to basic folder",
+ "vhlPqJ": "Cancel downgrade",
+ "vhn7zc": "Restart the download",
+ "vhu4TN": "(add an optional custom message)",
+ "vhvaO9": "Decide who can edit folders",
+ "viDfq/": "With {space} of space and team folders, your team can keep projects in one place, so you\u2019re always on the same page.",
+ "viFx7F": "Once they accept",
+ "viGmRq": "Don\u2019t worry, you won\u2019t be charged now. You\u2019ll only be charged if you don\u2019t cancel your trial before it ends on {trial_end_date}.",
+ "viK6c+": "We were unable to complete your request.",
+ "visTSD": "+ {tax_name}",
+ "viwiP8": "Dropbox integrates seamlessly with the tools you love, so your conversations and content stay in sync.",
+ "vj7NTF": "Account holder name",
+ "vjZ5av": "{device_model} removed.",
+ "vjbiAf": "If you already have a HelloSign account, we\u2019ll link it to your Dropbox account if the email address is the same for both accounts.",
+ "vjn1De": "Summary",
+ "vjp/6B": "Create a report of labelled files",
+ "vjwfnF": "Turn on {alertName}?",
+ "vkHvO6": "{count, plural, one {{filename} and {count} more item will be gone forever and you won\u2019t be able to undo this action. Please bear in mind that permanently deleting these items won\u2019t free up space. Learn more} other {{filename} and {count} more items will be gone forever and you won't be able to undo this action. Please bear in mind that permanently deleting these items won\u2019t free up space. Learn more}}",
+ "vlAkYg": "Keep your organisation\u2019s content for the right amount of time using retention policies. More about managing policies",
+ "vlHqDS": "Exceptions",
+ "vlkaFK": "Italic",
+ "vlqfT+": "30 days of file recovery and version history",
+ "vlzkco": "Create Google Sheet",
+ "vm2t5Q": "{msg} View member list",
+ "vmF4pp": "More about legal holds",
+ "vmbL8z": "Create folder",
+ "vmgrUl": "Updated. You can double-check in the preview.",
+ "vnIWJz": "Admin",
+ "vnOUMt": "Size",
+ "vnSWwm": "Join for faster access to team files and easier collaboration.",
+ "vnfQqb": "Life Vault folder",
+ "vnfYKZ": "We\u2019re sorry, but an error has occurred.",
+ "vnuqfB": "Dropbox NAVI",
+ "vo0myn": "The enterprise admins can configure settings, such as authentication, in the best way for your organisation.",
+ "vo4vPP": "Open in new tab",
+ "voDoLt": "upload to your {team_name} Dropbox",
+ "voHc3y": "What should happen to a member who\u2019s already above the limit? (When they join the team, an admin lowers the limit, etc.)",
+ "vpdvqR": "Create",
+ "vphlBW": "Couldn\u2019t get downloads. Please try again later.",
+ "vpmO+U": ".{extension} files are supported but something went wrong.",
+ "vpmlmK": "",
+ "vpz9NI": "Your personal account",
+ "vqKXR0": "Download",
+ "vqvIS3": "Version history and file recovery",
+ "vrRyJy": "Learn more",
+ "vrwcnN": "Remind me later",
+ "vs8jjb": "1 billion API calls/month for data transport partners",
+ "vsSXdX": "Default",
+ "vtIvYJ": "Invalid URL",
+ "vtbPgf": "Email verified. Now finish joining the team.",
+ "vtdVnO": "Try to open the desktop app again if nothing happens after a few seconds.",
+ "vuVMnM": "Something went wrong.",
+ "vumu11": "Why is it different from other docs?",
+ "vux0g1": "Create groups to manage access",
+ "vvEz+N": "We\u2019re sorry to see you go",
+ "vvHrlV": "Re-enter password",
+ "vvW8Ij": "Files to download",
+ "vwLo0P": "Find out more about {br}Transfer",
+ "vwc/rm": "Guide",
+ "vx54jm": "Open Preferences",
+ "vxALh2": "Are you sure you want to remove {domain_name} and all of its subdomains from your verified domains? Any capture settings will be disabled for this domain. To add this domain back in, you\u2019ll need to go through the verification process again.",
+ "vxF6OS": "Tasks are synced from to-dos assigned to you created after 1 March 2020.",
+ "vxl4rJ": "Tell us why you love Dropbox",
+ "vxnAb7": "This feature isn\u2019t available on Safari, but will be soon. Please try on a different browser.",
+ "vy3g5C": "Paper is a product by Dropbox that helps you work in real time with your team. You can write together, add comments, insert images or video, and much more. Teams use Paper to run brainstorms, hold meetings, plan projects and review work. If you have a Dropbox account, you can use Paper for free.",
+ "vyU6bP": "Welcome to the team! Here\u2019s who you need to know. And read the project doc to get started.",
+ "vydy5O": "Image details",
+ "vyeOxZ": "Closed on {date} at {time}",
+ "vz2EwA": "Share files to Slack without leaving Dropbox, and see your file activity in one place.",
+ "vzGxQf": "Visit website",
+ "vzdkNF": "{count, plural, one {{name} moved {count} item out of this folder} other {{name} moved {count} items out of this folder}}",
+ "w+3+5u": "Set a due date",
+ "w+BzQj": "App Store",
+ "w+GURB": "Suspended user",
+ "w/8av3": "Existing links created by people in your team will no longer work for people outside the team.",
+ "w/CLLG": "If you cancel today, you\u2019ll be moved to a free plan on {date}, and you\u2019ll lose access to {current_plan} features including:{br}
{space_quota} of Dropbox space
Unlimited eSignatures
Any saved templates
",
+ "w/EE0T": "Role",
+ "w0Mucm": "Select folders to sync to your computer",
+ "w0RwUf": "Feedback submitted.",
+ "w0l2yv": "Now click Open preferences, then click Allow to finish setting up Dropbox.",
+ "w15oQs": "You\u2019re adding extended version history to your Dropbox {plan_name} plan. We\u2019ll charge you {prorated_price} now, which has been calculated pro rata for the current billing period. Your plan will be renewed on {date}. Your new {billing_schedule} total will be {recurring_total}.",
+ "w1RdJ3": "Loading",
+ "w1kkK2": "Change plan",
+ "w2F5Od": "You can see who has access to a team folder here",
+ "w2MNLG": "Tax ({tax_rate,number,::percent .##})",
+ "w3CZsx": "Campaign ID:",
+ "w3uVHL": "With {trademark_business}, you get even more security and collaboration features for your team. These additional features include {vacuuming_policy_max_days}-day version history, more space, email and chat support, and admin management tools for better control and visibility. Compare {trademark_business} and Dropbox {trademark_plus} here.",
+ "w4SaFl": "Stay organised and on track from pre- to post-production. Add scripts, music, video, timelines and budgets.",
+ "w4dAcw": "Add and join Zoom meetings",
+ "w57QwB": "Start your {trial_length}-day free trial now!",
+ "w5JCcS": "Add an email",
+ "w5oksG": "You\u2019re a member of the {family} plan.",
+ "w5p44x": "We\u2019ve successfully updated your team\u2019s billing information.",
+ "w6Fliw": "To restore access:",
+ "w6S6LE": "User is already a member of this team.",
+ "w6dVgn": "Off",
+ "w6t11o": "Archive in progress",
+ "w7/WKa": "This will block Dropbox access for everyone who uses a company email address (@{domain}) with their personal Dropbox account. To continue using Dropbox, they\u2019ll need to join your Dropbox team or change their email address. This won\u2019t affect users in your company domain who are also in other teams.",
+ "w7oxFi": "Modified ",
+ "w81jal": "Actions",
+ "w8Qkhu": "Password",
+ "w8XMy5": "Helpful articles",
+ "w8Zf6/": "A maximum of 20 MB of files can be added to a reply",
+ "w8q+vM": "Bug tracker",
+ "w9I0zq": "This comment was deleted.",
+ "w9jP5U": "Show {number}+ more",
+ "wAS6mz": "If you disable two-step verification, you\u2019ll only need your email and password when you sign in to the Dropbox website or link a new device.",
+ "wAfCwe": "Anyone on this domain is approved \u2022 Includes subdomains",
+ "wBdS/p": "Remove admin role",
+ "wBdlPA": "Couldn't extract files because your account is over quota.",
+ "wBh1Uk": "Please log in as {email}.",
+ "wBirzA": "Don't worry, {sharedFolderName} won't be deleted for anyone else. You won't be able to access it any more though.",
+ "wByfdM": "Your one month subscription will start on {subscription_start_date}.",
+ "wCOOqc": "Your account currently has extended version history, which isn\u2019t supported in Dropbox Family.",
+ "wD0aIp": "Link as many devices as you need to",
+ "wD45gl": "Team members will be blocked from connecting all apps by default.",
+ "wDKxnL": "Back",
+ "wDU55Z": "Are you sure you want to delete {app_name}?",
+ "wEMWCo": "Clear all",
+ "wEbrHP": "or get {dropbox_basic}",
+ "wEr/SS": "Save space with Smart Sync",
+ "wFT2+k": "Success! Watch out for your invitation at {user_email}",
+ "wFWz1L": "With as much space as you need and team folders, your team can keep projects in one place so you\u2019re always on the same page.",
+ "wFeC8R": "Lens model",
+ "wFeyrs": "Folder for uploaded files",
+ "wFrAfD": "Password can\u2019t be empty",
+ "wFsjaI": "Please remove some members.",
+ "wGDng7": "You\u2019ll get everything Standard offers, including tools, security and features that you need to help your team reach its full potential",
+ "wGHIQR": "Folder settings updated.",
+ "wGNCyI": "Add files",
+ "wGoymc": "You shared {item_name}",
+ "wHAaDF": "Send me a link",
+ "wHCvEg": "As scheduled",
+ "wHa3F8": "Invalid security code",
+ "wHolW4": "Preview (Dropbox)",
+ "wHs8YW": "App integrations",
+ "wIA0rX": "Back to Dropbox Transfer",
+ "wJGNXW": "Your photo should be at least 128px by 128px.",
+ "wJJ81I": "Get the Dropbox desktop app to continue. Taking you to the download page...",
+ "wJNYLt": "Your file request is now active.",
+ "wJXlnY": "Included feature",
+ "wJfr5U": "Invite people to {team_name}",
+ "wJpmMl": "What are the system requirements for Smart Sync?",
+ "wKPU0J": "Team admin",
+ "wKPvYZ": "Move to\u2026",
+ "wKaToF": "{value, plural, one {{value,number} minute ago} other {{value,number} minutes ago}}",
+ "wKbvz2": "Invite team members",
+ "wKo5UX": "Create in Dropbox",
+ "wKzr7W": "Undoing\u2026",
+ "wL7pO1": "{count, plural, one {{count} member} other {{count} members}}",
+ "wLGeJy": "{cost} per year",
+ "wLNK25": "Your domain, such as bau.instructure.com",
+ "wLZZfz": "Try it for free",
+ "wLnilD": "For personal use",
+ "wMRbEu": "No upcoming meetings.",
+ "wMYzXu": "Credit card charge checker",
+ "wMkxOc": "Trial cancellation confirmation modal",
+ "wMrPFj": "Last attempt used. {ContactDropbox} to reset your PIN.",
+ "wMs0Fw": "Thanks, feedback sent.",
+ "wMvvzZ": "Sharing time",
+ "wNXkD5": "Unknown",
+ "wO7W4g": "Invitation link URL",
+ "wOxC1v": "{timeSince} by {createdBy}",
+ "wPD7/W": "Admin controls for additional security",
+ "wPNlzV": "Try free for {trial_duration} days",
+ "wQFLxr": "Changing language...",
+ "wQIXj5": "{space} of space for secure storage with easy-to-use sharing and collaboration tools",
+ "wQWCfd": "Create account",
+ "wQaFzo": "Send up to 100 MB per transfer",
+ "wQu4J4": "Server error: some of your changes weren\u2019t applied",
+ "wQxd0f": "This lets members see who viewed their files. Only members of {team_name} and people who can edit can see this info.",
+ "wR6kVu": "To add new comments, open this file",
+ "wRKAnK": "Time: {hours_string}",
+ "wSUtWj": "We frequently do photo shoots and have to send clients 20-30 high-res files at a time\u2026Dropbox Business makes it easy to manage the big, heavy data every day. We just send links to our clients, and they immediately get what they need. Security is a priority for our IT team since we handle highly confidential data, and Dropbox Business has proven to meet our requirements.",
+ "wSk4LC": "Share your work with customised branding, and track who engages with your files.",
+ "wT+jZo": "Mobile access for scanning in paperwork as soon as you receive it",
+ "wT/J1a": "This group was created automatically.",
+ "wT4Vza": "Loaded too slowly",
+ "wTUnYQ": "{cost}/user/month",
+ "wToEd8": "Keep all in personal folder",
+ "wTppPX": "Link will work for 14 days",
+ "wTqpzc": "Get answers to most questions in seconds (English only)",
+ "wULqRj": "Everything in Plus, with shared link controls.",
+ "wUO13q": "Everything in team folders is automatically available to your team members. You can manage permissions to control who sees what.",
+ "wUWAk5": "Created on",
+ "wUZqfd": "This is the only folder there is.",
+ "wUx/kk": "Permanently deleting team folder\u2026",
+ "wV6z/F": "Share files, big or small",
+ "wVS5Gq": "Activity",
+ "wVc49T": "Several users leaving comments and feedback at selected points on an image.",
+ "wWAI7P": "{count, plural, one {{count} minute} other {{count} minutes}}",
+ "wWiDtY": "You can\u2019t copy a folder into itself.",
+ "wXQ4cp": "File locking",
+ "wXhxJC": "Try again",
+ "wYS7r7": "All folders under this policy",
+ "wYkgel": "Default",
+ "wZBdwd": "To add this folder, you\u2019ll need {needed} of space in your Dropbox. You currently have no space left.",
+ "wZNE4f": "Cancelling...",
+ "wZejJ8": "can view",
+ "wZr65c": "Remember to add members",
+ "wZswLL": "Resend",
+ "wa/t/z": "Unlock easy-to-use security controls and admin tools",
+ "waNIwV": "1 billion API calls/month for data transport partners",
+ "wapekl": "{count, plural, one {{count} minute left} other {{count} minutes left}}",
+ "wawb2a": "Couldn\u2019t remove. Try again in case it was a one-off, or reload the page.",
+ "wbPFl6": "{name} gave view-only access to {entity}",
+ "wc8McX": "Live chat support",
+ "wcAlBh": "Remove EVH",
+ "wcjGt1": "One or more names or email addresses",
+ "wcu7vq": "Close",
+ "wdUEfN": "Oops! An error occurred. Please try again later.",
+ "we6GC8": "Mark as read",
+ "weHxO6": "Something went wrong at our end.",
+ "weIeek": "Design: @bob",
+ "weMg5F": "To",
+ "wekAML": "Direct message",
+ "wetul1": "Dropbox will sign Business Associate Agreements (BAAs) with customers who require them.",
+ "wfCJ/d": "This alert is triggered when a team member signs in from a location we consider high risk.",
+ "wfHzR1": "Let us know about an app you\u2019d like to see in App Centre, and share your feedback.",
+ "wfJMlq": "There was an error completing this request.",
+ "wfrJuc": "Download here",
+ "wgFV6P": "Open",
+ "wgYFm/": "To see your ticket history, first verify your email address. How to verify your email address",
+ "whFErF": "A CSV report will be saved in your Dropbox Business Reports folder. We\u2019ll email you when the report is ready.",
+ "whhn4M": "Cancel",
+ "whpa/9": "Couldn\u2018t add file \u2013 please try again",
+ "whxBh0": "Members of the file with this link and password can edit. Downloads disabled.",
+ "wi+IMg": "Give this hold a unique name",
+ "wiPRXu": "There was an error changing the billing period.",
+ "wiePli": "hours",
+ "wiyHLU": "You cannot join a family from a linked work account. To join, first switch to your personal account.",
+ "wjbUAD": "Your vault files will be temporarily unavailable",
+ "wjwJvt": "App actions",
+ "wkflKt": "Your account has {allocated} of storage",
+ "wks8mV": "Redirecting to the next page...",
+ "wl+tit": "View all results for \u201c{query}\u201d in {current_path}",
+ "wlDXdS": "Event details",
+ "wlVQVN": "Great! Now select who can access these folders.",
+ "wmGnzI": "Password changed successfully. Any existing sessions, devices and apps can still access your Dropbox.",
+ "wmv2D+": "Requested",
+ "wnIm4S": "What is the difference between {trademark_business} and {dropbox_plus}?",
+ "wnSymU": "Total",
+ "wnp1kN": "I delete a large number of files",
+ "wo0qrl": "See plan details",
+ "woRhD3": "These devices have been unlinked from your personal Dropbox account.",
+ "wou0NI": "{count, plural, one {Members of this folder with the link can view this folder. Expires in {count} day. Downloads disabled.} other {Members of this folder with the link can view this folder. Expires in {count} days. Downloads disabled.}}",
+ "wp4Ln9": "Cancel",
+ "wpToux": "To save email attachments again later, you\u2019ll need to turn this on in settings and create a new email address. ",
+ "wpvhe4": "Link Slack workspace",
+ "wq6RxH": "Leave {dropbox_family}",
+ "wq9FWi": "Optional",
+ "wqLnwg": "Two-step verification is now disabled.",
+ "wqMlXT": "Modified",
+ "wqk5ac": "Sorry, this is only available in the Chrome browser at the moment.",
+ "wrBpI9": "Sign in to Dropbox",
+ "wrC8hw": "Up to 90 days available",
+ "wrE9Wi": "Team members with this link",
+ "wrdNy0": "Create an account",
+ "wrqBpH": "Invalid request",
+ "wrr4Ww": "Try {plan} for unlimited team storage",
+ "wsbuKB": "No disaster recovery",
+ "wscUVd": "Dots per inch",
+ "wspJjc": "Manage licences here.",
+ "wspYkP": "{roundedGb,number} GB",
+ "wtDwxp": "Convert account",
+ "wtRKPQ": "Please ensure that you\u2019ve verified your email and try again.",
+ "wthUCo": "Are you sure you want to unlink your accounts?",
+ "wthy68": "Go back to editing",
+ "wtpsVq": "Couldn\u2019t upload. Try again in case it was a one-off, or reload the page.",
+ "wu2GwX": "Manage",
+ "wu30yf": "See all deleted files.",
+ "wuJa7T": "Files exceed 20 MB limit, try removing some",
+ "wueHdX": "Finish your setup",
+ "wvG8wL": "Install Dropbox to get the most out of your account",
+ "wvYY/d": "Start new files as local",
+ "wvYbya": "{price} per year",
+ "wvZo+e": "on mobile",
+ "wvm3tI": "Connected",
+ "wwJyN3": "
Sign in to dropbox.com with your admin account.
\n
Click Admin console in the list on the left.
\n
Click Billing in the list on the left.
\n
Scroll down and click Cancel plan.
\n
Select why you\u2019re cancelling and click Continue with cancellation.
\n
Tick all boxes to acknowledge the consequences of cancelling.
\n
Scroll down and click Complete cancellation.
\n
Your team will become a free team at the end of your billing cycle.
",
+ "wwrwmN": "From",
+ "wx4n9v": "See uploaded files and the details of any closed requests here.",
+ "wxxCwz": "For some reason, we couldn\u2019t download Dropbox.",
+ "wyR2b+": "{number_bytes_uploaded} of {total_number_bytes_to_upload}",
+ "wySt+D": "Cannot find that member. Try refreshing the page.",
+ "wydWcS": "To merge, export the files held for deleted members, then remove them from the hold. If you need help with this, please contact us.",
+ "wyhQi6": "Last 90 days",
+ "wylhF/": "Files from computer",
+ "wyxc8i": "You restored a previous version of {single_item_name} in {folder_path}",
+ "wz2qQf": "Head over to Trello to create a board and list.",
+ "wz9EvW": "Move\u2026",
+ "wz9sit": "Dropdown arrow",
+ "wzKMOb": "Text",
+ "wzjBka": "Sending...",
+ "wzpli8": "Device approvals",
+ "wzs1Yb": "Features",
+ "x+7Lqb": "Don\u2019t limit",
+ "x+Vjb/": "Need to transfer more than {file_size_limit}?",
+ "x+hW2H": "You\u2019ve already scheduled a change to your plan. If you want to choose a different plan, first cancel your scheduled change.",
+ "x/N7se": "{count, plural, one {{count} link attached} other {{count} links attached}}",
+ "x/c7tU": "Settings",
+ "x/db8i": "Make sure scanning is on",
+ "x/e6Ro": "Share this folder to be able to receive activity updates.",
+ "x01mJ5": "Change how members can access \u201c{current_folder}\u201d?",
+ "x0SsQU": "Retention period",
+ "x0TfbL": "I am switching to a different Dropbox product",
+ "x0dt+r": "Invited by {inviting_user}",
+ "x0jh3H": "No one has worked on this file in the past 3 months.",
+ "x0xdWW": "Continue",
+ "x1+XgP": "Your background image should be a single file.",
+ "x19v9w": "Participants are any of the people involved in the activity",
+ "x1b2rx": "Everyone",
+ "x1xVSm": "Continue on my own",
+ "x28HfH": "Invitation to join the team sent and pending.",
+ "x2Kt2r": "Top right",
+ "x2cBYd": "Try free for 30 days",
+ "x3/o5z": "Your feedback will help make Dropbox even better.",
+ "x31E2S": "Show in Finder",
+ "x37FDM": "Choose what to include:",
+ "x3AX+F": "Locked by {name}",
+ "x3bKKe": "If you remove {user_name}, they\u2019ll be moved to a {default_plan_name} plan and will lose access to the Family plan\u2019s storage and features.",
+ "x48gqV": "Outside your Dropbox team",
+ "x4OjCc": "Send by email",
+ "x4dKqg": "Display name",
+ "x4qWSo": "Add a customised message (optional, but recommended)",
+ "x4xWgG": "How many people?",
+ "x51rlw": "Default shared link privacy",
+ "x5Je3g": "Member access updated.",
+ "x5SpE7": "Loading search...",
+ "x65utM": "Send and request electronic signatures on documents.",
+ "x6Amfo": "{date,date,::MMM d, yyyy}",
+ "x6jJaw": "Add a message (optional)",
+ "x730HD": "Shared by",
+ "x7SX3o": "Discover what Dropbox can do for you.",
+ "x8+vu0": "It looks as though there's nothing in that folder.",
+ "x8R7Bu": "Text",
+ "x8UtR/": "Cancel",
+ "x8vQXX": "We\u2019ll resend invitations to everyone who hasn\u2019t accepted yet",
+ "x9Nxnp": "Prepare and send documents for eSignature, directly from Dropbox.",
+ "x9y2Yc": "You\u2019re watching a preview. To watch the full video, download it or add it to your Dropbox.",
+ "xA0xXC": "Switch accounts",
+ "xAIByw": "Cancel",
+ "xB5uRB": "Dropbox Terms",
+ "xBHDnW": "Team admins can manage everything for all admins and members. Are you sure you want to continue?",
+ "xBHP6h": "We were unable to fetch linked apps.",
+ "xBIzV+": "{count, plural, one {Anyone in the {trademark_business} team with this link and password can edit the file. Expires in {count} day.} other {Anyone in the {trademark_business} team with this link and password can edit the file. Expires in {count} days.}}",
+ "xBbH4N": "Anyone in the {trademark_business} team with this link can edit the file. Downloads disabled.",
+ "xBeASx": "Blue folder containing Google Docs, Slides and Sheets icons. Above that, five coloured circles containing faces of people.",
+ "xCOKIP": "Manage your content more easily, and save time and energy for other tasks.",
+ "xCVmUR": "Try Dropbox with a new team",
+ "xCqi47": "Deployment mode",
+ "xCts6z": "Settings",
+ "xDGiYl": "Send feedback",
+ "xDSE4z": "Can\u2019t move 10,000+ files. Try moving sub-folders individually.",
+ "xERo36": "Auto, fired, red-eye reduction",
+ "xEbOp4": "deleted shortcut",
+ "xF3Od1": "Dropbox Headless install via command line",
+ "xFQvi+": "By cancelling {trademark_business}, you will lose any remaining days of your free trial.",
+ "xFjOJt": "Couldn\u2019t send request. Try asking to join in person.",
+ "xGF6yN": "will have the meaning given to it under HIPAA if provided to Dropbox as Stored Data in connection with the Customer\u2019s use of the Services provided under the Agreement.",
+ "xGSoOh": "If you create a new account, bear in mind that a {PLUS} plan is required to use {DROPBOX_VAULT}; if you sign up for a {BASIC} plan, your vault will become a regular folder.",
+ "xHGt2e": "Shared with",
+ "xHrhU3": "Help",
+ "xIIOk9": "Set up",
+ "xIv/b5": "Join this Dropbox team for easier collaboration and instant access to team files.",
+ "xJJzde": "Start your {trial_length}-day free trial now, and get {discount_percentage,number,::percent .##}{br} off your annual subscription!",
+ "xK+xtZ": "Folder overview examples",
+ "xK2zMz": "Viewed {timeAgo} on web",
+ "xKaH8g": "Learn more about organisation admin roles",
+ "xKxA1E": "Targeting",
+ "xLAQNV": "People with this link can view",
+ "xLBgvV": "No users",
+ "xLxcJN": "Its scalability and ease of use are key factors in us making Dropbox available to everyone at the university. We want to offer the best choice of collaboration for our staff and students, so they can focus on their important work, and Dropbox fits perfectly into this.",
+ "xMIcmK": "Allow by default",
+ "xMTzQb": "Admin privileges granted.",
+ "xMhKAr": "No suggestions at the moment, but you can still add to your team.",
+ "xNGM5C": "Unsuspend account",
+ "xNMSzl": "I don\u2019t want to pay for the features on this plan",
+ "xNtgXg": "Thanks for verifying your email address. You can now enable the Public folder for your {email} Dropbox.",
+ "xOKZbV": "Easy to access",
+ "xONQyk": "Can\u2019t preview items in password-protected {extension} files.",
+ "xOPmrj": "{count, plural, one {Show {count} more} other {Show {count} more}}",
+ "xOfzBI": "1 TB (1,000 GB) of space",
+ "xOodvS": "Can\u2019t show content because the owner hasn\u2019t granted you access.",
+ "xPABSy": "A current member has asked you to invite this person to the team.",
+ "xPH1sd": "Opened",
+ "xPLXI9": "View team and groups",
+ "xPikZg": "Expires today",
+ "xPphSe": "Trusted devices",
+ "xQUjNt": "Marketing",
+ "xQcYSK": "Admins from these teams can sign in to your team\u2019s admin console to manage settings.",
+ "xRKxh4": "See my options",
+ "xRmacq": "More about tickets",
+ "xSRU6n": "Options",
+ "xSVM+Y": "Use this form to report content to Dropbox.",
+ "xSeL/y": "We use admin account info to figure out the email",
+ "xSgGcp": "Enter email addresses instead",
+ "xSnLZk": "{price} per year. Save {savings}",
+ "xSw/gY": "Billing, payments and subscription changes",
+ "xT8JbL": "Your files will stop syncing on the devices you sign out of, but they won\u2019t be deleted.",
+ "xTTXBn": "{count, plural, one {{count} file} other {{count} files}}",
+ "xUDQ+/": "Please note that you have an active Dropbox {trademark_plus} trial managed through the {billing_store}. You must cancel it to avoid being charged in the future.",
+ "xUEEuy": "Deleting your vault will remove Vault from your Dropbox and permanently delete Vault files. You will be able to re-activate Vault from your account settings, but no settings will be retained and you won't be able to restore your files.",
+ "xUKKu5": "Optional for specific members",
+ "xUYJHW": "Deleted by",
+ "xUl7yl": "Events",
+ "xUsLk2": "My account",
+ "xUy/si": "Couldn\u2019t open list.",
+ "xVsSTQ": "Choose a folder",
+ "xW4p7B": "Can\u2019t upload file",
+ "xWT9mA": "Oct",
+ "xWeLKL": "How inviting a team works",
+ "xWwooI": "Close",
+ "xX2p4m": "Preview of image watermark option",
+ "xX5O5j": "Click Save when you\u2019ve finished making changes.",
+ "xXANaY": "Reconnect to Slack",
+ "xXCpjB": "Copyright violation",
+ "xYXFPH": "{count, plural, one {Anyone with this link and the password can view the folder. Expires in {count} day.} other {Anyone with this link and the password can view the folder. Expires in {count} days.}}",
+ "xYXgy4": "If you need to move {file_name}, ask your admin to move it for you.",
+ "xYYMGO": "Learn how to manage cookies in Internet Explorer 11.",
+ "xYinYM": "Updating member access...",
+ "xYwBE4": "Some pages failed to load",
+ "xZI0xM": "{count, plural, one {Anyone with this link can view the folder. Expires in {count} day.} other {Anyone with this link can view the folder. Expires in {count} days.}}",
+ "xa73a6": "Finished uploading",
+ "xaHGTa": "Accident protection",
+ "xaIpK4": "Dropbox relies on third-party cookies to work with online editors, but the browser you\u2019re using either blocks third-party cookies or uses tracking prevention.",
+ "xalATL": "{count, plural, one {Hide last {count}} other {Hide last {count}}}",
+ "xb28qW": "Control who can view the file with this link.",
+ "xb3b5k": "Customer support",
+ "xbVIxL": "Change:",
+ "xbgRlN": "Share screen",
+ "xbrM8o": "Check when it happened",
+ "xbrdNQ": "Share with {team_name}",
+ "xc1Pi2": "Description",
+ "xcBnGg": "Use cases",
+ "xcX5ak": "View tasks assigned to others",
+ "xcYRNV": "Removed from {sharedFileName}",
+ "xcggVf": "Discard changes?",
+ "xcnS+t": "This member will be able to access the files, shared folders and groups they had when their account was deleted.",
+ "xdMd2y": "Nov",
+ "xdQIWj": "Choose files from your Dropbox account to protect in a vault. Then they won\u2019t be visible elsewhere on Dropbox, so you never risk exposing them accidentally.",
+ "xeJ+jE": "Web session closed.",
+ "xfHagR": "Professional only feature",
+ "xfMCig": "Oops, something went wrong.",
+ "xfeRYb": "Sign up for Dropbox to use Paper",
+ "xffpe2": "You use a third-party password (such as Google or Apple) to sign in to Dropbox, but for extra security we require a Dropbox password to access vault files.",
+ "xftYyh": "(save {savings,number,::percent .##})",
+ "xgMWwS": "This file is not on a plan that includes time-based commenting.",
+ "xgcx22": "Remind me later",
+ "xh009M": "App name or developer",
+ "xhxvHj": "{new_total} per {new_period} will be charged to the payment method on file.",
+ "xiKR1u": "Smart Sync helps you access files but uses up very little space on your hard drive, so you always have the right file at your fingertips.",
+ "xiT5su": "Couldn\u2019t load comments",
+ "xidXgJ": "Sorry, an error occurred. Please try again.",
+ "xj0qJi": "{count, plural, one {{count,number} comment} other {{count,number} comments}}",
+ "xj5uap": "Join team",
+ "xjnH8O": "Here are the folders you\u2019re currently sharing. Select anything you think your team might need. Everything else will live safely in your personal folder.",
+ "xjueJ2": "Only applies to folders at the top level of Dropbox. Sub-folders follow the setting of the folder they\u2019re added to.",
+ "xk236b": "Transfer",
+ "xkXFjI": "Hi {user_name}, I @mentioned you in this folder. Take a look.",
+ "xl6krg": "Date range",
+ "xlFbtN": "Successfully connected {app_name}",
+ "xlabvw": "Invalid server response",
+ "xls7QR": "You can still move files into Vault yourself. Choose any files you consider valuable, such as medical records, financial records and contracts.",
+ "xmCig8": "Too many incorrect passwords. Please try again in a few minutes.",
+ "xmIDr1": "There was a problem completing this request",
+ "xn0eiQ": "How many computers can each member connect to Dropbox via the Dropbox desktop app?",
+ "xn3SDu": "key",
+ "xnBlIG": "In order to protect your Vault, you must wait 48 hours after resetting your Dropbox password to change your PIN. ",
+ "xna7ek": "Verify your email address",
+ "xnp3tm": "Finish joining the team",
+ "xoFCOZ": "Off, did not fire, return not detected",
+ "xoLqNS": "Try a different account",
+ "xoaEua": "Open in Dropbox",
+ "xpTFuT": "Members can join your team using this link",
+ "xq+XhH": "Uploads won\u2019t be disabled.",
+ "xq4LWu": "To move members here, contact us to update this team\u2019s version of Dropbox.",
+ "xqds9K": "Anyone in your Dropbox team with this link can view the file.",
+ "xqj2eW": "Mention teammates in specific areas of files for targeted feedback.",
+ "xrk5tq": "{folder_name} will start as synced.",
+ "xs1WyB": "{number, plural, one {Viewed {number,number} hour ago} other {Viewed {number,number} hours ago}}",
+ "xs2ao2": "Send a notification to my devices",
+ "xs62vu": "{index}. Choose your billing cycle",
+ "xsBjuE": "Invite your family",
+ "xsCfKJ": "Before we enable Showcase, we want to remind you that data stored in Showcase will be stored on Dropbox infrastructure located in the United States. Your team has opted to have your file data stored in Dropbox folders to be located on European infrastructure. We make this option available to our large EU-based teams, but this option does not apply to Showcase data.",
+ "xt5oUg": "{count, plural, one {Your {count} existing shared folder invitation will be removed if you change your email address.} other {Your {count} existing shared folder invitations will be removed if you change your email address.}}",
+ "xtRTwX": "Sign-in is locked because there were too many unsuccessful attempts. Please try again later.",
+ "xth1bv": "Cancel",
+ "xuJw2w": "Cancel",
+ "xuKK76": "Get included on early releases for new Dropbox features. Early release features are subject to these additional terms.",
+ "xuc+Bh": "This link will no longer work for anyone who has it.",
+ "xukJ6/": "Your password should be four bars",
+ "xv81N2": "To see who downloads your transfer, email it.",
+ "xvIreV": "We were unable to fetch deleted file details.",
+ "xvcDzL": "{durationTimeInYears, plural, one {{durationTimeInYears} year since last modification} other {{durationTimeInYears} years after last activity}}",
+ "xvqCPU": "Check your two-step verification settings",
+ "xvqMO2": "URL",
+ "xw8mQ6": "Add any email address that ends in {firstDomain} or {secondDomain}",
+ "xw9fIG": "Sign in to your personal and work accounts on all of your devices",
+ "xwrFG7": "An easier way for your marketing team to coordinate launches, streamline content calendars and plan social campaigns.",
+ "xxUUHn": "Previous team",
+ "xxiQis": "Members can only view files.",
+ "xxurhh": "How do I back up photos on iPhone or Android?",
+ "xy84ul": "Bring it all together",
+ "xy9agL": "Enjoy the journey",
+ "xygQ+C": "Show preview with splash screen",
+ "xyiIYK": "Get a quick view of your next meeting",
+ "xylkiX": "Privacy Policy",
+ "xzFkmk": "People who made you a trusted contact",
+ "xzavZH": "This team is out of licences. Contact us to add more.",
+ "xzbxdc": "Anyone in your Dropbox team with this link can view the folder. Downloads disabled.",
+ "xzfUGH": "Mobile apps",
+ "xzxWmV": "Easy and secure sharing",
+ "xzzsCz": "Remove admin permissions",
+ "y+3UjK": "Idle session length",
+ "y+Ilev": "Attach a file to a card in Trello",
+ "y+Pbbq": "Send for signature",
+ "y+eSbf": "Continue",
+ "y/1E2c": "Teams",
+ "y/lF1K": "{count, plural, one {{dropbox_full_message}. To get more space, upgrade to {trademark_business}.} other {{dropbox_full_message}. To get more space, upgrade to {trademark_business}.}}",
+ "y/ubfn": "This folder has been renamed to \u201c{folder_name}\u201d",
+ "y0PTEJ": "Save hard drive space with Smart Sync",
+ "y0eA+H": "24 hours",
+ "y0ifA+": "For work",
+ "y12FO9": "See what Paper can do",
+ "y13pJ3": "Other teams we think you might want to join",
+ "y1g7SR": "Your new password should be four bars:",
+ "y1hm5z": "Loading assignments...",
+ "y1ySNn": "Add more files",
+ "y23rgT": "This is where you\u2019ll keep your personal work files. All your existing files live here, too.",
+ "y2A/fr": "If you need to restart the download, click here.",
+ "y2ZqfC": "Email address associated with the account",
+ "y2bJQP": "Make user management admin",
+ "y2iJBv": "{count, plural, one {You rolled back {count} item} other {You rolled back {count} items}}",
+ "y31AQD": "Contact support",
+ "y3d60z": "Work on files together with shared folders",
+ "y3dl6B": "Unlimited version history",
+ "y3fExc": "This extension will be removed once Dropbox has been installed.",
+ "y3tz33": "The {team_name} shared workspace is full, so no new files can be added",
+ "y4e6b/": "This folder",
+ "y4xCgb": "Expand menu for {action}",
+ "y5/gC7": "Start {duration}-day trial",
+ "y53jZ7": "Passwords must contain 6 characters or more.",
+ "y6ah/d": "
Sign in to your App Store account here and report a problem with a purchase.
Click Report a Problem next to the Dropbox app.
Choose a problem, write a description and click Submit.
Apple will contact you with a decision about your refund request.
",
+ "y6yO+g": "How can I cancel my account?",
+ "y79nPE": "Expires in {amount_of_time}",
+ "y7S+/u": "Open email",
+ "y7aJQC": "Colour space",
+ "y7bSVp": "Can comment",
+ "y8BuyK": "Create",
+ "y8JccE": "{count, plural, one {{count} shared folder selected} other {{count} shared folders selected}}",
+ "y8OShu": "Your admin created this shared workspace for your team. Stuff you add here is automatically shared with everyone in your team.",
+ "y8qDYk": "They can manage your members, including adding admin permissions.",
+ "y9TVto": "You can create links to any files or folders. These links can then be sent to anyone (even people who don't have Dropbox) for viewing. ",
+ "yAEhLX": "Select Download Dropbox.",
+ "yB9vy4": "Cannot find this policy. Try double-checking the link.",
+ "yBIvZF": "Cancel",
+ "yBMBV8": "You edited {relative_time}",
+ "yBRyhM": "App ID",
+ "yBuiQQ": "There were too many unsuccessful attempts. Try again later.",
+ "yC0qR0": "Please note that you have an active Dropbox {trademark_plus} subscription managed through the {billing_store}. You must cancel it to avoid paying for two subscriptions.",
+ "yC1hag": "How people like you use Dropbox",
+ "yCNEfh": "Share the link",
+ "yCbN77": "{price}/month",
+ "yDBqyM": "Types",
+ "yDGGwz": "Invalid file extension: {fileType}",
+ "yDmb9Z": "Sync your existing files?",
+ "yDs6IE": "Rotate clockwise",
+ "yEAQ1+": "You're all set!",
+ "yEKU8f": "",
+ "yEnVAd": "Your account will be merged into the {team_name} Dropbox account, where you\u2019ll have\na private area for your stuff. {team_name} admins can manage your files and Paper docs if they\nupgrade the account to {trademark_business}. {team_name} hasn\u2019t enabled Smart Sync, so new files will\nbe downloaded to your hard drive. You\u2019ll sign in with {work_email}.",
+ "yFJOsr": "Confirm new email address",
+ "yFOm+P": "
Sign in to dropbox.com with the account you want to cancel.
\n
Click your profile picture or grey circle in the top right-hand corner.
\n
Click Settings.
\n
Select the Plan tab.
\n
At the bottom, click Cancel plan.
\n
Scroll down and click I still want to downgrade.
\n
Select the reason why you want to cancel.
\n
Scroll down and click I still want to downgrade.\n You\u2019ll receive an email confirmation that your subscription has been cancelled.
\n
Your account will be downgraded to Dropbox Basic at the end of your billing cycle.
",
+ "yFeh8t": "Select folders that will be synced automatically to members\u2019 hard drives",
+ "yFobR2": "Create",
+ "yGD3o1": "You can remove either account from this computer in your app Preferences.",
+ "yGNa0c": "member folder",
+ "yGP7qq": "Still not sure? Let us know",
+ "yGV9pL": "Get unlimited access to our productivity partner ecosystem, with app integrations for Communication, Workflow, Project Management, CRM, Productivity, Education, Media & Design, Finance, eSignature and Marketing solutions.",
+ "yGgaIu": "Description",
+ "yH+i99": "Thanks for participating in {offer_name}.",
+ "yH9Gqv": "Can edit",
+ "yHAcZL": "Please log in as {email}{br}to manage your plan.",
+ "yHR5ks": "See next steps",
+ "yHeLJO": "What is Dropbox?",
+ "yHgTUN": "Save to your member folder?",
+ "yHnVyB": "View all plans",
+ "yI+MEC": "(Expired)",
+ "yIGH7D": "An International Bank Account Number (IBAN) is a unique identification code for a bank account. It\u2019s made up of a two-letter country code and up to 30 alphanumeric characters. Check your bank statements or ask your bank for your IBAN.",
+ "yIV8fq": "{count, plural, one {{count,number} email can\u2019t be invited because it\u2019s hidden by another app: {emails}} other {{count,number} emails can\u2019t be invited because they\u2019re hidden by another app: {emails}}}",
+ "yIq4Am": "esc",
+ "yIvHiK": "Sign in with Dropbox to use Spaces",
+ "yJcqG4": "You can\u2019t use your primary phone as your backup",
+ "yK0RKf": "You\u2019re in!",
+ "yK7wiN": "and {howMany} more",
+ "yKS63O": "See all activity",
+ "yKk1zB": "Text",
+ "yL6jvx": "Please take a moment to review your Dropbox security settings.",
+ "yLLoZO": "Photos",
+ "yLuosa": "Some of your folders are only visible on dropbox.com. With Smart Sync, you can make these folders online only. Then you\u2019ll see them in the Dropbox folder on your computer and still save hard drive space.",
+ "yLvC8k": "Member unsuspended",
+ "yMMY5D": "Online only: files default to living online. Ideal if you usually work online and need more free hard drive space.",
+ "yMofai": "{showcase} isn\u2019t available for this team. Contact your admin for more info.",
+ "yMtPEx": "For our Sept 2019 issue, let\u2019s try streamlining our process with the following two folders.",
+ "yNdnfh": "Feedback",
+ "yO4V6k": "Update billing information",
+ "yOUn8S": "Someone is working on this file in {editor_with_lock_string}. However, your admin has disabled access to {editor_with_lock_string} in your organisation.",
+ "yOnuCE": "All set.",
+ "yP/kmk": "Intelligently suggested files and folders keep your team one step ahead by giving everyone the content they need, when they need it.",
+ "yP8tlA": "Transfer files easily from one user to another when responsibilities change.",
+ "yQbWhp": "deleted audio",
+ "yQjmi6": "Admins can control the number of connected devices and what happens to disconnected devices.",
+ "yQppEr": "When you embed an Invision, Sketch or Dropbox file into Paper, it will be previewed correctly. Paper works the way you do, so you can keep working.",
+ "yQskA4": "App support",
+ "yQymSn": "Create folder",
+ "yQziVn": "{count, plural, one {{num_members} invitation sent} other {{num_members} invitations sent}}",
+ "yR1l4z": "in {location}",
+ "yR4pKK": "You\u2019ll still keep contacts who are in your team or who you imported. New contacts will be added when you share.",
+ "yRHDdv": "New deadline",
+ "yRPaqN": "New campaign...",
+ "yRSQ+x": "Default apps",
+ "yRhsqs": "Error verifying",
+ "yRp2bz": "Data governance will be merged too",
+ "ySF+8M": "I don\u2019t find it valuable",
+ "ySR8HJ": "How Rewind works",
+ "ySUQcR": "means 45 CFR, Part 164, Subpart C, under HIPAA.",
+ "ySmYba": "Members can manage secondary emails",
+ "yTQyaR": "You can edit",
+ "yTw3JQ": "Enter your link code below",
+ "yU+Z4I": "Oops, we had an issue.",
+ "yU0xda": "Email address",
+ "yU6FXl": "Warning!",
+ "yUI3mW": "They\u2019ll keep access to their own content, but they\u2019ll lose access to any team folders and anything not shared with them directly.",
+ "yULkHH": "Updating...",
+ "yUSwKs": "Get started",
+ "yUetMg": "Smith",
+ "yUg6ct": "Created",
+ "yUknRf": "The folders have stopped syncing and members can\u2019t add new files. To get more space, upgrade to {trademark_business}.",
+ "yV3a0G": "Your team space",
+ "yVYNlO": "Approved",
+ "yW5jui": "Simple and secure file transfer",
+ "yWmNDZ": "How to play video and audio files on Dropbox",
+ "yXRvXb": "Individual",
+ "yXjZBq": "This Dropbox {plus} plan was activated with a licence key. The next licence key will be activated on {date}.",
+ "yXo+0L": "When everything is in one, organised place, you can find your files easily from anywhere.",
+ "yXpwgx": "Revoke trusted status from any of your devices that skip two-step verification.",
+ "yY5byF": "Word document",
+ "yY9fAj": "Esc",
+ "yYoidl": "What would you like to use Dropbox for?",
+ "yZ3m0Y": "See plan details and monthly pricing",
+ "yZ3yD5": "You deleted {ago}",
+ "yZKvum": "(Optional) Dropbox suggests files to store in a vault. We respect your privacy \u2013 see how this works",
+ "yZT9Bf": "To enable Google sign-in, single sign-on must be set to Off or Optional.",
+ "yZXoct": "Test string",
+ "yZn8iM": "I don\u2019t need this file at the moment.",
+ "yZqpE+": "Upload",
+ "yZsrgl": "Get {showcase}",
+ "yaGg42": "Cancel",
+ "yacDmF": "Step 1/2: add your billing info",
+ "ybyEmp": "Now",
+ "yc8lym": "Photos & videos",
+ "ycH5zr": "Email",
+ "ycHIQI": "We emailed you a sign-in link. Please check your inbox.",
+ "yciCHe": "All changes will be updated on actively shared links.",
+ "ycve0w": "{display_name} is now a team admin.",
+ "yd0RsA": "Editing is locked for this file",
+ "yd60sv": "happy face",
+ "ydB9kl": "View and modify plan details",
+ "ydgWJD": "Something went wrong, but we think it was a one-off. Please try again.",
+ "ydkSFM": "Unnamed security key",
+ "ydowLy": "Let members lock editing temporarily for a file while they\u2019re making changes. To see all locked files, go to Content.",
+ "ye+BbQ": "Get the Dropbox app",
+ "yenocu": "{count, plural, one {Members of the file with this link and password can view. Expires in {count} day. Downloads disabled.} other {Members of the file with this link and password can view. Expires in {count} days. Downloads disabled.}}",
+ "yeuC04": "Back to download options",
+ "yf0GBe": "Invitation pending",
+ "yf3+2O": "Send with Transfer",
+ "yfKCnj": "Confirm you want to delete",
+ "yfRlFm": "Remove all admin rights",
+ "yfgkq/": "Use the Dropbox app to continue",
+ "yg9BrZ": "Make \u2018{emailToBePrimary}\u2019 primary?",
+ "ygEddR": "You\u2019ll be charged {prorated_price} for the new plan, pro rata for the current billing period.",
+ "ygWyU0": "Connected",
+ "ygkNbi": "Select to join {teamName}",
+ "ygsMY8": "Requesting\u2026",
+ "yhOAKQ": "There was an issue cancelling your changes. Please contact customer support.",
+ "yhn6hL": "Welcome to the {team_name} team!",
+ "yi7qcS": "Ctrl + {key}",
+ "yiUcOx": "You\u2019re about to leave the {team_name} Dropbox team",
+ "yj/RbI": "The team folder name is invalid.",
+ "yjQZvY": "Log in with correct account to download ZIP",
+ "ykCKqp": "{count, plural, one {Your {count} existing shared folder invitation in your personal Dropbox will be removed if you change your email address.} other {Your {count} existing shared folder invitations in your personal Dropbox will be removed if you change your email address.}}",
+ "ykReRx": "Delete",
+ "ykcKnI": "You can add people you want to work with",
+ "yklAgO": "{numYears, plural, one {{discount,number,::percent .##} off for {numYears,number} year!} other {{discount,number,::percent .##} off for {numYears,number} years!}}",
+ "yl0Fe9": "Successfully unlinked host.",
+ "ylBTam": "Direct",
+ "ylXIje": "Text of watermark",
+ "ylnQ1I": "securely backed up to dropbox.com",
+ "yluH71": "HelloSign deep integration",
+ "ylxfn/": "Country",
+ "ymINbT": "It looks as though someone permanently deleted this file",
+ "ymP1f5": "Start your free trial",
+ "ymi0Ig": "You can't share until you verify your email address.",
+ "ymxUCW": "Introducing Dropbox Paper",
+ "yn+GyK": "Secure your life\u2019s work \u2013 it only takes a few clicks",
+ "yn8fOE": "With {plusSpaceLongFormRounded}, you\u2019ll have plenty of room for files from all of your linked devices, stored securely in one organised \u2013 and easily accessible \u2013 place.",
+ "ynIlsr": "{numOfDeletedFolders, plural, one {1 folder was deleted by a member, but the retained files are still safe. To get these files, click Download content. For info on the files, click Create report.} other {{numOfDeletedFolders} folders were deleted by a member, but the retained files are still safe. To get these files, click Download content. For info on the files, click Create report.}}",
+ "ynUBTD": "Open",
+ "ynkxt6": "Can\u2019t find that person in your team",
+ "yo7heU": "Request multi-team admin access",
+ "yofFQe": "Loading imported contacts\u2026",
+ "ypCq5U": "Message",
+ "ypDO7+": "Alert",
+ "ypVr/u": "Move your team\u2019s Paper docs into Dropbox folders. Makes it easier for your team to access and organise their docs.",
+ "ypZYCu": "Enter your email address to reset your password.",
+ "ypbl+a": "Deliver completed projects",
+ "ypkPC5": "Upload by today at {time}",
+ "yq3RyE": "Codec",
+ "yqLGvW": "Failed to resend invitation.",
+ "yqXDtR": "Art/design",
+ "yqzu+V": "Invite others",
+ "yr/ac9": "Dropbox Smart Sync storage optimisation",
+ "yr1V3y": "We were unable to fetch mobile devices.",
+ "yr7w1/": "All other members",
+ "yrMoVL": "{count, plural, one {{count} person in {group_name} can edit} other {{count} people in {group_name} can edit}}",
+ "ysL13U": "Anyone with this link can view the folder.",
+ "yse7tr": "Jane Smith",
+ "yssxF1": "Recipe collection",
+ "ystVF4": "Giving new members access to all of this group\u2019s shared folders might take a while.",
+ "yt51qX": "You\u2019ll be charged {prorated_price} for the new billing schedule and plan, pro rata for the current billing period.",
+ "ytUb1D": "Billed monthly",
+ "ytXwAd": "Resend invitation to {email}",
+ "ytmJnQ": "{modifier} edited ",
+ "ytrKpj": "From",
+ "yuMCFt": "With Dropbox {showcase}, you can share your work with partners and clients beautifully, track progress and keep tabs on who\u2019s seen what \u2013 all in one place.",
+ "yuuljM": "{professional_price}/month",
+ "yvJeMj": "Attached files show up as thumbnails in Trello.",
+ "yvMeAJ": "Contact your team admin to change email",
+ "yvTBP0": "Admins in your team won\u2019t automatically become admins in the primary team. To get admin privileges, ask an admin in the primary team after the merge is complete.",
+ "yvTGLf": "Excluded members",
+ "yvYw6a": "Deadline time",
+ "yvuT7v": "{count, plural, one {{count} licence} other {{count} licences}}",
+ "yvuVL4": "{trademark_transfer}",
+ "yvyyXC": "per year",
+ "yw2PXj": "Refresh page",
+ "yw3Lbd": "Please agree to the Terms of Service",
+ "ywFEMZ": "Your new total will be {amount}{tax} {interval} for all {licenses} licences. These changes will be applied immediately.",
+ "ywprIY": "You work as an individual with Dropbox. You want to get organised and share easily.",
+ "ywqz2g": "Can edit",
+ "ywuKP5": "{file_number} of {file_count}",
+ "ywumKe": "Tasks marked as complete here will not affect the source website.",
+ "yxdGmm": "The security code is a 4-digit number on the front of your card, just above and to the right of your main card number.",
+ "yxgpXI": "Enter payment details",
+ "yxq6rX": "Templates for product teams",
+ "yypOy/": "Remove link",
+ "yzAIpy": "Use mobile authenticator instead",
+ "yzFoXG": "Send invitations",
+ "yzPd3d": "That\u2019s it for now. Thanks!",
+ "yzwpLq": "Last activity",
+ "z+5Htd": "Billed yearly:",
+ "z+8QnF": "Create policy",
+ "z+A7qz": "Cancel",
+ "z+CPqs": "yearly with monthly billing",
+ "z+EnK7": "Share files with your Google contacts",
+ "z/VsbM": "Unshare folder",
+ "z/d8Ge": "See your shared meetings and chat to {name} from here.",
+ "z/dbZ1": "Policy type",
+ "z/pQoy": "and",
+ "z0XoHf": "Save",
+ "z0bwcg": "When your team runs out of space, accounts will stop syncing and you won\u2019t be able to add any new files.",
+ "z0vb3Y": "If you purchased your Dropbox subscription through the Apple App Store, you can cancel your Dropbox subscription or free trial by following these steps:",
+ "z16aU2": "Max size: {max_file_size} MB",
+ "z16zv0": "Send reminder",
+ "z17QUa": "You\u2019re switching to yearly billing",
+ "z1K6EC": "Dismiss {host_name}",
+ "z1RKgB": "Link copied to clipboard",
+ "z1Zv7c": "Marketing template",
+ "z1tptm": "You protected some of your shared links with expiry dates or passwords.",
+ "z2KkW3": "Subject of your request",
+ "z2MCOp": "{count, plural, one {View {count} more} other {View {count} more}}",
+ "z2Mttr": "Sorry, an error occurred. Our customer service team has been notified and will be in touch.",
+ "z2Y0Xy": "This customised link lets members go directly to their Dropbox account online once they\u2019ve signed in to your identity provider.",
+ "z2uore": "Remove oldest devices",
+ "z3HdxP": "Automatically save email attachments to a Dropbox folder when you send emails to a unique email address.",
+ "z3MfdB": "This number cannot be lower than 15",
+ "z3xgSH": "Let team members access Dropbox using their company username and password.",
+ "z426aS": "Time defaults to midday",
+ "z4OqOu": "App permissions",
+ "z4RocF": "Strong",
+ "z4f40h": "Your account changes were stopped.{line_break}Please notify your customer service agent of this error message, or visit https://www.dropbox.com/support to speak to an expert.",
+ "z4simy": "Export {num_of_docs} doc",
+ "z4ud8c": "Set passwords, disable downloads and set expiry dates on anything you share with a link.",
+ "z5G18A": "More about photos & videos",
+ "z5KVyp": "Unable to subscribe. Please try again later",
+ "z5Kari": "when billed yearly",
+ "z5N53p": "{count, plural, one {Anyone in your Dropbox team with the link and password can view this folder. Expires in {count} day. Downloads disabled.} other {Anyone in your Dropbox team with the link and password can view this folder. Expires in {count} days. Downloads disabled.}}",
+ "z5S985": "Ask a question",
+ "z5cJI/": "To request a refund, follow these instructions from the Google support page:
Visit this link to view your Google Play account.
Under Order History, click More to the right of Dropbox.
Select Request a refund or Report a problem.
Choose a problem, write a description and click Submit.
You should get an email with your refund decision within two business days.
",
+ "z5t3Bh": "Open",
+ "z6Rf6I": "Choose what happens when you click a link to a Paper doc on this computer.",
+ "z7/sbf": "{count, plural, one {Deleting {count} item...} other {Deleting {count} items...}}",
+ "z7A0FO": "Make a strong impression",
+ "z7ekEU": "Yearly billing (save {discount})",
+ "z7j96E": "or ",
+ "z7te90": "When your download is complete, please run the Dropbox installer.",
+ "z7z6Ga": "Delete data",
+ "z8+dOU": "How much does Dropbox Paper cost?",
+ "z835Ka": "Triage tasks from connected apps",
+ "z84QMV": "Skip",
+ "z8HKmZ": "{price} per additional user",
+ "z8QPs2": "Certain files in this folder can\u2019t be shared due to a takedown request in accordance with the DMCA. Learn more",
+ "z8RAN1": "See and access all files from your computer while saving space",
+ "z8fiGm": "Help members in this team with basic tasks such as password resets.",
+ "z8h5GG": "{monthly_price} per month",
+ "z8q3Au": "Your agreement has been uploaded to your Dropbox.",
+ "z9Ca0+": "Members can create, edit and comment on files. They\u2019ll need a G\u00a0Suite licence.",
+ "z9gCs3": "To",
+ "z9hQqe": "Views of old links that won\u2019t expire, by people outside your team",
+ "z9lnHc": "",
+ "z9swUK": "{count, plural, one {The following files are not supported by Dropbox and cannot be uploaded: {files} and {count} more} other {The following files are not supported by Dropbox and cannot be uploaded: {files} and {count} more}}",
+ "zBbC71": "Try it now",
+ "zC0O65": "SSO sign-in URL",
+ "zCBJ1W": "Overview screen for a customer proposal project showing files and a checklist.",
+ "zCVuen": "Other",
+ "zCfH/i": "No password added",
+ "zCuK3B": "Update",
+ "zD/IJM": "Removed",
+ "zD5i93": "Something went wrong at our end.",
+ "zD9HBn": "Copy link",
+ "zDzQLv": "All set to free up your hard drive",
+ "zEuqqF": "Following Termination of the BAA.",
+ "zFOP6g": "Are you sure you want to disconnect {workspace_name}? You\u2019ll need to reconnect to this {service_name} workspace to continue using it with Dropbox.",
+ "zFiW15": "No folder selected.",
+ "zFotZ8": "To finish enabling Smart Sync, you\u2019ll need to restart your Mac.",
+ "zG6enO": "Billed yearly (save up to 20%)",
+ "zG6jaA": "Confirm your application submission",
+ "zGHPY9": "If members are using more than {basic_space_quota} of storage, Dropbox will stop syncing, additional files can\u2019t be uploaded, and files can\u2019t be restored to earlier versions.",
+ "zGJP/A": "All members will keep their own unshared files and folders.",
+ "zGdvWa": "For smaller teams",
+ "zGlzMk": "Choose logo",
+ "zGtm0O": "Animated loading icon.",
+ "zGvz6D": "Now click the installer that was just downloaded",
+ "zHeVB8": "Transfer up to {free_send_size_limit} free. {paid_send_size_limit} with {premium_plan_sku_name}.",
+ "zHeX5Y": "Couldn\u2019t undo copy.",
+ "zHivvu": "Failed to upload",
+ "zIWsYe": "Resend code",
+ "zIdt+I": "Developer",
+ "zJta6Y": "Welcome back to {date} at {time}",
+ "zK1cW+": "Go to Settings and more {more_horizontal}{chevron_right} Settings {settings}{chevron_right} Privacy & security {lock}.",
+ "zK70JM": "Choose this if you can upload files to your website",
+ "zK8QqE": "Start move",
+ "zKUi/3": "inclusions",
+ "zKwd9v": "Report requested.",
+ "zL2Z05": "Every five years",
+ "zLdZgT": "Login required",
+ "zLpdr6": "can\u2019t merge with deleted members under legal hold",
+ "zLxDLZ": "Signed-in web browsers ({num})",
+ "zM29MG": "The policy covers all current and future files and subfolders.",
+ "zMC+gt": "Time of sign-in",
+ "zMPVDj": "Allows features such as Smart Sync to work",
+ "zMV4Wd": "deleted folder",
+ "zMYKz7": "Unable to copy the link. Please copy manually.",
+ "zMrhld": "A new browser is used to sign in",
+ "zN84c7": "Rewound",
+ "zNWD/m": "Your team currently has Paper turned off. Contact your Dropbox admin for more info.",
+ "zNYL2l": "{date}",
+ "zNpgV5": "1 year",
+ "zNs6Iz": "empty folder",
+ "zO5hYF": "It looks as though there are already members moving to this team. Try again when they\u2019ve all finished.",
+ "zOCshx": "Feature screenshot",
+ "zODqgD": "Some files were not uploaded. Please try again.",
+ "zOKmpY": "For some reason, we couldn\u2019t open the Dropbox installer automatically.",
+ "zOVuhn": "3 of 3",
+ "zOa2gJ": "Send this message to {person}:",
+ "zOcVU3": "Reload",
+ "zOp76p": "Delete this policy",
+ "zP10eT": "Link disabled",
+ "zP5oqR": "Click to copy",
+ "zP7M7b": "Couldn\u2019t upload to Canvas",
+ "zPKMtc": "Group name incomplete",
+ "zPliLF": "A {dropbox_paper} list. A user writes new list tasks, tags other users in tasks and ticks off tasks as complete.",
+ "zPmOZ8": "Computer backup",
+ "zR9JV2": "Unauthorised namespace.",
+ "zROW58": "Cancel",
+ "zRWIxa": "You restored a previous version of {item_name}",
+ "zSLFEx": "Turn off Dropbox system extension?",
+ "zSNLnE": "Get your team on the same page. Keep everything related to your meetings in one place \u2013 background docs, agenda, minutes, next steps and task assignments.",
+ "zSj4X8": "You can use these one-off backup codes to access your account.",
+ "zSkMEs": "Make them an enterprise admin?",
+ "zTp6Om": "Features to try",
+ "zTrKL7": "Team admins in your team will be able to sign in to the trusted team\u2019s admin console.",
+ "zU7LMK": "Create a new email address to replace your current address. Your current address will no longer be active.",
+ "zUa4Nn": "Get organised. Stay focused. And bring content, collaborators and tools together in one place.",
+ "zUmiuz": "{count, plural, one {Members of the file with this link can edit. Expires in {count} day. Downloads disabled.} other {Members of the file with this link can edit. Expires in {count} days. Downloads disabled.}}",
+ "zVEpp7": "Allow members to invite people to the team, and we\u2019ll let you know when someone is invited.",
+ "zVSIOK": "There\u2019s a Dropbox charge on my credit card \u2013 which account is this for?",
+ "zVbgg5": "Participants",
+ "zVvjrt": "Turn on classification to send us feedback.",
+ "zVxVBx": "{cost}/year",
+ "zWD3IR": "An error has occurred. Please try again.",
+ "zWFh54": "Release hold",
+ "zWQcBD": "Set to expired",
+ "zWazjf": "just now",
+ "zWuXj+": "Showcase enabled. To adjust Showcase settings, please go to the admin console.",
+ "zXL2b0": "Your team has been downgraded",
+ "zXUvqw": "Add some files first",
+ "zXgc7I": "Create better, together",
+ "zYRitz": "Remove the device",
+ "zYaIYY": "Restored {filename}.",
+ "zYfhHY": "You moved this file",
+ "zYxEis": "Your Internet connection isn\u2019t fast enough to download multiple files at the same time. Try downloading each file individually, or move to a location with better signal.",
+ "zZ0kZi": "{count, plural, one {From {display_name} \u2022 {count} day to accept} other {From {display_name} \u2022 {count} days to accept}}",
+ "zZ6POL": "Tour",
+ "zZfSQd": "Remove me",
+ "zZwlxO": "{id_string} will lose access to the {team_name} team folder and be removed from all {team_name} groups. {first_name}\u2019s account will be converted to a personal Dropbox.",
+ "za0S+A": "I don\u2019t trust it with my sensitive documents",
+ "zaIoT9": "Activity. Whether content was viewed or edited",
+ "zbi0wT": "Top left",
+ "zc2P2d": "You\u2019ll no longer be able to keep tabs on them from your enterprise console or manage settings for this team, such as authentication and sharing.",
+ "zcHXrL": "Learn more",
+ "zcMNo2": "You\u2019ll lose the day left in your free trial",
+ "zcV6rs": "Create policy?",
+ "zcaS0q": "{count, plural, one {From {date}, you\u2019ll have {new_count} licence.} other {From {date}, you\u2019ll have {new_count} licences.}}",
+ "zctlVh": "Streamline remote work",
+ "zdIfoz": "{number, plural, one {Viewed {number,number} day ago} other {Viewed {number,number} days ago}}",
+ "ze+R5C": "{display_name}\u2019s account was deleted. You can also invite 1 more member at no extra charge.",
+ "ze0PDK": "Cancel by {date} at {time}",
+ "zePmlH": "Want a reminder?",
+ "zeRV46": "Your plan includes {quota} of space and {api_limit} API calls. Please contact support if you have any questions.",
+ "zeh/iP": "Legal hold released.",
+ "zepvzh": "House ad",
+ "zeypAU": "Watermark",
+ "zfTjba": "You gave view-only access to {entity}",
+ "zfYKXY": "Email address (required),First name,Surname,Groups (example: Accounting;Marketing)",
+ "zfmHhV": "If you can\u2019t access the link, it may have been deleted. Please reattach the file to your email.",
+ "zfnBdD": "Team space",
+ "zg3D7i": "Choose existing file",
+ "ziPTsB": "1 week",
+ "zigZlp": "{header_text}: {toggle_description}",
+ "ziu8+l": "Join the team once they accept",
+ "zj8gs6": "Is there anything in your {teamName} account that isn't work related?",
+ "zjSvcr": "Creating your transfer",
+ "zjtKtA": "You\u2018ll no longer merge with {secondary_team_name}, and both teams will remain separate.",
+ "zjv9kV": "Task created successfully.",
+ "zk0xED": "Team collaboration",
+ "zkHZ1K": "Invite someone to a shared folder and you\u2019ve got a great place to collaborate on files and ideas.",
+ "zkS2vQ": "Teams and admins",
+ "zkpujl": "Create a new team Dropbox",
+ "zkuT3R": "Download BAA",
+ "zlbejP": "Disconnect {service_name} integration?",
+ "zlco0y": "I have added the meta tag",
+ "zlnfYS": "History type",
+ "zm/sIQ": "{trademark_business_standard} provides teams with {standard_space} of storage, and simple sharing and collaboration tools. For teams needing more storage and security, {trademark_business_advanced} provides as much space as your team needs in addition to sophisticated admin, audit, integration and security features. Learn more about our plans here.",
+ "zm6ZVJ": "Configure extension",
+ "zm6z5Q": "Sign in with {provider}",
+ "zmINZ0": "Terms",
+ "zmhQtQ": "To keep deleted files for up to {version_history_policy} days, upgrade to Dropbox {trademark}.",
+ "zmoMxb": "Your free trial has already expired.",
+ "zn3S5a": "Auto",
+ "znHdQh": "Set up your free personal Dropbox",
+ "znNwig": "You\u2019ll need to buy more licences to invite members",
+ "znk45R": "Creating",
+ "zoMtmz": "All users",
+ "zoOTbT": "Click thumbnails for detailed previews of Dropbox files.",
+ "zoPXSC": "Everything you add to Dropbox will be:",
+ "zp2GrF": "Link is no longer available",
+ "zpOY3S": "You\u2019ve changed your plan.",
+ "zpPlDR": "Illustration of a street sign with the Dropbox logo, a document and two balloons",
+ "zq/eht": "Sending",
+ "zq3N/7": "Campaign type:",
+ "zqXonC": "Your preview is loading",
+ "zqiuDZ": "Team folders can\u2019t be renamed.",
+ "zqrZiY": "Don\u2019t cancel",
+ "zqvHIW": "These members won\u2019t appear in the team member list or in suggestions. Their information will be visible to members who have already been in contact with them directly. This setting doesn\u2019t apply to Dropbox Paper and may take up to one day to take effect.",
+ "zr9irP": "How secondary emails work",
+ "zrUbiB": "Personal",
+ "zrnVfs": "Reply to (required)",
+ "zrqAe8": "Close",
+ "zrwo7d": "Space used",
+ "zsb+bU": "Domain",
+ "ztHrl/": "When you leave the team, your account will be converted to an individual Dropbox account.",
+ "ztVNkF": "Cancelling your subscription will change your account to {trademark_basic}. Your storage will drop from {current_space} ({current_space_gb}) to {free_space}.",
+ "ztdrtc": "The watermark could not be saved because your account is over quota.",
+ "ztezCK": "Remember me",
+ "zu9Ljb": "Requested to join",
+ "zuKPlJ": "",
+ "zuKf/F": "We weren\u2019t able to retrieve your organisation\u2019s directory from Google",
+ "zuLHeg": "DowngradeLink",
+ "zuOMnc": "We blocked this link to be safe",
+ "zuQfmc": "Finish tour",
+ "zuqnRM": "Limited",
+ "zuyKOG": "You're being helped by Dropbox Support",
+ "zv+Ykn": "Submit",
+ "zv1B2B": "Open",
+ "zv6MCL": "Apple App Store",
+ "zvEz01": "This usually takes about 15 minutes, but it could take up to a few hours if\n there are a lot of files in {infected_user_familiar_name}\u2019s Dropbox\n account. You can go ahead and close this screen. Rest assured, recovery will\n continue at our end. In the meantime, you can work with\n {infected_user_familiar_name} to remove the ransomware from the infected\n computer. We\u2019ll email you when their files are ready to use again.",
+ "zvFhRS": "We think there\u2019s personal info (PII) in {fileName}. Are we right?",
+ "zvd3OE": "No photos or videos",
+ "zw/gLL": "It looks as though Slack hasn\u2019t been linked to your account yet",
+ "zwEuJW": "Send another email",
+ "zwFIH2": "Privacy",
+ "zwMg2i": "deleted archive",
+ "zwa4qT": "We removed some items that can't be shared",
+ "zx07KP": "Resolve billing failure",
+ "zx0slw": "Forum",
+ "zxDOdi": "deleted font",
+ "zxECIJ": "Link settings",
+ "zxEt4N": "Do you have a question?",
+ "zxr4q0": "Identity provider sign-out URL (optional)",
+ "zxyFrb": "Position",
+ "zy5fJv": "Plans",
+ "zyCIaS": "Continue",
+ "zyE4RK": "Easily access, edit and share Office docs online in Dropbox.",
+ "zynStQ": "One or more names or email addresses you entered are invalid. Please correct the highlighted inputs below.",
+ "zyt6xR": "What is your organisation called?",
+ "zyvCf5": "Your current trial",
+ "zz/G7J": "Access your stuff from anywhere",
+ "zzKjTv": "Continue with Dropbox Basic",
+ "zzi1qr": "Social media plan \u2192",
+ "zzokSY": "Smart Sync Auto-Evict",
+ "zzusgT": "This alert is triggered when a team member tries to sign in unsuccessfully too many times."
+}
diff --git a/packages/editor/fixtures/en.json b/packages/editor/fixtures/en.json
new file mode 100644
index 0000000000..690e3820b5
--- /dev/null
+++ b/packages/editor/fixtures/en.json
@@ -0,0 +1,15112 @@
+{
+ "++KM7f": "{count, plural, one {{count} photo} other {{count} photos}}",
+ "++NdWX": "Bring Slack conversations and Dropbox content together to keep teams in sync.",
+ "++TMjx": "Info in this report:",
+ "++p0Vh": "Cancelling your trial",
+ "++wAXq": "Cannot add folder",
+ "+/+p5G": "You don\u2019t have permission to save to this folder.",
+ "+/TA/S": "Continue with installation link",
+ "+/aseH": "{name} downloaded this file",
+ "+/lES4": "Wide-gamut RGB",
+ "+/y+vj": "Start new transfer",
+ "+03AJW": "Organise a team",
+ "+0FBSK": "This member",
+ "+0ofKf": "HelloSign lets you request signatures or sign documents directly from Dropbox.",
+ "+1MsbO": "Apps managed for your team",
+ "+22NkS": "Choose an assignment",
+ "+2ICy8": "Member since:",
+ "+2jNKl": "Capture project information, share deliverables and collect targeted feedback in a single doc.",
+ "+3VSGf": "The file you selected cannot be validated in DocuSign. Please try again with a valid file.",
+ "+4N3an": "Host dismissed.",
+ "+4exZC": "Asked to join on {date}",
+ "+4oAxT": "Teams around the world work together with Dropbox",
+ "+58ktI": "e.g. Acme, Acme Marketing",
+ "+5GSOF": "Get premium Transfer features including up to {gigabyteSpace} per transfer.",
+ "+5HiT6": "Update",
+ "+5Ta6t": "{actor_name} shared this file with you",
+ "+5WKqD": "Click 'Open with' and select Adobe Sign to open your PDFs directly from Dropbox.",
+ "+5bYbH": "Set permissions for {item}",
+ "+5oplS": "Get {space} or more and powerful features with Dropbox Business",
+ "+5rKgY": "Advanced collaboration tools",
+ "+5vrts": "Your changes won't be saved.",
+ "+6U8za": "You\u2019ll find more tips and tricks in the \u201cGet started with Dropbox\u201d guide.",
+ "+6YkIT": "Be sure to download everything.",
+ "+6lkxP": "You added {item_name}",
+ "+79s4f": "Trust this device",
+ "+7Lknb": "Successfully shared file request",
+ "+7LzrM": "Loading your folders",
+ "+7Mt/8": "Dropbox makes it easy for me to share important info with family members who live far away.",
+ "+7WmZr": "They\u2019ve already been approved",
+ "+7XcHy": "30 days",
+ "+7dBkS": "By function",
+ "+7fo34": "Sign in to your domain host\u2019s website",
+ "+8+aF7": "See who\u2019s viewed and edited a file, and which meetings it was shared in.",
+ "+8/A3B": "Clear manually added contacts",
+ "+8FgEv": "{count, plural, one {You\u2019re {count} step away from a {bonus_space} bonus} other {You\u2019re {count} steps away from a {bonus_space} bonus}}",
+ "+8WJrK": "Update \u2018{email}\u2019",
+ "+8WUch": "Your purchase is complete and your card has been linked to your Dropbox account",
+ "+8mZrp": "3+ users",
+ "+9OXcm": "Invited by {suggestingUserName}",
+ "+9XYcz": "e.g. 100.001.101-00",
+ "+9eUf/": "Something went wrong, but it\u2019s probably a one-off",
+ "+A8RXM": "{count, plural, one {Your {trademark_business} team must have at least {min_num_users} licence to accommodate all users in your team. Visit the members page to adjust the number of users.} other {Your {trademark_business} team must have at least {min_num_users} licences to accommodate all users in your team. Visit the members page to adjust the number of users.}}",
+ "+AF1Fn": "Enter password",
+ "+AWAIj": "Contact us",
+ "+AWHD4": "Folder members with the link can view",
+ "+AX7ED": "{name} will be able to add and remove managers, and change group information.{name} will also be able to delete the group.",
+ "+Ayjby": "Email unmanaged users",
+ "+BIPVN": "That\u2019s plenty of room for everyone in your family to sync files across all of your devices.",
+ "+BQfGg": "Copy the information below, and paste it into the {record_type} record section.",
+ "+BgGo2": "Failed to copy URL",
+ "+BiebH": "Please select a reason for leaving:",
+ "+Bkowt": "Last step: restart your Mac",
+ "+C1mk4": "You do not have permission to view this location.",
+ "+D26UW": "Change column",
+ "+DHvLW": "From device",
+ "+DTxnQ": "With Paper\u2019s iOS and Android apps, you can jot down ideas, grab a photo or give feedback on work whenever the spirit moves you.",
+ "+Dtv46": "Exit",
+ "+Du3+R": "Create",
+ "+E9wLh": "By proceeding, {family_plan} plan members will be downgraded to a {basic_space_quota} {dropbox_basic} plan.",
+ "+ECsZb": "Cancelled",
+ "+EIVcH": "Accounting of Disclosures.",
+ "+EZZAD": "This only applies within Dropbox.",
+ "+ElFUY": "Large list",
+ "+En75Z": "You can now enjoy lots of benefits, such as accessing both of them from your desktop.",
+ "+EoyVe": "This is the central place to manage members, create team folders, control security, monitor activity and take care of billing.",
+ "+EsI+X": "Anyone with the link can view this file. Downloads disabled.",
+ "+F67aE": "Get enterprise-grade control and visibility tools such as audit logs with file event tracking, SSO and oversight of connected devices",
+ "+FA5/Y": "Confirm new password",
+ "+FVlAv": "Enter emergency backup code",
+ "+Gi+rH": "Spot",
+ "+GqSV/": "Bit rate",
+ "+HMjSg": "We can't find this file any more. Try checking activity or folder history to see what happened.",
+ "+HVGgM": "For security, please enter your password for {email}.",
+ "+HYfWe": "Create a report of shared items, who shared them and more.",
+ "+HsOFj": "Google Docs",
+ "+HvGaa": "Create in Dropbox",
+ "+I73e9": "{count, plural, one {Members of this file with the link can view. Expires in {count} day.} other {Members of this file with the link can view. Expires in {count} days.}}",
+ "+IBZTK": "{count, plural, one {{name} moved {count} item out of {src_folder}} other {{name} moved {count} items out of {src_folder}}}",
+ "+ILmbh": "First name",
+ "+IWfb7": "Get centralised billing and dedicated phone support",
+ "+IgAux": "{count, plural, one {Are you sure you want to delete {item_count} items, including {count} shared folder, from your team member folder?} other {Are you sure you want to delete {item_count} items, including {count} shared folders, from your team member folder?}}",
+ "+IyBMQ": "Illustration of a single person",
+ "+JLAQ1": "See my recommended plan",
+ "+JxbQ8": "Limit who can be added as a member of folders.",
+ "+Jy1/e": "Sign in with a backup code",
+ "+KGOHZ": "Allowed for 30 days",
+ "+KJzGi": "Help with storage space",
+ "+KkCsG": "TB",
+ "+KvZSM": "Cancel",
+ "+L1ENo": "Enable your creative team to work together in real time \u2013 from production plans to creative briefs \u2013 as if you were in the same room.",
+ "+LI5nJ": "Best if your team needs extra security. Passwords will be need to be very strong with at least 8 characters, so they might be hard to remember.",
+ "+Lqk2a": "Start a free {hellosignPlanName} trial{br} to send or request eSignatures",
+ "+M0a0U": "You can\u2019t edit shared folders here. How to sign in as the owner",
+ "+MjNr/": "Step {current} of {total}",
+ "+Msa7x": "First things first",
+ "+MvFC2": "Never get shut out again",
+ "+NeLdn": "Free up space with Smart Sync",
+ "+OG7LA": "Sign up or sign in to your account",
+ "+PrmmG": "Info",
+ "+Q54an": "It can take a while to add everything, but you\u2019ll be able to\n access files from {linked_folder} from Content Builder.",
+ "+QOGgh": "Grow your team by inviting people to your new Dropbox account. You can start using your team space to access and comment on files easily.",
+ "+QiQ+N": "
Sign in to dropbox.com with your admin account.
Click Admin console in the left sidebar.
Click Billing in the left sidebar.
Scroll down and click Cancel plan.
Click the reason why you\u2019re cancelling.
Click Continue with cancellation.
Under Please acknowledge the following, tick all boxes.
Click Complete cancellation.
You will be taken to a web page titled You have successfully cancelled your Dropbox Business account.
To confirm your Dropbox Business cancellation, you can go to the billing page of the admin console at https://www.dropbox.com/team/admin/billing. There will be a notification box at the top that says You are scheduled to cancel Dropbox Business on [date].
",
+ "+R5URR": "Start your {trial_length}-day free trial now, and get {discount_percentage,number,::percent .##}{br} off your subscription!",
+ "+R9RBb": "{count, plural, one {Your plan can\u2019t have more than {count} licence.} other {Your plan can\u2019t have more than {count} licences.}}",
+ "+RseO8": "Send a request including your team name and number of members to:",
+ "+S8ja8": "Say hello to your team\u2019s workspace",
+ "+SWqX/": "Account photo",
+ "+SX5vq": "More information",
+ "+St/6D": "Great! Now install the app.",
+ "+T/qQ/": "More space for your team",
+ "+T5nDR": "Your new total of {amount}{tax} {interval} will be applied if you don\u2019t cancel by {date}.",
+ "+TVY1l": "Exit Vault",
+ "+UG3Vg": "Edit",
+ "+UGNSa": "Size",
+ "+UaWQV": "Email is invalid",
+ "+Ujbpb": "Member removed.",
+ "+VHcSr": "Go with {trademark} instead",
+ "+VWsfP": "Edit \u2018{group_name}\u2019",
+ "+VfIrY": "Get an email response in 24 hours, five days a week",
+ "+W+7b6": "Your Dropbox team requires a very strong password.",
+ "+WMBQW": "Open folder",
+ "+WdUO4": "Account",
+ "+Xv3VX": "Edit DWGs online using the AutoCAD web app.",
+ "+XzGBK": "These settings will apply to all folders in \u201c{folder_name}\u201d. You can change these settings in the admin console.",
+ "+YPQ5/": "We were unable to resolve the thread.",
+ "+YkEG0": "Dropbox gives you secure access to all your files from any device",
+ "+ZBQS4": "The link is off and does not grant additional access to anyone.",
+ "+ZJXxL": "Make owner",
+ "+ZVjRd": "Members cannot sign in using the Dropbox EMM app",
+ "+ZcdcY": "Request another call",
+ "+ZexiA": "3. Choose who needs access in an emergency",
+ "+Zm/l8": "Re-open",
+ "+Zotbx": "Add a Dropbox folder to Content Builder",
+ "+ZowJr": "@mention someone in my team",
+ "+a6RMC": "Couldn\u2019t share doc. Please try again later.",
+ "+aEeM/": "Modify my {trademark_plus_trial}",
+ "+aXkQH": "S",
+ "+ahzmw": "Annotations let you add comments to a specific part of an image, attributions show you who\u2019s added what, and emoji help you strike the right tone. Feedback: now with more fun.",
+ "+bXSlj": "Change plan to {backupPlanName}?",
+ "+cRe6Y": "Creating new folder...",
+ "+cSK4P": "Error sending message",
+ "+cYvo0": "Choose from Dropbox",
+ "+crZQt": "Bear this in mind while accessing government data",
+ "+csK/m": "Members of the file with this link can edit.",
+ "+cxIjV": "You can\u2019t invite these people because they have joined other teams.",
+ "+d7V/q": "Restore an older version of this file",
+ "+dhj1b": "Can\u2019t @mention someone in your member folder.",
+ "+eDHgr": "Access all of your Dropbox files from your desktop without taking up all of your hard drive space.",
+ "+eGcx2": "Arrow pointing right",
+ "+edH+e": "Use app",
+ "+enW1p": "Search by action or app name",
+ "+f5spv": "change permission for users to {label}",
+ "+fGoXc": "{name} won\u2019t have access to the admin console and won\u2019t be able to manage other accounts. Are you sure you want to continue?",
+ "+fOIGM": "Invoice",
+ "+feg+V": "Recently active",
+ "+fgFGr": "Traffic and insights",
+ "+fgc70": "Add people and domains outside your team who members are approved to share with.",
+ "+fv0Q5": "Cancel request",
+ "+gFolJ": "No filters added",
+ "+gXs6g": "Adobe Creative Cloud integration",
+ "+h0Uq6": "Link copied and ready to share",
+ "+hJZUF": "Create Paper doc",
+ "+hl9lA": "Failed to copy link",
+ "+iBBoN": "Here\u2019s what you\u2019ll get:",
+ "+iFY5X": "Send for signature",
+ "+iNJRS": "There was a problem completing this request.",
+ "+j0wlP": "Drop image here",
+ "+jtPQr": "Please select all that apply.",
+ "+k3R3j": "Switch billing period",
+ "+kJxW6": "Use your app to scan the barcode below, or .",
+ "+kZk+n": "Task",
+ "+kaklT": "You\u2019ll get everything in Standard, such as Smart Sync, 120-day version history, centralised billing and remote device wipe \u2013 plus more tools, security and features that you need to help your team reach its full potential",
+ "+kp5nI": "It looks as though the {email} request was dismissed",
+ "+lFU/m": "Linking of both of your accounts on this computer has been disabled by your {team_label} administrator",
+ "+lgTm0": "Smart Sync: save hard drive space",
+ "+lkANp": "If you\u2019re an independent professional or a freelancer, you\u2019ll get everything you need to store and access your files, and share your work in the best light.",
+ "+lpt2d": "This device",
+ "+mJra0": "This may take a few more seconds",
+ "+mR8Gr": "Error messages",
+ "+msE7t": "Customise instant access to a team workspace",
+ "+n5ElF": "About Dropbox Vault",
+ "+n5Hx3": "They\u2019ll no longer have access to the enterprise console. As a support admin, they can still handle some basic tasks for their team only, such as resetting passwords.",
+ "+nKRfb": "Add an email address, name or group",
+ "+naw6j": "Try for free",
+ "+nwihK": "Your team\u2019s move is scheduled for {migration_date}",
+ "+o4g6R": "Get unlimited API access to SIEM, DLP & CASB, Network Security, Identity & Access Management, Enterprise Mobility Management and Legal Hold partners.",
+ "+oASXe": "(only applied to first payment)",
+ "+obnRc": "Save to {destination}",
+ "+ogQrT": "Something went wrong, but it should work if you try again.",
+ "+op+KR": "Verify the HTML file",
+ "+ou8Af": "Folder settings",
+ "+p7Ggb": "Allow",
+ "+pJco5": "Dropbox Vault",
+ "+pTjXN": "Open folder settings",
+ "+pnXuI": "This account\u2019s {plan} will be downgraded to Dropbox Basic on {date}. {billing_summary}",
+ "+pygD0": "This offer expires on {expires_by}.",
+ "+q0Oh6": "Weekly team check-in",
+ "+qQQP+": "Send for signature with Adobe Sign",
+ "+r519k": "Mobile offline folders",
+ "+rIarA": "I\u2019m cancelling because\u2026",
+ "+rn0BX": "Check your email",
+ "+rsEJ/": "Paper docs",
+ "+s1X56": "Can I share a folder with someone who doesn\u2019t have a Dropbox account?",
+ "+s6D7j": "Guest",
+ "+s9RJZ": "Disconnected devices",
+ "+sU/hx": "{count, plural, one {Anyone in your Dropbox team with this link can view the file. Expires in {count} day. Downloads disabled.} other {Anyone in your Dropbox team with this link can view the file. Expires in {count} days. Downloads disabled.}}",
+ "+sfjfL": "Suggested items will be displayed here",
+ "+t/Zhg": "Deselect all",
+ "+tjVdW": "Which course is this for?",
+ "+trcEI": "External link",
+ "+uZbUG": "Dropbox Transfer with password protection and an expiry date",
+ "+uov+c": "Product spec \u2192",
+ "+v9Xj9": "Monthly billing",
+ "+vbakm": "Sandbox, {alt}",
+ "+vwHQY": " about company-managed groups.",
+ "+w0WHR": "Invitee",
+ "+xp7qq": "You can view and download any of the previous versions below.",
+ "+xvnoX": "Modified",
+ "+xwkiv": "There was an issue signing you in.",
+ "+xypvs": "Create a list for this board in Trello.",
+ "+y351D": "Tomorrow",
+ "+yGlTj": "{folder_name} won\u2019t be shared privately any more.\n Everyone in {team_name} will have access to this folder.",
+ "+ylHDD": "Support admin",
+ "+zMPbA": "We\u2019ll send another email and notification to {email} and the other admins in this team.",
+ "+zS10S": "Successfully unlinked device.",
+ "+zXu0j": "Spreadsheets",
+ "+zaO1T": "New files added to this folder will be saved as PDFs. Existing files remain unchanged.",
+ "+zi30X": "Unlimited devices",
+ "/+PjIb": "In the top right-hand corner, click {more_vertical} {chevron_right} Settings.",
+ "/+rdMp": "Users who had a Dropbox password will get this email telling them to use their Dropbox password in future. Users without a Dropbox password will be alerted with this email to create a password before they can sign in.",
+ "///fTC": "{count, plural, one {{count} member} other {{count} members}}",
+ "//AqpZ": "Apple App Store",
+ "//IGGo": "There was an error uploading your logo.",
+ "/0++y2": "to {location}",
+ "/0Bej7": "We sent a code to your phone number ending in **{phone_last_two}.",
+ "/0Zkaf": "Something went wrong. Please try again.",
+ "/0mGRc": "Subscribe to {PLUS}",
+ "/0nFW4": "Team ID copied to clipboard",
+ "/0odKW": "Link for editing",
+ "/0ynVE": "Any emails received after 1 August with the label(s) selected will be synced to Dropbox Tasks.",
+ "/0zpUu": "Switch accounts",
+ "/1OkHz": "Your free trial period won\u2019t be affected if you add your billing info now. You won\u2019t be charged until after your free trial ends on {trial_end_date}, and your plan will transition without interruption.",
+ "/1cHLH": "Control who can edit the file with this link.",
+ "/1fL4b": "Close",
+ "/1hVjo": "You will become the owner of all shared Paper docs owned by this member",
+ "/1juKK": "Upgrade plan",
+ "/2KhZn": "Add exception",
+ "/37Wb8": "2",
+ "/3FrEg": "Delete",
+ "/3HS66": "Changes are scheduled for {date}.",
+ "/3wd5G": "Add a trusted team",
+ "/4Vuk/": "Navigation disabled",
+ "/4tX/Q": "For billing details, please check your iTunes receipt.",
+ "/5/9mm": "Team admins",
+ "/5Xr9S": "Unable to link to Google. Please refresh the page to try again.",
+ "/5n1tf": "Start date",
+ "/5uaYl": "A screen capture demonstrating the page layout customisation capabilities within the Showcase feature of Dropbox. The user has a grid of seven file previews, then drags one file preview down to update the layout. Then the user changes the file title and adds a caption.",
+ "/5zkWm": "Before you can update or move your files, you need more space.",
+ "/6BY5h": "Protect files with enterprise-grade security.",
+ "/6ordy": "Add",
+ "/702bd": "Click 'Save' below to turn on classification. We\u2019ll start scanning, labelling and sending alerts. The first scan can take up to a week, but it won\u2019t affect performance. We\u2019ll email you when the scan is complete.",
+ "/71Iak": "Admin privileges revoked.",
+ "/7A7ii": "M",
+ "/7OiQL": "Location",
+ "/7cuH7": "No shared meetings coming up",
+ "/7hLwW": "Try for free",
+ "/7qjIg": "Dropbox is installing...",
+ "/7t8Pg": "{filename} will be gone forever for everyone, including anyone still using the folder. Permanently deleting this folder won\u2019t free up space.",
+ "/83u+2": "That comment has been deleted.",
+ "/8b+8B": "Request removed.",
+ "/8h7s8": "Dimensions",
+ "/8w1y7": "24 hours",
+ "/8wKhI": "If you\u2019d like, you can also set a nickname for this security key, so that it\u2019s easier to tell apart from any other key you have.",
+ "/92TKa": "Manage your team with confidence",
+ "/9wYHW": "Dropbox needs to verify your email address {email} to share folders. It\u2019s as simple as clicking the link in the verification email we send you.",
+ "/AIl7e": "New recruit onboarding \u2192",
+ "/AXCzs": "Try again",
+ "/Ae1Vt": "Forgotten PIN?",
+ "/AeFJk": "No activity for the selected week",
+ "/AoxyE": "Do more than store",
+ "/B8AOB": "Click 'Open with' and select HelloSign to open PDFs.",
+ "/BLIS0": "Showcase name",
+ "/Bh4a6": "This folder has been successfully added to your Dropbox.",
+ "/C6Zj0": "This Dropbox HIPAA Business Associate Addendum (the \u201cHIPAA BAA\u201d) is entered into as of the date specified above (\u201cEffective Date\u201d) between the Dropbox entity identified above (\u201cDropbox\u201d) and the customer identified above (\u201cCustomer\u201d). This HIPAA BAA amends the agreement governing your access to the Services (the \u201cAgreement\u201d) between the parties for the purpose of implementing the requirements of HIPAA to support the parties\u2019 HIPAA compliance requirements. Together with the Agreement, this HIPAA BAA will govern each party\u2019s respective obligations regarding Protected Health Information.",
+ "/CMclr": "{amount_over_size_limit} over {size_limit} limit",
+ "/CRuU4": "External sharing can\u2019t be turned on because of your Dropbox sharing settings.",
+ "/CgENe": "Attach files and folders to Trello cards",
+ "/D+mkV": "Anyone with the link can view this folder",
+ "/DGYJM": "Loading...",
+ "/DOPh6": "Features",
+ "/DTxnD": "Reset filters",
+ "/DXKQA": "Restarted access to Dropbox files from Content Builder.",
+ "/DXio5": "Are you sure you want to give admin permission to {display_name}? All users with admin permission will be able to upgrade this team to {trademark_business}.",
+ "/DlLCl": "from {app_name}",
+ "/E1hnK": "Sharing with loved ones has never been easier. All plan members can use the Family Room folder for shared content such as photos, videos and important documents while maintaining their own private accounts. ",
+ "/EeW7B": "Is first device",
+ "/Ev0Vq": "{name} changed the file settings",
+ "/FqzQ6": "or use personal account",
+ "/GAdqL": "{count, plural, one {With your current selection, your plan will have {count} licence starting on {next_billing}. Your new {schedule} total will be {total_amount_with_tax_rate_str}.} other {With your current selection, your plan will have {count} licences starting on {next_billing}. Your new {schedule} total will be {total_amount_with_tax_rate_str}.}}",
+ "/GDCqQ": "{team_name} will get one licence back",
+ "/GKV07": "We\u2019ve sent an email to {user_email}. Click the button in the email to set up your Paper team.",
+ "/GekxI": "There was a problem completing this request.",
+ "/Ghqtg": "Can\u2019t upload file types such as .paper, .web and .gdoc because they\u2019re web based.",
+ "/GxC4Y": "Billing issues",
+ "/H1e8h": "A non-negative number",
+ "/HAEcu": "Delete photo",
+ "/HB2m5": "{numUsersMin, plural, one {{numUsersMin,number}+ user} other {{numUsersMin,number}+ users}}",
+ "/HSBkG": "Verification method",
+ "/HaO4u": "Yearly billing",
+ "/Hx724": "More suggestions",
+ "/IHqYp": "For personal",
+ "/IIBtR": "This account is a member of the {team_name} Dropbox account.",
+ "/IY+3s": "Add photos or videos to your Dropbox and they\u2019ll appear here.",
+ "/IbIZj": "Surname",
+ "/Ijta3": "You shared this file with {slack_recipient_name}",
+ "/JYexz": "Position",
+ "/JdV4I": "Work with any type of content \u2013 such as Google Docs, Sheets and Slides, or Microsoft Office files \u2013 directly from Dropbox.",
+ "/Jj95M": "Smart Sync, stress-free sharing, offline folders on mobile.",
+ "/JltQD": "When you invite people to a shared folder, you get to decide who has view-only or editing permissions for the files in the folder. You can also set a password and expiry date so the link becomes inactive if you only want to share it for a little while.",
+ "/Jm0DN": "Resubscribe",
+ "/JpyiR": "Presentation",
+ "/KUP4A": "{vacuum_days}-day account recovery",
+ "/Ke+Ja": "{count, plural, one {Anyone with this link and password can view the file. Expires in {count} day. Downloads disabled.} other {Anyone with this link and password can view the file. Expires in {count} days. Downloads disabled.}}",
+ "/KqWDm": "Invite members to your team",
+ "/L5+/I": "Add emails",
+ "/L9p47": "You\u2019ve given these apps permission to access your Dropbox files on your behalf.",
+ "/LFPia": "Select Dropbox {plan_name}",
+ "/LISaT": "You edited {single_item_name} in {folder_path}",
+ "/LK4Ck": "Please include at least one URL.",
+ "/LLEd4": "Invited",
+ "/LUTAN": "This transfer is over the {file_size_limit} limit \u2013 remove some items or try {premium_product_name} to send up to {premium_file_size_limit}.",
+ "/LlzCR": "Undo",
+ "/LzQM9": "Manage security keys",
+ "/M5Btv": "Undoing copy...",
+ "/MXP6f": "Consolidate candidate data, manage interview schedules and co-edit interview questions.",
+ "/Mm2y4": "Take the \u201cmeh\u201c out of meetings",
+ "/NGfUc": "We\u2019re going to move:",
+ "/NKUty": "Dropbox {plan}",
+ "/NTBT6": "As much space as you need with sophisticated admin, audit and integration features",
+ "/OBuIO": "Comments",
+ "/Odjrr": "Invitation not available",
+ "/P1rvT": "Don\u2019t use it enough",
+ "/P347M": "How to fix issues with camera uploads",
+ "/P8G6Y": "{plan_size} of space",
+ "/PPGtg": "Your account administrator has removed access to this feature.",
+ "/PiZdD": "We\u2019ve finished recovering {infected_user_familiar_name}\u2019s\n files",
+ "/QEApB": "Unable to unfollow \"{folderName}\"",
+ "/QQQpk": "Vault owner",
+ "/R8O5/": "Add to Space",
+ "/RQDBN": "Optional",
+ "/S3Mdc": "Create file usage report",
+ "/SPtbM": "See and manage the apps connected to your account",
+ "/T0AVq": "Don\u2019t capture any users.",
+ "/Tpp4c": "You do not have permission to share this item.",
+ "/TynTR": "Members of this file with the link can view. Downloads disabled.",
+ "/TypJZ": "View all your file activity in one place",
+ "/UFoei": "+ Add more",
+ "/VHOb1": "Unable to remove request.",
+ "/VOrjR": "You\u2019re about to unlink your {device_category}. It will immediately stop syncing\n and you won\u2019t be able to access files on this device without re-linking it. {password_msg}",
+ "/W5jyu": "Restored {display_name}",
+ "/WFCIJ": "Edit invoice details",
+ "/WGG29": "Your team\u2019s plan usage details are below. If you have any questions, you can contact {reseller_name} at {email} or on {phone}.",
+ "/WkjMM": "Collaborate on group projects in a single doc. Co-edit in real time, give feedback with comments, and stay on top of deadlines with timelines and to-dos.",
+ "/Wuc+R": "Name",
+ "/Ww+v3": "Install",
+ "/Ww02p": "{price} per month. Includes GST",
+ "/XZGug": "This email address is already in use \u2013 please try another one",
+ "/XnOPY": "Open your homepage\u2019s HTML file",
+ "/Xs7Nm": "The account owner can add payment information now so that this subscription will be renewed automatically when the keys expire.",
+ "/XsVXX": "Chat with us",
+ "/Y+R+T": "{count, plural, one {View} other {Views}}",
+ "/ZD5W/": "Product roadmap",
+ "/ZTxri": "What\u2019s {trademark_plus}?",
+ "/Zd9Zb": "Your current plan",
+ "/ZnSPj": "Updated. You can double-check in the preview. ",
+ "/a0r6m": "Check your email for a download link.",
+ "/a2n+f": "Couldn't copy the link, but we think it was a one-off. Try copying it again.{br}{copiedUrlDisplay}",
+ "/a4H7F": "They\u2019ll get instant access to files",
+ "/awK9V": "Licences ({licenses})",
+ "/bTRGP": "This person is already on another team.",
+ "/bdBGh": "To join your team on Dropbox, create an account or .",
+ "/by54I": "Status",
+ "/c7TiD": "{count, plural, one {{count,number} contact} other {{count,number} contacts}}",
+ "/d09hp": "We\u2019re committed to helping customers who are subject to HIPAA/HI TECH regulations safeguard protected health information (PHI).",
+ "/d7ogs": "This will become a company-managed group, and admins will be responsible for adding and removing members.",
+ "/dCYwE": "A current email address makes it easy to get back into your account if you ever forget your password.",
+ "/dknSw": "Failed to revert changes.",
+ "/dvzu+": "Settings",
+ "/eW+X1": "Size",
+ "/fH0Wt": "Member settings",
+ "/gPVV1": "Notification sent. Check your device.",
+ "/gPhyo": "New user grace period:",
+ "/gXENF": "Archived",
+ "/gg1Cb": "Get a Dropbox file to attach here.",
+ "/giO3w": "User selecting view-only permission for a file.",
+ "/goJH9": "Products",
+ "/hChVv": "Allow",
+ "/i1m6q": "Owner",
+ "/i5ETN": "Dropbox Spaces brings your files and cloud content together, so that your PowerPoints can live next to your Google Docs, Trello boards and whatever tools your team wants to use.",
+ "/iYTXX": "Success! Family plan created.",
+ "/iexDp": "This lets members create and manage groups.",
+ "/ifa0B": "Upgrade plan",
+ "/ivxG2": "You don\u2019t have permission to create a link to this folder",
+ "/izp8x": "Your team has single sign-on. Sign in with your Dropbox password or ask your Dropbox admin for help.",
+ "/jZqD/": "Data governance",
+ "/jhkvD": "{price}/{duration}{line_break}({tax_string})",
+ "/kMUu5": "Report submitted.",
+ "/kvUTT": "App key",
+ "/kxPkk": "HelloSign (opens a modal dialogue to send this file to others to get signatures)",
+ "/l/+Lz": "Please let us know why you\u2019re cancelling.",
+ "/lGQC0": "Modified {ago}",
+ "/lcffS": "Member \u2022 {team_name}",
+ "/lwdle": "Illustration of a file being moved to a computer",
+ "/m87Qb": "Type",
+ "/mIp6I": "Sales",
+ "/mzu4K": "Something went wrong. Don\u2019t worry, your files are still safe and the Dropboxers have been notified. Head to",
+ "/n1NL4": "Unlink Slack",
+ "/n7sMZ": "This is a team folder \u2013 a way to help everyone work together. You can use it to share files with groups of people in your company.",
+ "/nEBNF": "from {display_name}",
+ "/nFZR2": "Create link",
+ "/nHstd": "Preference updated.",
+ "/nsbvt": "Live chat box",
+ "/oW7AW": "Don\u2019t know your password?",
+ "/orPeq": "deleted code",
+ "/oxGSo": "Set {first_name}\u2019s space limit",
+ "/p3g3M": "Transaction ID (optional)",
+ "/p3spu": "Folder successfully removed from your Dropbox.",
+ "/pFxox": "Effortless backup is here",
+ "/pcMyV": "Dissatisfied",
+ "/pyeDm": "Comment thread",
+ "/qDIN4": "Review linked apps",
+ "/qcXji": "New folder\u2026",
+ "/rCjvi": "Members page",
+ "/rSd+J": "Discount ({discount,number,::percent})",
+ "/rtVrh": "You\u2019ll no longer be able to search your Google Directory when inviting new team members.",
+ "/s1Hqq": "",
+ "/sKrO7": "upload to the folder \u2018{folder}\u2019 in your personal Dropbox",
+ "/sLt2T": "Did you mean: {query_string}",
+ "/sN5qV": "Suspended",
+ "/sRvdA": "Folder updates in progress. Please try again later.",
+ "/sfVvH": "Change access",
+ "/slhUC": "Ask to join",
+ "/sqCCc": "Which members should be able to use as many devices as they like to connect to Dropbox?",
+ "/sv7zG": "Recovery tokens",
+ "/t9NTF": "{value} regularly works with them",
+ "/tBniB": "These Dropbox users are not in your team, but they created a personal account with a domain you verified.",
+ "/tHQbR": "You\u2019re switching to monthly billing",
+ "/tcn5z": "Charged now: {total_price}FREE",
+ "/u+xcS": "Show me my stuff",
+ "/uOUwu": "We encountered an error trying to fetch teams for you to join. Redirecting to the next page...",
+ "/uqEAv": "Dropbox Passwords",
+ "/usWkZ": "I agree to the Dropbox Terms",
+ "/uvN/C": "Good passwords are hard to guess. Use uncommon words or inside jokes, non-standard uPPercasing, creative spelllling, and non-obvious numbers and symbols",
+ "/uwPv1": "You have selected Dropbox {selected_plan} for 2018. To make a change to your account, please go to your team admin console.",
+ "/w8JtZ": "Who\u2019s using Dropbox?",
+ "/wl9ZM": "Install Dropbox",
+ "/xb44b": "{bit_rate} kb/s",
+ "/xqdk6": "Try again",
+ "/yBlXH": "Can comment",
+ "/yM0kz": "Licences",
+ "/ya1jr": "Move all files to team account",
+ "/yoXYw": "Add attachments from Dropbox",
+ "/yqHaA": "You and your team can process digital documents, simplify workflows and collaborate on large projects with a complete PDF software suite.",
+ "/z3emX": "{count, plural, one {{filename} and {count} more item are shared with you, but you\u2019re not the owner. They\u2019ll be removed from your account, but not deleted for anyone else. Removing your access won\u2019t free up space.} other {{filename} and {count} more items are shared with you, but you\u2019re not the owner. They\u2019ll be removed from your account, but not deleted for anyone else. Removing your access won\u2019t free up space.}}",
+ "/zMGpe": "No expiry date",
+ "/zPOCo": "This version is {lifecycle}",
+ "/zxgOv": "",
+ "0+1lU5": "PDF details",
+ "0+HfP4": "Select folders",
+ "0+tmER": "The file name contains invalid characters",
+ "0+yoJN": "Email us",
+ "0/+N6U": "Your password has expired. Please create a new password here.",
+ "0/9rfx": "No results found image",
+ "0/Sxbu": "Previous {trademark_business}",
+ "0/TLiY": "Rename",
+ "0/mzE/": "Individual Dropbox account for each user",
+ "00FN2D": "Try resetting all filters",
+ "01NlbA": "(please fill in the reason below)",
+ "01RCur": "Who does your team mainly work with?",
+ "01SzRQ": "{count, plural, one {Anyone in the {trademark_business} team with this link and password can edit the file. Expires in {count} day. Downloads disabled.} other {Anyone in the {trademark_business} team with this link and password can edit the file. Expires in {count} days. Downloads disabled.}}",
+ "02OmLI": "Editing external folders",
+ "02RFb/": "Start organising things for your team. Create folders just for certain people, or for your whole team. The default setting gives everybody access, but you can change that with each folder.",
+ "02Ri+P": "To switch between accounts, start by clicking the blue dot above.",
+ "03+wm0": "viewed {timeAgo}",
+ "030b0q": "Thank you for reporting this ticket",
+ "03FNiv": "Apply",
+ "03SKJc": "For more info on what Dropbox does not allow, see our \nAcceptable Use Policy",
+ "03fMgc": "Create",
+ "03hVGB": "Cancel your plan",
+ "03l73G": "Resolved",
+ "03tbWi": "If you remove {name}, they won\u2019t be able to see future changes to this shared folder.",
+ "04+VFD": "How is Smart Sync different to Selective Sync?",
+ "04JBDX": "This list does not have any cards.",
+ "04g1Dq": "Get Smart Sync",
+ "04v979": "Corrupt file. Couldn't extract files.",
+ "053fd4": "Free until {ts,time,:hhmm}",
+ "05GXvt": "Select which files to make online only",
+ "05xjxH": "View in admin console",
+ "060vl3": "Comment anywhere",
+ "06UTVR": "More",
+ "06VnKH": "Allow admins to create authoritative groups that users cannot modify.",
+ "06c6CL": "A user previews text, a snippet of code, a piece of audio and a video in a {dropbox_paper} document.",
+ "06cQ++": "This is probably your company\u2019s IT team or help desk",
+ "07Thhg": "The Adobe Sign Dropbox extension manages the entire digital signature process directly from a document or form in Dropbox. Powered by Adobe Document Cloud. New users get 5 free transactions every 30 days.",
+ "08QqnO": "Is {email} your current email address?",
+ "08pXPf": "Must be under 140 characters",
+ "08qqVO": "IT template",
+ "091A+D": "Find it with filters",
+ "094cC0": "Here are the people in {team_name} that you\u2019ve shared with before:",
+ "09Mmd1": "Remove from exceptions",
+ "09No5S": "When users in {domain} and its subdomains are invited",
+ "09OS+5": "This change may affect people who had edit access in the past.",
+ "09dSLK": "Free up your hard drive space automatically",
+ "09tqAZ": "You\u2019ll need to click \u201cAdd\u201d when your browser asks for permission in the next step.",
+ "0A9340": "Top left",
+ "0AMMBX": "You entered an invalid name or email address.",
+ "0AbCS6": "View actual size",
+ "0B2QA4": "Photo",
+ "0BKjy6": "Email hidden by another app. Try inviting them using a different email.",
+ "0BMZLQ": "Upload files",
+ "0BRgfC": "Domain contact",
+ "0BUrj7": "Star",
+ "0BbkU+": "Transaction details",
+ "0Bdtgw": "Try for free",
+ "0Biwgu": "Technology",
+ "0BjR72": "Dropbox Rewind",
+ "0D00Y7": "Your {current_legacy_plan} plan currently has access to Advanced features at no extra charge. If you downgrade to Standard, this cannot be undone. You will be able to upgrade to Advanced with the new pricing, but you won't be able to return to your {current_legacy_plan} plan.",
+ "0D0tb3": "Request approved.",
+ "0DESii": "Change background",
+ "0DH5K/": "Up to 10 GB/file",
+ "0DHM4Y": "Unlock the full admin console",
+ "0DN9zf": "Work from anywhere",
+ "0E53wd": "Team admin controls",
+ "0EC+2K": "Dropbox needs to verify your email address {email} before you can invite friends. Check your inbox and click the link in the email to verify your address. If you can\u2019t find it, check your spam folder.",
+ "0EfGlJ": "Type of file",
+ "0EwJr5": "Numbers to watch",
+ "0FFwca": "Link",
+ "0FUoYO": "Send",
+ "0FjBuU": "Work better together with sharing and feedback tools.",
+ "0Fq1H6": "Channels",
+ "0FrMSv": "Set the default for apps not listed in App Centre. Add apps as exceptions to manage them separately.",
+ "0FtGwy": "View on App Centre",
+ "0FvFw6": "Marked as resolved",
+ "0G1Llb": "Unable to follow \"{folderName}\"",
+ "0G7A6K": "View source website",
+ "0GIkLa": "See more",
+ "0GLuLd": "(view details)",
+ "0GW3rS": "Document watermarking",
+ "0HHXgt": "Turn off Dropbox Paper for your team?",
+ "0ICouY": "Close",
+ "0JBYLy": "Once you\u2019ve created a hold, we\u2019ll save a copy of every change members make to files, even if the file has been permanently deleted.",
+ "0JQeaN": "Other",
+ "0Jk4U/": "Recipient\u2019s name or email address",
+ "0K5Rmt": "You haven\u2019t linked any devices to your personal Dropbox account. Install Dropbox to sync your devices.",
+ "0KHQ0l": "Dropbox window with cursor over open with button, showing apps in the menu.",
+ "0Kc6QN": "Contact admin",
+ "0L/bC9": "Manage your team easily from the admin console.",
+ "0Lmb+Y": "Changing access for {current_folder}\u2026",
+ "0MAQ4t": "Back",
+ "0MEjJx": "To",
+ "0Mt769": "Please enter a valid address.",
+ "0N4KvM": "Oops, something went wrong.",
+ "0NA7+K": "Close",
+ "0Nkg/N": "Team Folders cannot be added to the clipboard",
+ "0O/etV": "Cancel {trademark_business}",
+ "0O/gss": "Alerts",
+ "0O37bo": "Sales",
+ "0OPuIy": "{count, plural, one {{count} second left} other {{count} seconds left}}",
+ "0OYZsq": "per month",
+ "0OctaV": "Failed to cancel plan.",
+ "0OfEeR": "{count, plural, one {You now have {count} licence on your free trial plan. You\u2019re not being charged at the moment. If you purchase {trademark_business}, your {schedule} total will be {total_amount_with_tax_rate_str}.} other {You now have {count} licences on your free trial plan. You\u2019re not being charged at the moment. If you purchase {trademark_business}, your {schedule} total will be {total_amount_with_tax_rate_str}.}}",
+ "0OkLOs": "File and folder info such as type, size and path",
+ "0P+Y1J": "Admin permissions removed from {display_name}",
+ "0Pf729": "Things to try",
+ "0Q4QAv": "Auto, did not fire",
+ "0Q9HtX": "Only people who can edit this item can restore it.",
+ "0QCr8R": "{count, plural, one {{dropbox_full_message}. To get more space, ask your Dropbox admin ({admin_email}).} other {{dropbox_full_message}. To get more space, ask your Dropbox admins ({admin_email} and {num_other_admins} others).}}",
+ "0QYcPU": "Less than 1 minute left",
+ "0QrCDg": "Why {dropbox_plan}?",
+ "0QtuCD": "Choose a file format\u2026",
+ "0RKtV2": "Processing\u2026",
+ "0RUnlD": "Oversee and manage your admin console",
+ "0Rr7nB": "Add your billing information so you don\u2019t have to later. You\u2019ll still get the remaining days in your trial for free, and you won\u2019t be charged until {trial_end_date}, when your free trial ends.",
+ "0SFVaR": "Stuff to do:",
+ "0SgQE0": "Priority email support",
+ "0Sqcdg": "Add",
+ "0SuEFr": "Go with Dropbox Basic instead",
+ "0T8lDf": "Share stuff to streamline your work and get more done together.",
+ "0Tm3JK": "Enjoying your free trial?",
+ "0Tsaqm": "Add your name",
+ "0Tvaws": "If you\u2019ve already reached your quota, this means that:",
+ "0UBmAV": "We\u2019re having some trouble at the moment. Please try again later or contact sales.",
+ "0UM2rq": "Duplicate the version",
+ "0UNJMJ": "Add photo",
+ "0UQLiq": "Read more about alpha and beta features from Dropbox",
+ "0VN65R": "People who view this file may be able to see when you last opened it. This info may be displayed for other Dropbox files you open.",
+ "0VVpqj": "{Calendar} or before",
+ "0Vb1hf": "It takes a village to publish the world\u2019s most iconic travel guides. That\u2019s why Lonely Planet has a worldwide team of writers, editors and designers. It\u2019s the ultimate distributed workforce. And it uses {trademark_business} to share stories from 350,000 destinations.",
+ "0W+uQd": "{space} of shared team space",
+ "0W2SPV": "Spacing between lines",
+ "0W8WmQ": "They can also share with{br}your secondary email",
+ "0WG6Xp": "File renamed.",
+ "0WboRK": "Friday",
+ "0X+Fnj": "Once a day",
+ "0X0uGq": "There was a problem with your request. Please try again later.",
+ "0X3DhD": "Branding",
+ "0XBE+l": "Please enter your payment information.",
+ "0XVfsw": "Close modal",
+ "0XWNEG": "{count, plural, one {You\u2019re currently scheduled to have {count} licence removed on {next_billing}. The current selection will bring your total number of licences back to {new_license_total}, so there will be no changes to your billing plan.} other {You\u2019re currently scheduled to have {count} licences removed on {next_billing}. The current selection will bring your total number of licences back to {new_license_total}, so there will be no changes to your billing plan.}}",
+ "0XXDGq": "Can I make online-only files available when I\u2019m offline?",
+ "0XnFk0": "Remove",
+ "0Xvvuv": "People with the password can view until {date}",
+ "0YMaU+": "People your team works with",
+ "0YRjqy": "Download \u25be",
+ "0Yfk/+": "Finance",
+ "0Z34Zp": "Dropbox will make available to the Customer the PHI via the Services so the Customer can fulfil its obligation to give individuals their rights of access and amendment in accordance with the requirements under HIPAA. The Customer is responsible for managing its use of the Services to appropriately respond to these individual requests.",
+ "0ZcoHO": "Watermark your PDFs and photos",
+ "0ZlXV5": "Applicability.",
+ "0a6hoM": "Pending requests",
+ "0aE5Ia": "Add any email address that ends in @{domain}",
+ "0aK7wA": "Can view",
+ "0aZzBa": "Choose the right Dropbox for you",
+ "0bfcmS": "Extend the functionality of your Dropbox plan with add-ons",
+ "0bkx9E": "{count, plural, one {Unpinned {count} item.} other {Unpinned {count} items.}}",
+ "0bpB4G": "Other options:",
+ "0c3OLo": "Do any of these help with restoring and deleting files?",
+ "0cCdrv": "Your team folder is available in Content Builder",
+ "0ccuXT": "Your request is invalid or has expired. Please try again or visit our Help Centre article.",
+ "0dRQyx": "On by default",
+ "0dbiex": "Something went wrong. Please try again later.",
+ "0dfd/h": "Not enough licences",
+ "0e5Pxx": "Protect work with watermarking",
+ "0eCb/f": "{count, plural, one {You now have {count} licence on your free trial plan. You\u2019re not being charged at the moment. If you purchase {trademark_business}, your {schedule} total will be {total_amount_with_tax_rate_str}.} other {You now have {count} licences on your free trial plan. You\u2019re not being charged at the moment. If you purchase {trademark_business}, your {schedule} total will be {total_amount_with_tax_rate_str}.}}",
+ "0eDgXK": "Your Dropbox is full",
+ "0ehxlh": "Upgrade now",
+ "0er2Ve": "This folder can only be shared as a link because it contains a shared folder.",
+ "0exnBW": "Reschedule",
+ "0fS0+L": "To",
+ "0fk6SV": "Vault",
+ "0funlH": "Let admins set syncing options on a per-folder basis. How team Selective Sync works",
+ "0fyg9t": "We couldn\u2019t reach that email address. Please check the spelling and try again.",
+ "0gOZQI": "This user has already been invited to join your organisation",
+ "0gZYzZ": "Your {label} Dropbox ({need_gigs} GB) is too large to fit on this computer ({free_gigs} GB available)",
+ "0gkZI3": "Send a reminder",
+ "0gnuWd": "Make 'online only'",
+ "0gsuiY": "Adding another file could fill up your account. Make sure you\u2019ll be able to sync or use your files when you need them.",
+ "0h+Ceh": "{count, plural, one {Dropbox couldn't delete {count} file from the computer {host_name}. You can download the name of this file and the reason why it couldn't be deleted.} other {Dropbox couldn't delete {count} files from the computer {host_name}. You can download the names of these files and the reasons why they couldn't be deleted.}}",
+ "0hbS1D": "Buy more licences",
+ "0hnGgQ": "Location",
+ "0hntVX": "({size_in_megabytes} MB)",
+ "0i2mdb": "Thank you for your feedback.",
+ "0i5fHf": "Collect favourite recipes \u2013 alone or with a group. Create a shared place for inspiration and cooking notes.",
+ "0ic7p5": "You can still find Dropbox Passwords in the app store or your Dropbox settings if you change your mind.",
+ "0iiZ5O": "You\u2019ll lose the {trial_days_left} days left in your free trial",
+ "0jP5B/": "You\u2019re in trial mode.",
+ "0jZ0EW": "Start your {trial_length}-day free trial",
+ "0jndXy": "{filename} will be gone forever and you won\u2019t be able to undo this action. Please bear in mind that permanently deleting this won\u2019t free up space. Learn more",
+ "0k43gE": "{count, plural, one {{count} password} other {{count} passwords}}",
+ "0kb0q8": "You have the maximum number of holds. Release a hold to create more.",
+ "0kdVBN": "Project management",
+ "0l69MV": "or drag stuff here",
+ "0lCFx+": "People outside {team_name}",
+ "0lacrv": "Didn\u2019t download",
+ "0ldqAt": "Start new files as 'online only'",
+ "0ln8xM": "Free {duration}-day trial",
+ "0m+fhS": "We were unable to retrieve all of your shared files",
+ "0mhWVd": "Download template",
+ "0nDqnr": "invitations left",
+ "0ntjqF": "Error occurred sending reminder. Please try again.",
+ "0oEiHx": "Off",
+ "0oHBXP": "Failed to unlink client",
+ "0oOsfb": "Open Dropbox for Desktop",
+ "0oTp7+": "Invite members",
+ "0oW8od": "Add to federation illustration",
+ "0oXGhf": "Stormcrow var",
+ "0oaVVe": "The percentage of members in your team out of the licences you purchased",
+ "0oxqa1": "Upload by {day}.",
+ "0pIb4L": "Cancel",
+ "0pnG7e": "Seamlessly plan and coordinate",
+ "0qKVIF": "Paper desktop app",
+ "0qKpL+": "Request files from anyone \u2013 whether they have a Dropbox account or not.",
+ "0qPam6": "OK",
+ "0rYKaW": "Excel workbook",
+ "0s/Y6+": "New Dropbox desktop experience: Windows File Explorer/macOS Finder, new desktop app and Dropbox in Windows system tray/macOS menu bar.",
+ "0sJOEd": "Within a few minutes",
+ "0sfjFG": "Keep {trademark_business} and return to account",
+ "0tQPtN": "Add to project",
+ "0uAyRO": "180-day file recovery",
+ "0uP+vN": "Back",
+ "0uTefj": "Laptop with Dropbox",
+ "0ucYPI": "Easily access and share your work from any computer, mobile device or web browser.",
+ "0uq+BA": "Images",
+ "0vFUP0": "Teams:",
+ "0vZjXC": "Please reload the page to keep working.",
+ "0vxMta": "Before continuing, join your team on Dropbox",
+ "0wIJlM": "{value, plural, one {{value,number} week} other {{value,number} weeks}}",
+ "0wcBKy": "New users will join the team once they accept your invitation",
+ "0x7be4": "Monthly",
+ "0xK/U6": "Current plan",
+ "0xQrtT": "Convert {filename} to make edits",
+ "0xWqcs": "Present your work",
+ "0xWrNT": "Error message (optional)",
+ "0xbKsx": "Billing, payments and subscription changes",
+ "0y269U": "Help members with limited tasks, including password resets",
+ "0zEFlX": "Please confirm your new password",
+ "0zm/8C": "Failed to create invitation link.",
+ "0zsyCM": "Do you have any discounts for non-profits or educational institutions?",
+ "0ztBMB": "About",
+ "0zw1l2": "You\u2019re cancelling your EVH changes. Your Dropbox {plan} plan will be renewed on {date} and you will be billed {schedule}.",
+ "1+fVJa": "{count, plural, one {You can stay signed in on one device.} other {You can stay signed in on up to {count} devices.}}",
+ "1/F8qd": "Ask Jessica about retouching issues",
+ "10+RMZ": "\u2318 + z",
+ "10Ms2o": "Postcode",
+ "10PpMM": "Feature not included",
+ "10m4e2": "Confirm you want to disable",
+ "11DRm6": "{member_name} can still access this file",
+ "11P/4a": "Manage the {team_name} Dropbox",
+ "12+9PT": "Let me know",
+ "12W6xJ": "
Any file type that can be previewed in Dropbox can also be previewed in a showcase.
\n
Video previews won\u2019t play directly on the showcase page \u2013 they\u2019ll appear as a still image instead. However, if you click this image, a lightbox will open where the video preview can be played.
\n See a list of the file types that can be previewed in Dropbox.",
+ "12aBRc": "Linked apps reviewed",
+ "13ARWl": "{filename} is in read-only mode. Convert it if you\u2019d like to make edits.",
+ "13SgwL": "You don't have access",
+ "13cxOh": "Members can enable or disable two-step verification if they like.",
+ "142JRz": "For your own security, you\u2019ll need to update to a newer, more secure browser in order to access this page.",
+ "14X21j": "You shared {single_item_name} in {folder_path}",
+ "15/NF/": "{trade_mark} {plan_title}",
+ "15C0At": "Frequently asked questions",
+ "16PnxZ": "Manage members in this team, including adding and removing them.",
+ "16jUYw": "{count, plural, one {We found {count} search result} other {We found {count} search results}}",
+ "176G5m": "Resend verification email",
+ "17E7x9": "Your admin has disabled Google sign-in. Use your email address and password to sign in.",
+ "17KS76": "Error sending download link. Please try again later.",
+ "17ZjHn": "Get help",
+ "18W/8V": "How do I change the owner of a shared folder?",
+ "197PGq": "Filter",
+ "19Hg2E": "Your free trial of {dropbox_trial_plan_name} will end on {trial_end_date}. If you don\u2019t cancel your free trial by then, you will be billed for your {dropbox_trial_plan_name} subscription.",
+ "19uCw8": "Requesting\u2026",
+ "19zpyC": "{total_count,number} moved to {target_team_name}",
+ "1AfV4S": "{dropbox_enterprise} is a productivity platform equipped with all of the core capabilities of {trademark_business}, plus advanced security and control, enhanced customer support, and customisation to meet your large organisation\u2019s needs.",
+ "1BBNSR": "Upload as overdue today at {time}",
+ "1BL+ll": "per year",
+ "1BUSUh": "Control access to your transfer with a password",
+ "1Bavz9": "{count, plural, one {Members of the containing shared folder with the link can view this file. Expires in {count} day. Downloads disabled.} other {Members of the containing shared folder with the link can view this file. Expires in {count} days. Downloads disabled.}}",
+ "1C5I6H": "Font",
+ "1CRuUi": "{region}, {country}",
+ "1CbSSJ": "Uninvited {email}.",
+ "1ClliE": "Set for how long members can stay signed in to dropbox.com.",
+ "1Cwbs7": "Re-invite people from your Dropbox trial",
+ "1Dr11y": "Most times shared",
+ "1E7IYf": "Grid view",
+ "1EXUnv": "Choose a folder from your personal Dropbox",
+ "1EdKf8": "Create report?",
+ "1EdolK": "{count, plural, one {Members of the file with this link can edit. Expires in {count} day.} other {Members of the file with this link can edit. Expires in {count} days.}}",
+ "1EuUat": "Choose an account",
+ "1F4EvZ": "{name} is a member of this team folder",
+ "1G2/ot": "A virtual gathering place for your team",
+ "1GlT+b": "Watermarking is not available for this file type.",
+ "1HZx8x": "Add a note if you like",
+ "1I1DA5": "This will free up one of your licences, so you can use it to invite someone else to the team or to invite {username} again later.",
+ "1I2L6w": "Uploaded {num_files} files",
+ "1I9VM9": "With {trademark_business}, you get even more security and collaboration features for your team. These additional features include {vacuuming_policy_max_days}-day version history, more space, email and chat support, and admin management tools for better control and visibility. Compare {trademark_business} and {dropbox_plus} here.",
+ "1IJ7Sb": "Manage access",
+ "1Ig/ZV": "You won\u2019t be charged until after your free trial ends on {trial_end_date}.",
+ "1J71be": "What\u2019s shared outside your team?",
+ "1K3VHR": "Couldn\u2019t upload, but we think it was a one-off. Try uploading again.",
+ "1Khxic": "Sharing and collaboration",
+ "1LPmMh": "Set a 6-digit code to protect your vault on all devices.",
+ "1LrwxL": "Simplify Dropbox sign-in by letting members use their company usernames and passwords",
+ "1M1hps": "This transfer has expired",
+ "1MWg58": "New folder",
+ "1MfPsh": "Manage partner permissions",
+ "1MiQRb": "\u2318 + v",
+ "1N3MWv": "Choose if your team has a lot of files. 'Online only' files sync faster and save hard drive space.",
+ "1NI2g/": "This file is part of a shared folder:",
+ "1NI7Ix": "Limit the number of active dropbox.com sessions a member can have at the same time.",
+ "1NiPiC": "Open in web browser",
+ "1O8skO": "People we think you work with have joined these teams",
+ "1OE/B8": "Update Smart Sync settings?",
+ "1ONP6O": "The Cadastro de Pessoas F\u00edsicas (CPF) is the Brazilian individual taxpayer registry identification number. It has 11 digits and can be found on your CPF card. It consists of numbers, dots and a dash, like the following example: 100.001.101-00.",
+ "1Oclqa": "If you continue, you won\u2019t be able to access this folder any more.",
+ "1P05hM": "That isn\u2019t a valid phone number.",
+ "1P57nr": "Photo deleted.",
+ "1PIid1": "A screen capture demonstrating how the interface appears on multiple devices. A smaller window to the bottom left represents a mobile version of the interface, layered above the larger desktop interface. Both windows are simultaneously following a comment discussion about the same image. The image discussed is an abstract 3D rendering of many different geometric objects pulled together.",
+ "1PU8LZ": "This folder has been successfully removed from your Dropbox.",
+ "1Q8msV": "Slack",
+ "1Qe9ra": "Reset passwords",
+ "1SPrvR": "Country",
+ "1SUV8i": "Content calendar",
+ "1Tf/Ua": "Appropriate Safeguards.",
+ "1U1K3q": "You can\u2019t sign in as yourself or as a limited member",
+ "1URVg+": "OK",
+ "1UW9bf": "Content management",
+ "1VHHGq": "You\u2019re cancelling your scheduled plan change. Your Dropbox {plan} plan will be renewed on {date} and you will be billed yearly.",
+ "1VxEYe": "Step 4 of 4: Confirmed",
+ "1WAs6E": "You can create a shared folder",
+ "1WE8Pm": "It\u2019s easy to migrate your existing{br}account to {trademark_business}",
+ "1WKHbc": "Adding default background...",
+ "1WRife": "Set up Dropbox",
+ "1Wj6kh": "Cancellation",
+ "1WkwVp": "Your plan includes as much space as you need and finite API calls.",
+ "1X+OZo": "View all alerts",
+ "1X+vxM": "Cancel",
+ "1XVKkQ": "You\u2019ll be signed out after unlinking for your security.",
+ "1XbVf0": "Dismiss this team suggestion",
+ "1Y/1oL": "Because this file is already open in {editor_with_lock_string}, you can only see updates and edit there.",
+ "1Y/n6I": "How to use Selective Sync",
+ "1Y5o16": "Unsubscribe from notifications",
+ "1YLVkG": "We just sent a password reset email to {email}. Please check your inbox.",
+ "1YVH8j": "You renamed this file",
+ "1YhtdU": "Re-add shared folder",
+ "1Yl7QT": "Last worked together on {lastShareDate,date,medium}",
+ "1YrAwq": "Your title",
+ "1YrEPE": "\u201c{filename}\u201d will be restored to the version from {date} at {time}. All other versions will still be saved.",
+ "1ZKVFi": "View report",
+ "1ZUfS7": "Next",
+ "1aBDFR": "Your Dropbox {plan_name} + extended version history plan will be renewed on {date}. Your current {billing_schedule} total is {total}.",
+ "1aPcBO": "Remaining out of purchased",
+ "1agNEP": "Verification failed. Please create a new ticket.",
+ "1b/4p6": "Send",
+ "1b4E6m": "Upload an HTML file",
+ "1b8MJI": "You don\u2019t have any recently deleted files",
+ "1bm1le": "Disposal type",
+ "1cIg3V": "Team folders can\u2019t be moved.",
+ "1d4aLL": "Failed to retrieve tasks.",
+ "1d7dxH": "View version history",
+ "1dRSXy": "Please enter a valid VAT number, e.g. {examples}.",
+ "1dh2zK": "We were unable to complete your request.",
+ "1esgGu": "The Dropbox app hasn\u2019t finished installing on these devices. Continue the installation on these devices to link them to your account.",
+ "1fEHs1": "Enhance remote collaboration with Zoom instant meetings and video recordings.",
+ "1gJgsp": "Your team members will have access to this space and the content here. You can choose who gets to see what. You\u2019ll also have your own folder for personal files.",
+ "1gSGkC": "Dropbox needs to verify your email address {email} before you can invite friends. It\u2019s as simple as clicking the link in the verification email we send you.",
+ "1hGS2L": "What type of work do you mostly do?",
+ "1hGxus": "Security features",
+ "1hPYjL": "PDF",
+ "1hfiN5": "How can I look up a Dropbox charge on my credit card statement?",
+ "1hjn++": "Here\u2019s where you can add and remove team members. You can search for people easily and grant them admin permissions.",
+ "1hptrF": "Post message as comment",
+ "1iBlE/": "Team",
+ "1iU3Ew": "Add your billing info to continue merging {team_name} into your team.",
+ "1ip4L6": "In a meeting",
+ "1ixDw1": "Enter the app key or ID to manage permissions for an app that is not in App Centre. Find app key or ID",
+ "1j0xX5": "handshake illustration",
+ "1jKW0T": "Peace of mind with remote wipe for lost devices",
+ "1jrD5R": "Any folder",
+ "1k2tIw": "Old state",
+ "1k4YW6": "Members can sign in with their Google or Dropbox account credentials. Google and Dropbox email addresses must match for sign-in to work",
+ "1kA3hZ": "Apps menu",
+ "1kCq9A": "or",
+ "1kPebb": "Link as many devices as you need to",
+ "1l3tlC": "Deactivate",
+ "1l72c9": "Send request to join",
+ "1l7IZN": "We couldn't find any organisation contacts in your Google Directory",
+ "1l7kG/": "Renewal date",
+ "1lJuQj": "Our business couldn\u2019t justify the pricing of {trademark_business}",
+ "1lbOca": "{date} by {app_name}",
+ "1mC/kk": "Close",
+ "1mWVTt": "8 hours",
+ "1mXSwR": "Your logo should be no more than 10 MB in size.",
+ "1mh6jZ": "{trademark_business} users can expect a response within 12 business hours.",
+ "1mkOQ2": "The owner of some of these shared folders is a member of another team.",
+ "1n+LVR": "Watermark",
+ "1nth2+": "Add licences",
+ "1oUfOH": "Requests to join",
+ "1oYZCT": "You",
+ "1ocGM7": "Keep separate from {team_name}",
+ "1os9Gt": "No deleted files found. Try adjusting your filters",
+ "1p7ffE": "Download all",
+ "1q1f/B": "Search for {name}",
+ "1qAEQn": "{sender_name} wants to share the file {content_name} with you.",
+ "1qV3DH": "Disk image",
+ "1qn4OK": "Invite to join",
+ "1qtXNM": "Continue",
+ "1r0sFK": "Error sending message",
+ "1rEKxF": "Anyone in the {trademark_business} team with this link can view the file.",
+ "1rXd1Y": "You have successfully verified {domain}. Onboarding accounts with @{domain} email addresses will now be faster and easier.",
+ "1s2pn+": "Reply",
+ "1sAXgU": "There\u2019s already a hold with that name. Try another one.",
+ "1sq9sN": "Choose someone to see what they can access",
+ "1sw4zF": "Use this template with pre-defined columns, and fill in your member data.",
+ "1tC4ob": "{count, plural, one {Adding member...} other {Adding members...}}",
+ "1tKV7t": "Drop file to upload",
+ "1tQ+LJ": "Enter email address",
+ "1thbfR": "Everything teams need, all in one place",
+ "1tiqch": "Not a team member",
+ "1tjeem": "This member will be signed out of dropbox.com immediately so they can set up two-step verification again.",
+ "1u2sgq": "Get {space} of space to store and share just the essentials",
+ "1u9Ft+": "Easily send requests for signatures and sign your most important agreements securely, without leaving Dropbox",
+ "1uAucQ": "Token could not be copied. Please copy it manually.",
+ "1uCzqL": "Dissatisfied",
+ "1uP4/f": "We tried calling {phoneNumber} but there was no answer",
+ "1ukbKk": "in progress",
+ "1vNkL5": "{count, plural, one {You're inviting {count} person to the {team} Dropbox and adding them to your plan.} other {You're inviting {count} people to the {team} Dropbox and adding them to your plan.}}",
+ "1vPVlD": "Multi-segment",
+ "1vlc0Q": "Work on this file in other apps. Updates you make will be saved automatically back to Dropbox.",
+ "1vvJ0r": "Import",
+ "1w+T31": "Address",
+ "1wBEXr": "Unfollow",
+ "1wXGkc": "Account email",
+ "1wfCf2": "Make new files local. Choose if you often access files offline.\nLocal files are downloaded to your hard drive.",
+ "1wjuAH": "Are you sure you want to disable {app_name}?",
+ "1wsJLb": "Explain what will be in this export",
+ "1wtgq1": "Confirm cancellation",
+ "1x2TA/": "Enterprise console",
+ "1xCLQd": "Business critical",
+ "1xgfi1": "{current_page_number} of {total_number_of_pages}",
+ "1yG6Np": "Reminder emails sent",
+ "1yGfcn": "Everyone in your team will be able to edit top-level folders.",
+ "1yRjbu": "Team member folder, {alt}",
+ "1yYk7o": "Done",
+ "1yeUGA": "Active",
+ "1z4jwW": "You don\u2019t have any company-managed groups currently. ",
+ "1zC4ih": "Folder created.",
+ "1zYtIT": "How do I delete the Dropbox folder from a lost or stolen device?",
+ "2+4bCg": "Dropbox is recovering files",
+ "2+Fi7z": "Email notification preferences successfully updated.",
+ "2/+46g": "Connected",
+ "2/IxPb": "{index}. Enter payment details",
+ "2/asYA": "Your edits won\u2019t be saved.",
+ "2/fjiQ": "There was an error sending the link",
+ "20q1Pn": "{count, plural, one {Deleted {count} item.} other {Deleted {count} items.}}",
+ "21PudV": "Set the default for apps listed in App Centre. New apps in App Centre will also adopt this default permission (does not affect Custom apps). This will not affect the permissions for Other apps.",
+ "21kI93": "Deletion may take longer to complete. Please check back later.",
+ "22rRvZ": "You\u2019re losing access to the following features:",
+ "237uNo": "Let\u2019s double-check that everything looks OK",
+ "23A9X9": "Remember that, after downgrading to {trademark_basic}, your storage space quota will be reduced to {free_quota} (plus any bonus space earned previously).",
+ "242oct": "There was a problem with your request",
+ "24uEco": "Email address verified. Now download the free desktop app",
+ "258ie2": "or create an account",
+ "25Cg8v": "The report will be saved as a CSV in a folder called Dropbox Business reports. We\u2019ll email you when the report is ready.",
+ "25txb6": "Access the admin console to monitor activity, connect devices and audit sharing activity",
+ "261J2J": "All time",
+ "271VG4": "We\u2019ve detected that your Internet is not fast enough to download these files.",
+ "27Ivr1": "Loading all analytics information",
+ "27UqZZ": "Your plan will change from {dropbox_family} to {dropbox_basic}",
+ "27eLE5": "Prices listed for {trade_mark} {plan} plan.",
+ "283pqS": "Tap 'Open in Chrome' or 'Open in Safari'.",
+ "288sXZ": "You\u2019re not syncing all of your personal Dropbox folders to this computer.\n You can make those folders online only with Smart Sync.\n You'll then be able to access them easily and still save hard drive space.",
+ "28Dqqi": "Brainstorm ideas",
+ "28PBVj": "Most people use their company, department or team name. This is visible to everyone in your account.",
+ "28T4FU": "Continue anyway",
+ "28ZQpX": "You viewed",
+ "29Dcc3": "You shared this file in {slack_conversation_name}",
+ "29Gyx1": "Members have {emailDomain} emails",
+ "2A+wkW": "Cancel",
+ "2ADqSr": "Shared on",
+ "2At1kB": "Merge into primary team",
+ "2B50nF": "Name of file, folder, Paper doc or showcase",
+ "2BYpHw": "View backup codes",
+ "2Cbv/y": "Try again",
+ "2EBHb7": "Resend email",
+ "2Eulh0": "Name",
+ "2F2ibz": "Admin permissions added to {display_name}",
+ "2F9pc2": "Replace the {error} character with something else",
+ "2FDuGI": "New password",
+ "2FTkI8": "Centre",
+ "2G4Vro": "8-digit code",
+ "2GKKUl": "Spam",
+ "2GLj8D": "Want Dropbox for your team?",
+ "2GNo9w": "Done",
+ "2GZDjz": "{price} {currency}",
+ "2IZMeS": "Unable to load page. Please refresh the page to try again.",
+ "2Ifi1r": "You shared this file in Slack",
+ "2Iwxq2": "Easy-to-use team management and collaboration tools",
+ "2J51BB": "Close web session",
+ "2JCh/k": "Yes! Please contact our sales team for more information.",
+ "2JGqoT": "Check out Dropbox Professional",
+ "2Kunae": "You added this file to the {card_name} card in {list_name}",
+ "2LE9ME": "Team",
+ "2LVZs5": "Thanks for adding stuff to Dropbox! Just so you know, you\u2019re getting close\n to your space limit. Find out more about what to do if you\n run out of space.",
+ "2M21cz": "Clone",
+ "2MBjAy": "Select none",
+ "2MVjgz": "How will you use Dropbox?",
+ "2MiDFI": "Storage",
+ "2MlcKk": "Sent to {recipient} and {num_others} others.",
+ "2MwslZ": "Connect your calendar to view upcoming meetings",
+ "2NCIHF": "Web session control",
+ "2NDCop": "Too many attempts. Please try again later.",
+ "2NFHH7": "{name} renamed {single_item_name_prev} to {single_item_name_next} in {folder_path}",
+ "2NHCHm": "Paper is free and available to all Dropbox users.",
+ "2NPQhg": "Credit card. We accept {payment_methods}.",
+ "2NTBgG": "Hmm\u2026 it looks as though your browser is not secure",
+ "2Nkf+7": "Dropbox helps your team with tools that bring everyone\u2019s work together in one focused place. Access and share files, coordinate projects with colleagues, and communicate alongside everyone\u2019s work.",
+ "2NsS1B": "upload to your personal Dropbox",
+ "2OHTp6": "Person",
+ "2OK8bf": "Send, request and save signatures in Dropbox.",
+ "2OYmJo": "Congratulations on completing your free trial! To keep {trademark_business}, add your billing info now.",
+ "2Oobwp": "Shared on Dropbox",
+ "2P31GH": "Thanks for verifying your email address {email}. Your {team} account has been changed successfully.",
+ "2PB639": "Try a name or email address",
+ "2PSC7f": "Copy to clipboard",
+ "2PV9Cl": "Back",
+ "2Pd+4t": "Or",
+ "2PqJRP": "Send verification email",
+ "2PvGH3": "Select Dropbox folders",
+ "2QLVpI": "There\u2019s no need to make any changes to your account, or move any files or folders, when you purchase or join a {dropbox_family} plan. Your plan will change to {dropbox_family}, but your account profile, settings and files will remain the same. However, only the {trademark_family} manager can view or change billing info for the plan, so if you previously had a {trademark_plus} or {trademark_pro} subscription, you may no longer have access to billing information.",
+ "2QYPK/": "{br}{folderName}: Open \u201c{policyName}\u201d policy",
+ "2QgYHO": "File recovery and version history",
+ "2Qjoim": "Since it\u2019s been a while, please enter your password again.",
+ "2Qzpbt": "You\u2019ll still keep contacts you imported, and new contacts will be added when you share.",
+ "2R9OWG": "Events & webinars",
+ "2RQQWB": "Manage projects, content and people easily",
+ "2RZCCJ": "Don\u2019t have a Dropbox account?",
+ "2RxOOZ": "Video details",
+ "2SNpjk": "{count, plural, one {We found {count} person your team works with} other {We found {count} people your team works with}}",
+ "2Sqn0x": "Viewed just now",
+ "2T0Q/w": "API",
+ "2T0ULp": "Not added to Dropbox",
+ "2TkLHf": "recommended",
+ "2UPXBg": "Cancel",
+ "2Uk2E2": "Other",
+ "2V+4dT": "When members lock editing for a file, you\u2019ll be able to unlock it here.",
+ "2W3ty2": "Cannot sign in to an inactive team.",
+ "2W7OO1": "Use the Dropbox apps to get work done without the Internet or a computer.",
+ "2WiFdV": "Or email me the link",
+ "2WlplE": "{count, plural, one {Anyone in your {trademark_business} team with this link and password can edit the file. Expires in {count} day. Downloads disabled.} other {Anyone in your {trademark_business} team with this link and password can edit the file. Expires in {count} days. Downloads disabled.}}",
+ "2WooKD": "Reseller support",
+ "2X0e4z": "Show",
+ "2X3yx6": "Change",
+ "2XVSZh": "Exit Vault",
+ "2Y3n9L": "Bottom left",
+ "2Y6TNk": "{trademark_business} includes:",
+ "2YO+Wb": "{count, plural, one {You do not have permission to permanently delete this item.} other {You do not have permission to permanently delete these items.}}",
+ "2Ydam9": "Security check completed",
+ "2Ys69n": "Strike up a conversation without skipping a beat",
+ "2Z8fa/": "Check your inbox to verify your email address",
+ "2ZDGrM": "Save in Dropbox",
+ "2ZK3bH": "Share",
+ "2aNoUL": "Apps",
+ "2afQgr": "It looks as though {email} has been added to another Dropbox team. You can still invite them to your team using a different email address.",
+ "2arYUZ": "Company logo",
+ "2b/+g/": "{count, plural, one {{name} rolled back {count} item in {folder_path}} other {{name} rolled back {count} items in {folder_path}}}",
+ "2bDlQT": "Close modal",
+ "2bSlge": "Anyone in the {trademark_business} team with this link and password can edit the file. Downloads disabled.",
+ "2c2IWX": "Customise design",
+ "2c6DhA": "This account is a member of the {team_name} Dropbox account.",
+ "2c8AqX": "{count, plural, one {Anyone in the {trademark_business} team with this link can edit the file. Expires in {count} day. Downloads disabled.} other {Anyone in the {trademark_business} team with this link can edit the file. Expires in {count} days. Downloads disabled.}}",
+ "2cBZku": "",
+ "2cWry4": "{name} restored a previous version of {single_item_name}",
+ "2cbf2n": "Assigned to: {agent_name}",
+ "2ciDqQ": "Back to top",
+ "2cp6D3": "Check deleted files",
+ "2crgUP": "Keep it secure",
+ "2d0cmy": "Confirmation image",
+ "2dhZNU": "A screen capture demonstrating the Smart Sync feature of {dropboxProfessional}. A user selects six files and folders. A contextual menu appears, and the user interacts with the Smart Sync options to remove the files from the local computer and make them available online only.",
+ "2dpvY4": "Slides",
+ "2eiFRo": "Invite team member",
+ "2ejttE": "Anyone who has installed the extension on their computer will be signed out of Dropbox.",
+ "2ejwnd": "To edit this file, we need to verify your email. Check your inbox.",
+ "2er2JB": "How to \u2192",
+ "2eyJvg": "Secondary email address",
+ "2fR9DX": "Sign in",
+ "2g1TQJ": "Share files",
+ "2gA+c4": "{count, plural, one {You and {count} other viewed} other {You and {count} others viewed}}",
+ "2gXc1w": "Try Dropbox for free",
+ "2gnq15": "Folder name",
+ "2gxCHH": "Enter names or email addresses",
+ "2h/hqK": "Add admin permissions",
+ "2h4tij": "Unsharing {folder_name}\u2026",
+ "2hKYsA": "Link code",
+ "2hfya7": "Cancel",
+ "2hhEOh": "Two-step verification settings reviewed",
+ "2hwlVq": "Update security settings",
+ "2i3aIw": "Smart Sync won\u2019t work",
+ "2i6CWC": "Get desktop app",
+ "2iSDDx": "Yesterday",
+ "2imYtb": "Can\u2019t convert account because they haven\u2019t joined the team",
+ "2iucH+": "Skip",
+ "2jPht+": "Construction",
+ "2jcz3e": "Sorry, something went wrong.",
+ "2kRd9Y": "Can edit",
+ "2ki6dJ": "Members can share within the team only",
+ "2krq2q": "Changed {name}'s email address to {email}",
+ "2l1TnV": "Credit card",
+ "2lIuzs": "Why Dropbox?",
+ "2ln1p6": "Billing period",
+ "2mSW1h": "Plus is required to use {DROPBOX_VAULT}",
+ "2mi2Eu": "Google Play",
+ "2nDdbQ": "Search domains",
+ "2nFNUx": "To finish linking your computer to {email}, go back to the Dropbox installer and enter the following link code:",
+ "2nmvfV": "Updating",
+ "2nr+qs": "Using another service",
+ "2oSolp": "I don\u2019t need the features on this plan",
+ "2ohcMK": "{UsersWithAccess} will have access to team folders.",
+ "2ozYzV": "and {num} more...",
+ "2p5Huq": "Let\u2019s discuss",
+ "2q+G4r": "Anyone with this link can view the folder. Downloads disabled.",
+ "2qougZ": "{available_licenses} remaining",
+ "2r0OTI": "Choose your {trademark_business} plan",
+ "2rL0+o": "Video",
+ "2sNkep": "Home",
+ "2tVWPi": "Upload successful",
+ "2ti+Ua": "You must give admin permissions to someone else",
+ "2tiJu+": "Now click Open preferences, then click Allow and Smart Sync will be enabled.",
+ "2tjj6t": "Switch accounts.",
+ "2tq60j": "Recommended for you",
+ "2u6miF": "Search items",
+ "2u9ULB": "PAPER TEMPLATE",
+ "2uJOpz": "Archiving {folder_name}\u2026 Archiving can take up to a few hours.",
+ "2v0dx6": "{name} unshared {single_item_name}",
+ "2vYe0V": "Least recent",
+ "2vcMJQ": "Received requests",
+ "2vjhN9": "Reconnect {serviceName}",
+ "2vkcFZ": "Send reminder",
+ "2w0ELg": "Description",
+ "2wQgFw": "Couldn't copy the link. You don't have permission to create a link to this content.",
+ "2wRbuB": "Get app",
+ "2wa/i3": "From",
+ "2was5Q": "Go to HelloSign",
+ "2x0r3M": "Select all",
+ "2x6X5S": "Create transfer",
+ "2xT0mH": "Order summary",
+ "2xWk3Q": "Learn more",
+ "2xaRNX": "Members will join once they accept your invitation.\n You\u2019ll have to wait until they accept before getting everything set up for them.",
+ "2xeci1": "{name} removed {entity} from this file",
+ "2xi5y3": "Get your deleted files back, or delete them forever",
+ "2xkH2J": "Uninstall the Dropbox system extension?",
+ "2xlNIE": "Your new password should be at least two bars:",
+ "2yKYY7": "Select Create new doc or the plus sign ( + ) in the top right-hand corner to get started.",
+ "2ySDAA": "Paste",
+ "2ycril": "We were unable to download {failedFilesToShow}",
+ "2yicsb": "File is over the max file size.",
+ "2ykbSd": "The {team_name} shared workspace is almost full",
+ "2yp43H": "This album will be saved instantly to your {team_name} Dropbox and downloaded to all computers linked to your {team_name} account.",
+ "2z+WWR": "Create, review and manage docs with your team in a flexible workspace.",
+ "2zDZtR": "On your computer",
+ "2zRNW+": "Satisfied",
+ "2zkZ/z": "Add payment method.",
+ "2zow3W": "Create, edit and organise documents, spreadsheets and presentations",
+ "3+170P": "To turn on, set new files to default to online only.",
+ "3+mqzE": "Anyone in your {trademark_business} team with this link can edit the file. Downloads disabled.",
+ "30+ciJ": "This lets members delete content from the company account permanently.",
+ "308lLd": "Back up your PC or Mac files automatically to Dropbox so your stuff is safe, synced and accessible anywhere.",
+ "30acpq": "Viewed",
+ "30bVmM": "Add a note",
+ "30dYHN": "Under Tracking prevention, select Off from the drop-down menu next to www.dropbox.com",
+ "30hchx": "Devices",
+ "30u0Yr": "Discard my changes",
+ "30vxYB": "A photo or avatar of {user_name}",
+ "316ii5": "When set to Partial, you\u2019ll need to manually choose members to gain access to Paper.",
+ "31Fc4k": "Confirm",
+ "31PRQk": "Send size",
+ "31vXEJ": "Release hold",
+ "31w6qR": "Owned by {name}",
+ "32IYx4": "left in your free trial",
+ "32pYJ5": "or sign up",
+ "33ZShg": "Pending members",
+ "33c2PH": "{space} of encrypted cloud storage",
+ "34LFfx": "Try file request",
+ "34M/6I": "Last 7 days",
+ "34cPai": "Better brainstorms, better ideas",
+ "34eyuX": "Default folder access",
+ "359sgS": "Pages",
+ "35MZFn": "This album will be saved instantly to your Dropbox and downloaded to all computers linked to your account.",
+ "35NLW6": "Anyone in your Dropbox team with this link and the password can view the file.",
+ "35NidE": "Watermarking is available on PDFs, PNGs, JPEGs and BMPs.",
+ "35lh1o": "Can\u2019t manage sharing. This item may have been moved or deleted",
+ "36Zcm5": "Note: This member merged an individual account with the {team_name} Dropbox account on {date}. They might have personal files in the account from before the merge. You can convert their account to an individual Dropbox Basic account instead.",
+ "36gqZd": "Enterprise",
+ "37bjta": "Unlock easy-to-use security controls",
+ "380IBo": "Turn off {alertName}?",
+ "38TMU/": "Online only (recommended)",
+ "38ZvV3": "Purchase summary",
+ "38o/9Q": "Marketing, Finance, Design, etc.",
+ "38w6eW": "On, red-eye reduction, return not detected",
+ "39gFed": "Your Dropbox Family plan is out of space",
+ "3AZL2G": "You\u2019ll need to sign back in if you want to access your Dropbox files on this device.",
+ "3AnJ7s": "Yes! Please contact our sales team for more information. To provide the discount, a sales rep will need a copy of your 501(c)3.",
+ "3B/95c": "Smart Sync works on Windows and Mac OS. Find out more about our system requirements",
+ "3BZJoW": "Sign out",
+ "3BjfWu": "Want to keep using {trademark_business} after {trial_end_date}?",
+ "3By4g3": "Align on where the product is heading. Centralise your roadmap and company goals to give everyone a sense of how things are moving along.",
+ "3C1nR3": "The folder name should have fewer than 255 characters",
+ "3Cpbx7": "Replace the / character with something else",
+ "3D23+8": "On",
+ "3D3su5": "Details",
+ "3DU4u6": "Access any files from your desktop, and use all of your team\u2019s favourite tools without switching between apps.",
+ "3Dgw+C": "View in folder",
+ "3Dhjn4": "Access pending",
+ "3Dhpy9": "Manage \u2013 and finish \u2013 team projects",
+ "3Dzboq": "Failed to re-link computer",
+ "3EEu7s": "The password of the account associated with this email address has expired.\n Please log in to this account and update the password before pairing.",
+ "3EKNmT": "Send files to a channel or in a direct message, directly in Dropbox.",
+ "3Ekixq": "Choose an account",
+ "3EqsN0": "Navigate back",
+ "3F63BL": "Public",
+ "3FYCwG": "Don\u2019t sync automatically",
+ "3FZtIc": "Manage tasks, track file updates and stay in sync with your teams and clients.",
+ "3FaBPM": "The watermark could not be saved because the file was moved or deleted.",
+ "3FlgyW": "Content",
+ "3G8Fme": "Last 4 digits of card number",
+ "3GavgK": "{index}. Set initial administrator account",
+ "3Gnn91": "Continue",
+ "3Gw/HG": "{serviceName} icon",
+ "3H2+TZ": "Hide deleted files",
+ "3H2ISU": "file transfer settings modal",
+ "3HBuWz": "{count, plural, one {Collaborates with {count} person in your team} other {Collaborates with {count} people in your team}}",
+ "3HPe+W": "Hi {user_fname}!",
+ "3Hpui2": "Inviting...",
+ "3I9Jjk": "From",
+ "3IGaSm": "Set up",
+ "3Ii0ZI": "Create a report of all activity for {member}. We\u2019ll email you at {email} when it\u2019s ready to view in your Dropbox.",
+ "3IxcSr": "Copying files\u2026",
+ "3J1+vu": "{count, plural, one {{count,number} email was already invited by another team: {emails}} other {{count,number} emails were already invited by another team: {emails}}}",
+ "3J1lxt": "Dropbox \u2013 {folder_name} \u2013 Simplify your life",
+ "3J5wd7": "Couldn't save changes. Try again, or contact us for help.",
+ "3JnVTZ": "Local",
+ "3KCxAM": "Opacity",
+ "3LFQXq": "Have you seen something inappropriate in Dropbox?\nLet us know and we will take a look.",
+ "3LNfOq": "Which Dropbox should these files go in?",
+ "3LWg9S": "The following characters are not allowed: \\ /",
+ "3LcPUk": "Relevance",
+ "3M6nrm": "Start a vault with files from your Dropbox",
+ "3MFWEQ": "With {proSpaceLongFormRounded} and enhanced Smart Sync, you can keep everything in the cloud without taking up all your hard drive space.",
+ "3MRvRq": "Deleting \u201c{group_name}\u201d will cause all of its members to lose access to folders that have been shared with the group. You will not be able to undo this.It might take a little while for deleted groups to be removed from all of their shared folders.Are you sure you want to delete the group?",
+ "3MhXFy": "To install Dropbox on this device, upgrade today",
+ "3Myz/Y": "Give this policy a unique name",
+ "3N0zUC": "Learn how to manage cookies in Safari.",
+ "3NBnvs": "Building a sculpture",
+ "3NfzQq": "{name} removed {entity} from this file",
+ "3O/G1o": "It looks as though you\u2019re using a phone",
+ "3O3Xv8": "{count, plural, one {{count,number} day} other {{count,number} days}}",
+ "3OBX0q": "See stats, such as views and downloads, on Dropbox.com.",
+ "3ONogx": "You can also cancel your plan.",
+ "3OQZXv": "Stay on top of what team members are doing. Manage team to-dos with task assignments, due dates and reminder notifications.",
+ "3OZgJG": "You shared this file with yourself",
+ "3Ol37w": "Start by inserting your security key into a USB port. Learn more",
+ "3OnFd5": "Mark as read",
+ "3P9kqi": "Dismiss",
+ "3PyIRT": "For effortless backups, get the app",
+ "3Q0K06": "You don\u2019t have access to permanently delete the content.",
+ "3QRiaZ": "The member has {num_api_apps} API apps that will stop working for their users",
+ "3QemXP": "Changes to docs I follow",
+ "3QmSF8": "Folder settings",
+ "3RMNFv": "Coordinate project work in one place",
+ "3Rad5Q": "30-day trial",
+ "3RkPzL": "Capturing device",
+ "3Sb6Ws": "{name} will be saved to the {cdm_tmf_name} folder in your {team_name} Dropbox account.",
+ "3SptPr": "Files",
+ "3SvVS/": "You\u2019re not being charged at the moment. Add your billing information to keep using {trademark_business} after your trial has ended.",
+ "3TmIRv": "Adding a Zoom meeting",
+ "3Tt6Qx": "Binder",
+ "3TuG0e": "Product",
+ "3U9uSN": "{count, plural, one {Get {count} more day free} other {Get {count} more days free}}",
+ "3Uyp6Q": "Fixed session length",
+ "3V2V21": "Support tools",
+ "3VEYDa": "Drag and drop, rename, and create new folders from your browser",
+ "3VVFir": "Link not available. To share, invite specific people.",
+ "3Vujln": "2 years",
+ "3WH0jD": "Another team has already verified {domain}",
+ "3X9Vpx": "If you purchased your subscription through Google Play, you can cancel a Dropbox subscription or free trial by following these steps:",
+ "3XZmic": "Transfer started",
+ "3YA4ZU": "Scheduled add-on change",
+ "3YUerL": "or buy now",
+ "3YjVOS": "Processing",
+ "3ZaZTQ": "Backup",
+ "3ZoXVs": "Your {duration}-day free trial starts today. Within those {duration} days, if you change your mind, you can cancel your account and you won\u2019t be charged. After your free trial, you will be charged {plan_price} {period} until you cancel your subscription. Previous charges won\u2019t be refunded when you cancel unless it\u2019s legally required.",
+ "3aAG6f": "Choose a capture setting for {domain} only (no other domains will be included in this change):",
+ "3aCCWZ": "Office/administrative support",
+ "3aIAq6": "You won\u2019t get an alert if a member signs in from a high-risk country.",
+ "3aWThs": "Sign in to contact Dropbox customer service",
+ "3aasJ7": "Verify",
+ "3abxRz": "Something didn\u2019t load correctly",
+ "3bUJAd": "Combining...",
+ "3c3ixc": "To retouch",
+ "3cpfb+": "Task unassigned",
+ "3d639L": "Move folders",
+ "3d9jJg": "You cannot move your own account. Ask another admin to move it for you.",
+ "3dFs30": "Last updated on {ts,date,::MMMdd} at {time,time,::hhmm}.",
+ "3dQivP": "Set as default",
+ "3dc86o": "Now click Open preferences, then click Allow to enable Smart Sync.",
+ "3devqr": "We suggest creating a personal account to keep personal files separate",
+ "3e7BYw": "This lets members send file transfers to people inside and outside your team.",
+ "3eet8m": "Create activity report",
+ "3enZcD": "Team admin, user management admin, support admin",
+ "3erukr": "What\u2019s your job title?",
+ "3f5AB6": "This is a work-related Dropbox account and your admin can access what's in it.",
+ "3gzYYX": "Keep {trademark_business}",
+ "3h4g+d": "Enter your institution's domain and you're connected.",
+ "3hCG9P": "See plan info",
+ "3hOA04": "We were unable to post the comment.",
+ "3hPinQ": "{name} edited this file",
+ "3hdzlk": "Get PIN",
+ "3hrEdL": "Syncing that many files in one go will take a long time. We recommend that you sync only the folders you need right now.",
+ "3iLFFe": "or learn more",
+ "3iiv+5": "Team folder users",
+ "3j4ino": "If you have any questions, please email invoices@dropbox.com.",
+ "3j97WR": "It\u2019s probably just a one-off. Reload comments or try refreshing the page.",
+ "3jNn+n": "Get administrative control",
+ "3jUXO5": "Seller name",
+ "3jdOlz": "Anyone with the link and password can view this folder. Downloads disabled.",
+ "3jj0uk": "What if the recipient already has Dropbox {trademark_plus}?",
+ "3kB3s4": "More menu",
+ "3kC4Gu": "Disable '{'service_name'}'?",
+ "3kb11u": "The username portion of the email address (the portion before the @: {username}) is invalid.",
+ "3kwfGX": "{count, plural, one {{count} minute left} other {{count} minutes left}}",
+ "3lXUws": "All of your work, where and when you want it",
+ "3lo4HE": "Your {primary_label} Dropbox was successfully installed. Now you can add your {secondary_label} Dropbox.",
+ "3lp5F0": "\u2318 + {key}",
+ "3lvyoj": "Google Directory settings",
+ "3lwAEq": "or",
+ "3mCzgT": "Make all Dropbox files online only",
+ "3mnt4h": "mobile screenshot",
+ "3nL8Ut": "Billed monthly:",
+ "3nXOYX": "Create, edit and share Google Docs, Sheets and Slides in Dropbox.",
+ "3oFPUF": "Accept invitation",
+ "3oRjDD": "Test the latest features and give feedback to the Dropbox team",
+ "3onAtc": "{plan_name} {downgraded_text}",
+ "3oqoYo": "OS",
+ "3ozn34": "{to_email} was given access, but you\u2019re signed in as {user1_email}.",
+ "3pDIyO": "Get work done, with or without the Internet.",
+ "3puWNW": "Are you sure you want to cancel?",
+ "3pzlxq": "{count, plural, one {Decline request} other {Decline requests}}",
+ "3q0V1V": "{count, plural, one {We couldn\u2019t move {count} folder. Please try again later.} other {We couldn\u2019t move {count} folders. Please try again later.}}",
+ "3q4I6G": "HIPAA Business Associate Agreement",
+ "3qW+D4": "To continue, sign in to Dropbox.",
+ "3qaRMB": "Here are all of the photos from our recent holiday to Hawaii and a few to-do items to prep for the photo book!",
+ "3qoPt1": "Unknown",
+ "3qoh5F": "Send link",
+ "3rGR/m": "Membership approval",
+ "3rIjaZ": "Open",
+ "3rKACV": "{count, plural, one {{count} person asked to join {trademark_business}} other {{count} people asked to join {trademark_business}}}",
+ "3rgkX/": "Member folder usage",
+ "3tGPpn": "Now add your {secondary_role_label} Dropbox",
+ "3tRkOA": "{payment_description}, exp: {expiration_date}",
+ "3uDvZ6": "{storage} of encrypted storage",
+ "3uVrzZ": "Send large files easily with this safe and secure extension from Dropbox.",
+ "3uYwiW": "Add text",
+ "3ux07n": "{member_name} can still edit this file",
+ "3vOlVE": "Selecting this option might add users to the exceptions list.\n Settings will be processed after you click 'Apply changes' and may take up to 30 minutes to be implemented.",
+ "3vyqP8": "Current policy: {policyName}",
+ "3x4c1h": "Get started again with {trademark_business}",
+ "3x8kAK": "{count, plural, one {Add licence} other {Add licences}}",
+ "3xAi9D": "Download",
+ "3xdKPy": "Enabled",
+ "3xenFr": "Not dismissible:",
+ "3yCzsM": "upload to your {team_name} Dropbox",
+ "3yTSMD": "Switch versions of {trademark_business} to merge",
+ "3yV9+w": "Slack",
+ "3ypCXN": "Expires on {date,date,::MM/dd/yyyy}",
+ "3z459e": "Please select your PayPal account.",
+ "3zNBfK": "Illustration",
+ "4+3wxk": "{count, plural, one {{name} restored a previous version of {count} item} other {{name} restored a previous version of {count} items}}",
+ "4+hkud": "Dropbox Paper is a shared working doc made for creativity. Invite your team and build something amazing together.",
+ "4/2reX": "External sharing details",
+ "4/RbBc": "Use a different payment method",
+ "4/SGQ1": "Get new address",
+ "4/u0CZ": "{name} edited {single_item_name} in {folder_path}",
+ "4/v8L5": "{total_users}x users, {total_storage}",
+ "40+jh0": "Unlink all users",
+ "40/t5g": "Then you can use it to invite 1 member.",
+ "400iSN": "The folder \u2018{folder_name}\u2019 has been deleted",
+ "40IDtd": "Product spec",
+ "40nlyS": "Updating...",
+ "40pB5E": "Please enter a valid team name.",
+ "417qVe": "View all results for {query} in {current_path}",
+ "418g+p": "Selected file",
+ "41cwbJ": "Group by:",
+ "427Y7K": "The steps below will teach you how to get the most out of your Dropbox. Finish at least five of them and we\u2019ll give you a reward!",
+ "42dGGq": "Find what you need fast",
+ "42g3dj": "No end date",
+ "42ml+R": "Download content",
+ "42yYLf": "Used {ago}",
+ "430h7a": "recommended",
+ "43c+pc": "A .pem file security certificate supplied by your identity provider.",
+ "43dQim": "Keep projects moving with a commenting system that lets anyone inside or outside your team add feedback to any file.",
+ "43r0kZ": "Close this window and return to the Dropbox desktop app to continue",
+ "44Ky+Q": "Rename file",
+ "459QXT": "{percent_uploaded}{percent_symbol} uploading...",
+ "45XRF8": "Delete selected file(s)",
+ "45ZiLf": "Send",
+ "45l3oV": "{count, plural, one {Members of the folder with this link can view. Expires in {count} day. Downloads disabled.} other {Members of the folder with this link can view. Expires in {count} days. Downloads disabled.}}",
+ "45mmhe": "The default language for this campaign. Base locales other than English do not support translations.",
+ "46AtTv": "Still working...",
+ "46Fhvj": "Paper mobile devices",
+ "46fQWy": "Do you have a question or issue?",
+ "46m+Cy": "Secure sensitive docs{br}in Vault",
+ "46onFW": "{count, plural, one {You edited {count} item in {folder_path}} other {You edited {count} items in {folder_path}}}",
+ "47AlCD": "On",
+ "47LwDz": "Password reviewed",
+ "47XFkI": "Protect the files you\u2019ll need later",
+ "47gydg": "{city}, {country}",
+ "47mqrX": "EMM",
+ "47uFL9": "Restart the download",
+ "485MF4": "Cancel",
+ "48lCd/": "Sign in with Dropbox to use Paper",
+ "48nq81": "There were too many changes for us to display.",
+ "48omKx": "Creator",
+ "495asM": "Off",
+ "49BMLC": "Done",
+ "49WgYd": "change",
+ "4ASXAK": "Link sent",
+ "4ASaZl": "On",
+ "4AiVzq": "You\u2019ve logged out of your account. Please reload this page and try again.",
+ "4BBW2C": "To share the {folder_name} with someone, invite them to join your team.",
+ "4BtQvF": "Collaborate with Dropbox",
+ "4Bz3Tt": "Back",
+ "4Chdng": "Additional information request",
+ "4CxG2v": "4",
+ "4DKF/t": "Release a hold when you no longer need to save copies of the files and their revision history.",
+ "4DMiZx": "We couldn\u2019t find any matches. Try clearing some filters.",
+ "4DQriR": "A screen capture that demonstrates how you can free up space on your hard drive. Simply right click on a local file and make \u201conline only\u201d to send to the cloud.",
+ "4EWtlp": "Start your free trial",
+ "4EZH1k": "Choose what to keep",
+ "4F3Rmj": "You need to accept Google\u2019s request in order to log in.",
+ "4FgznB": "Let colleagues join the team straight away instead of waiting for approval to get to work.",
+ "4FvSQ0": "Will I receive a refund if I cancel my Dropbox {trademark_plus} or {trademark_professional} subscription?",
+ "4GGEvb": "This folder can\u2019t be shared",
+ "4GHo3F": "Name",
+ "4GMZOq": "deleted shortcut",
+ "4GQkkL": "Success \u2013 your personal and work accounts are now paired.",
+ "4HK0++": "Install the appropriate package if you want to use Dropbox on your Linux desktop.",
+ "4HZCOQ": "Control who can view the folder with this link.",
+ "4HhApp": "Creative brief",
+ "4IHfp+": "Change your team name, choose your language, add a logo and more",
+ "4IVe1U": "{count, plural, one {Wrong PIN. Please try again in {cooldown_time}. {count} attempt left.} other {Wrong PIN. Please try again in {cooldown_time}. {count} attempts left.}}",
+ "4IZRvO": "{price}/month",
+ "4J3sZg": "Permanent deletion details are not available.",
+ "4JAFrw": "Invited {when}",
+ "4JJ1pt": "You\u2019ll get an email once the admin of {team_name} has approved your request. You can start exploring Paper now by creating a personal account.",
+ "4JJfQf": "More about storage space",
+ "4Jjl6i": "You won\u2019t get an alert when a member signs in from a high-risk country.",
+ "4K5IlG": "Open the installer again to finish installing Dropbox on your computer",
+ "4KCGVW": "Try Capture for free",
+ "4KI0YP": "Version settings",
+ "4KZf0Q": "Backup phone number",
+ "4KcZRP": "Today",
+ "4KdOkL": "per {schedule_noun}",
+ "4KxEa4": "Move completed.",
+ "4L9Mp6": "Get app",
+ "4LT0MH": "By selecting {standard_plan}, you will lose access to features like:",
+ "4Ld3tI": "Share a link instead",
+ "4MQHjO": "Note: we\u2019ll use your bank information provided by iDEAL for all future billing cycles. If your bank is not listed, please select a different payment method.",
+ "4MU0oF": "Marketing",
+ "4MvQzN": "Signed in as {user_email}. Switch account?",
+ "4N7wI8": "Message (optional)",
+ "4NcxQ9": "Join",
+ "4OVYKA": "Ctrl + Alt + {key}",
+ "4OlOOe": "Sorry, there was a problem with your request. Please try again.",
+ "4OloVt": "Your account will be merged into the {team_name} Dropbox account, where you\u2019ll have\na private area for your stuff. {team_name} admins will be able to manage your files and Paper docs.\n{team_name} has disabled Smart Sync, so you\u2019ll be signed out of Dropbox and\nonline-only files will be downloaded to your hard drive next time you sign in.\nYou\u2019ll sign in with {work_email}.",
+ "4PaMOr": "View all replies",
+ "4PhHlS": "Password-protected. Couldn't extract files.",
+ "4PtkZL": "Store all of your computer files in the cloud to save computer space and keep everything backed up.",
+ "4QA8Na": "Image",
+ "4QKAq0": "Change number",
+ "4QatcV": "With {trademark_business}, you\u2019ll get more space, controls and support.",
+ "4RH/qj": "Unable to preview a version being created",
+ "4RJ0I8": "Password",
+ "4RUd05": "Request shared. People can now upload files.",
+ "4Rd5dC": "Lock",
+ "4RvaL9": "Open the link to see what your transfer looks like.",
+ "4SqdmQ": "This file is too large to upload using the Dropbox website. Please use the desktop client.",
+ "4Swmmw": "No files locked right now",
+ "4UBGDO": "Productivity",
+ "4UkQJk": "They\u2019ll keep their own stuff and any folders shared with them",
+ "4V98Ir": "These files may be important or sensitive, so we recommend saving them somewhere that is password protected",
+ "4V9PJD": "Deleted by a permanently deleted user on {creationTime}",
+ "4VOM8A": "-",
+ "4Vv4Iv": "Please enter a valid first name.",
+ "4VvXn7": "Team management",
+ "4WH8Fc": "Someone locked editing for this file. You can still view the file and keep up to date on changes here.",
+ "4WdAHc": "Details",
+ "4Wq7Cq": "Rewind this folder",
+ "4WsjOV": "About you",
+ "4Wu5r9": "per year",
+ "4WyL7Y": "{admin_name} is a {team_name} admin. Their contact information will be hidden from team members who might need to email them.",
+ "4X0sAp": "Loading...",
+ "4X717n": "{plan_space} of space to keep everything safe",
+ "4XRv5V": "Share any file with Dropbox",
+ "4XbA3G": "Creating team folder\u2026",
+ "4XzW56": "It\u2019s probably called index.html. If you\u2019re hosting your website on a service like Wordpress or Squarespace, you may be able to edit the HTML directly from their admin tools.",
+ "4YifZz": "Please describe the issue you\u2019re experiencing in as much detail as possible to enable us to troubleshoot it faster",
+ "4ZiuCX": "This secondary team will be merged into your team soon. ",
+ "4a2Kj1": "Once your team has been merged into the primary team:",
+ "4a3msP": "A screen capture showing how hard drives have a limited amount of storage space.",
+ "4aEgv5": "Please wait until they\u2019re complete before making changes.",
+ "4aMOmP": "Keep things organised by adding people to groups.",
+ "4aRL88": "Can only filter by your devices",
+ "4abwtv": "unlimited",
+ "4acOjy": "{actor_name} moved the {card_name} card with this file attached to the {board_name} board",
+ "4apBXb": "One place for life\u2019s most important files",
+ "4apXur": "We were unable to mark the thread as unread.",
+ "4bF5Da": "Your email address",
+ "4bIxqq": "Remove access to {team_name}",
+ "4bkAHv": "See plan details",
+ "4bok+T": "Select an option",
+ "4c06XP": "Scheduled plan change",
+ "4cAGK1": "Install {dropbox_passwords} to get started",
+ "4cGCaz": "Dropbox has sent a verification email to {email}. Check your inbox and click the link in the email to verify your address. If you can't find it, check your spam folder or click the button to resend the email.",
+ "4cLs5M": "Shared link controls",
+ "4cNpcH": "Selecting is simple",
+ "4cZi/F": "From now on, when you sign in to the Dropbox website or link a new device, you\u2019ll need to enter a security code from your phone.",
+ "4caTrF": "Resume",
+ "4cdsd2": "Create a TXT record",
+ "4dD0EU": "Close",
+ "4dMYep": "Something went wrong. Please try again later.",
+ "4djX2N": "Add activities to filter",
+ "4euXr6": "Invite people",
+ "4f99hz": "Don\u2019t make any files online only",
+ "4fGTX4": "Search for \u201c{search_key}\u201d in App Centre",
+ "4fVM6V": "Some of the people you added are admins. \n Their contact information will be hidden from team members \nwho might need to email them.",
+ "4fZdBB": "Unsuspend member",
+ "4fsv5F": "Unshared {file_name}.",
+ "4fumNh": "Get the storage you need and features you want",
+ "4gEt6j": "Shortcut",
+ "4gKZhu": "You were given edit access.",
+ "4gk9AV": "Change folder",
+ "4hK2sV": "Learn more",
+ "4hS4op": "Document",
+ "4hf7s2": "Markup is available on PDFs, PNGs, JPEGs and BMPs.",
+ "4i0oiZ": "Need to send more than {file_size_limit}? Upgrade to {premium_product_name} to send up to {premium_file_size_limit} per transfer for as little as {plan_price}.",
+ "4i7BbG": "Paper helps companies transform the way they work",
+ "4iKKtb": "Control",
+ "4iWGkw": "pending",
+ "4jF4jM": "Email verified. Continue on your desktop",
+ "4jK84R": "What happened in Dropbox in the last 7 days?",
+ "4joFvJ": "{count, plural, one {{count} viewer} other {{count} viewers}}",
+ "4jwB3F": "means the Health Insurance Portability and Accountability Act of 1996 and the rules and regulations thereunder, as amended, and including the HITECH Act.",
+ "4k1fvl": "Send transfers of up to {transfer_send_size_limit} at a time with password protection and customised experiences.",
+ "4keuFt": "Show {num_more} more",
+ "4kfE6S": "Restart the download",
+ "4knJ9q": "Click \"Add\" to get help downloading Dropbox.",
+ "4kvIcJ": "Add your billing information now to keep using {trademark_business} after your trial has ended.",
+ "4kydj6": "Link",
+ "4leFEx": "Create",
+ "4loR0R": "My groups",
+ "4nE4Sg": "Your team won\u2019t run out of space, so you can always do your best work",
+ "4nKLYM": "Add a meta tag",
+ "4nduwI": "Extension URI",
+ "4nfaRz": "You can only view {file_name}. Ask an owner or editor of the folder for access to edit it.",
+ "4oMxy9": "Buy now",
+ "4ow5pO": "5 - High",
+ "4owp88": "{count, plural, one {Download} other {Downloads}}",
+ "4pFQwa": "Some of the files you selected aren\u2019t accessible any more. Please reload this page and try again.",
+ "4pflIN": "Use the Dropbox apps to stay in the loop with your team\u2019s progress in real time.",
+ "4pvYSI": "Can\u2019t open file",
+ "4q3CZy": "This folder is empty.",
+ "4qDMOz": "{from_date} - {to_date}",
+ "4qND4s": "Please open the Dropbox installer inside your Downloads folder.",
+ "4qOcWc": "Connected apps",
+ "4rYlmO": "Cannot move some members.",
+ "4sbTBw": "A folder with the same name exists.",
+ "4skAH0": "Open",
+ "4sx9Cz": "{count, plural, one {/ user, starting with {count} user} other {/ user, starting with {count} users}}",
+ "4tBwj3": "Board",
+ "4tPgve": "Cancelled pending email change.",
+ "4tflp2": "Sign up",
+ "4tu60w": "Apps for communication",
+ "4uJU4W": "Last 7 days",
+ "4ujq5W": "Sign in to link your team Dropbox",
+ "4vIJxB": "Faster sync using our delta, LAN and streaming sync technology",
+ "4vU2gl": "Delete files from {team_name} Dropbox next time this computer comes online.",
+ "4w2mD0": "Want to join the team with another email address?",
+ "4wU/uq": "Old password",
+ "4wYeUM": "To confirm it\u2019s yours, click on the link we sent to {email}",
+ "4wqAlM": "I\u2019d like to start a trial. What do I need to know to get started?",
+ "4wqmq+": "Signed up for Dropbox successfully",
+ "4wxlPu": "Invitation enforcement",
+ "4x6jQD": "Create transfer",
+ "4x96V+": "Expired",
+ "4xHyIn": "You shared this file in Zoom",
+ "4xSgV3": "subject input",
+ "4xa8tD": "Photos selected and uploaded to Dropbox mobile app.",
+ "4xnnkX": "For individuals",
+ "4xsFGe": "Make unsynced folders online only instead?",
+ "4xzuPe": "Sharing {folder_name} with everyone\u2026",
+ "4yW5KI": "It\u2019s too difficult to use",
+ "4yeYeh": "Invitation requested",
+ "4yry+r": "Automatically save email attachments in a Dropbox folder. Learn more",
+ "4z5v4p": "Access on multiple devices",
+ "4zAxCS": "Create a template",
+ "4ziLHH": "Add personal account",
+ "4zm4LM": "from {author}",
+ "4zp/yg": "Content in their account can be transferred to someone else until {date} using account transfer.",
+ "4zpQ9B": "Can\u2019t show content because you\u2019re not signed in to Dropbox.",
+ "5++/yV": "Your password should be at least two bars",
+ "5+9m9k": "Plus button",
+ "5+Wabe": "View on dropbox.com",
+ "5+jfNE": "All {number} members will be signed out of dropbox.com immediately\n so that the new session length can be applied.\n Note: The new session length will also apply to your current session,\n but we won\u2019t sign you out.",
+ "5/3C++": "You can manage DWG files without installing software. The latest version is accessible any time, anywhere with the AutoCAD Dropbox extension.",
+ "5/EnWV": "Add recipients",
+ "5/am2Y": "You don\u2019t have permission to do this. Please contact the owner.",
+ "5/avqn": "Use space on your hard drive to download Dropbox files and access them offline.",
+ "5/j7Qg": "Choose how members can use apps like Dropbox Paper and Google Docs in Dropbox",
+ "50+STL": "Re-insert your key and click \u2018Retry\u2019",
+ "513aYe": "Read-only shared folder",
+ "519UDU": "All teams",
+ "51G+fg": "To find out more about contacting Google or Apple for a refund, view our help content here.",
+ "51a7k3": "e.g. Archive DDMMYY",
+ "51fE2B": "How do you want to use Dropbox?",
+ "52BZxH": "Something went wrong",
+ "52Ivlt": "Two-factor authentication (2FA)",
+ "52VMWr": "{standard_name} provides teams with {space} of storage, and simple sharing and collaboration tools. For teams needing more storage and security, Advanced provides as much space as your team needs in addition to sophisticated admin, audit, integration and security features. Learn more about our plans here.",
+ "52Wsye": "To add more space, contact support.",
+ "52mY3R": "Sent requests",
+ "52zjhS": "{folder} cannot be chosen.",
+ "5397LL": "Make company managed?",
+ "53LkGW": "(including {tax_rate,number,::percent .##} tax)",
+ "53d++8": "The icon for a shared folder",
+ "53oUlv": "Upload folder",
+ "53qu9V": "Showing your suggested items",
+ "53xa16": "View exports",
+ "54ECav": "Active Directory and SSO integrations",
+ "54GkZd": "Edit DWG files in your browser",
+ "54w1+J": "Continue without restarting",
+ "55vuOC": "Leave plan",
+ "56rPsP": "Processing...",
+ "5749s5": "What is the Dropbox badge?",
+ "5794tP": "by you",
+ "579xSI": "An email address must contain a single @",
+ "57Urpb": "Unknown",
+ "57YaoK": "{count, plural, one {Members of this file with the link can view. Expires in {count} day. Downloads disabled.} other {Members of this file with the link can view. Expires in {count} days. Downloads disabled.}}",
+ "58/Bbj": "Linked accounts",
+ "589DbP": "Items you don\u2019t own in a shared folder",
+ "58JJSJ": "Team overview",
+ "58eLFf": "Please enter an email address",
+ "58lbTC": "More",
+ "58p894": "Files added to this folder are automatically saved as PDFs.",
+ "59/vBg": "{app_name} is connected",
+ "591VwJ": "BETA",
+ "59ju9v": "Collect files from anyone",
+ "5B2AGb": "Upload cancelled",
+ "5B2t2s": "Instant download",
+ "5BFb4l": "Coming soon",
+ "5C96eC": "The admin dashboard puts key sharing information at your fingertips",
+ "5CP+rv": "You\u2019ll only be able to access this content on dropbox.com",
+ "5CpaY6": "To team",
+ "5Cpjgg": "Google sign-in",
+ "5CrwwQ": "Edit file request",
+ "5D+GvS": "Accounts",
+ "5D05V/": "You\u2019re automatically signed out of a team after 30 minutes. You can sign in again on the teams page from your enterprise console.",
+ "5DWVzm": "This device is signed in to another account. Switch to continue upgrading {email}",
+ "5Dr7st": "Cancel",
+ "5ELZSM": "Search {folder_name}",
+ "5FDJco": "Files that members don\u2019t use often will become online only. To turn this on, set your new files to default to\n online only. Members can change this setting.",
+ "5FN1CX": "{count, plural, one {Restore {filename} and {count} more item.} other {Restore {filename} and {count} more items.}}",
+ "5FcUkH": "Not now",
+ "5FskM+": "How to manage third-party apps on Dropbox",
+ "5GaS5k": "Change name",
+ "5GgiMD": "Password",
+ "5HQ3Bn": "Community forums",
+ "5HW1PC": "Choose from Dropbox",
+ "5HeZ3q": "Your Dropbox plan does not support this feature. Contact support for help",
+ "5HvwcJ": "Create and edit with Paper",
+ "5IUNcF": "{name} edited {relative_time}",
+ "5IllzP": "Set limits for how widely company files can be shared",
+ "5JRhFM": "Shutter speed",
+ "5K8k8j": "{count, plural, one {Anyone in your {trademark_business} team with this link can edit the file. Expires in {count} day. Downloads disabled.} other {Anyone in your {trademark_business} team with this link can edit the file. Expires in {count} days. Downloads disabled.}}",
+ "5KI56r": "Business address",
+ "5KdZmA": "Account",
+ "5KppPY": "A {dropbox_paper} document that shows two pictures of triangular prisms, a to-do list and two users collaborating at the same time.",
+ "5Kyedz": "Legal link",
+ "5KzRdQ": "{count, plural, one {Your new total will be {recurring_amount_including_tax} {per_period_text} for {total_licenses} licence going forwards. These changes will be applied as of your next billing date on {next_billing_date_string}.} other {Your new total will be {recurring_amount_including_tax} {per_period_text} for all {total_licenses} licences going forwards. These changes will be applied as of your next billing date on {next_billing_date_string}.}}",
+ "5L6jWh": "How Dropbox can support distributed work",
+ "5LjMEI": "We have resent the verification email to {email}. Check your inbox.",
+ "5Ls4UX": "\u2022 Enterprise console",
+ "5M1EyM": "What do you want to do with your existing files?",
+ "5MHDrd": "Only basic ASCII characters allowed",
+ "5MIGec": "Modify policy",
+ "5MPoJZ": "Upload another file",
+ "5MpLpV": "Expand share menu",
+ "5MsV0g": "I found another product I liked better",
+ "5N4vbB": "{name} moved {single_item_name} out of {src_folder}",
+ "5N7Pbb": "Click to enter password",
+ "5N8Df0": "{space} of space",
+ "5NWG7E": "If you change from Dropbox {currentPlan} to Dropbox {plan}, we\u2019ll charge you {proratedPrice} now. Charges will continue until you cancel, and previous charges won\u2019t be refunded unless it\u2019s legally required. {paymentInfo}",
+ "5Nekbe": "Page down",
+ "5P/+As": "Add any new files to your Dropbox",
+ "5P2fve": "250-499",
+ "5P3u5r": "Cancel upload",
+ "5Pnscd": "Cancel",
+ "5QFuHw": "Dropbox Rewind: undo accidental edits",
+ "5QiL0e": "Don\u2019t cancel",
+ "5RccSl": "Search",
+ "5Rmc1x": "X.509 certificate",
+ "5SXeZ6": "Save \u2018{name}\u2019 to my {team_name} Dropbox",
+ "5SrwUf": "32-bit:",
+ "5SxLyr": "You\u2019re changing to monthly billing. From {date}, your monthly total will be {recurring_total}.",
+ "5TCC4p": "Optional for",
+ "5UAie+": "Done",
+ "5UPrH9": "{service_name} contacts",
+ "5Uq4ka": "You don\u2019t have access to this folder",
+ "5Uwag4": "Link settings",
+ "5VbSig": "Please enter URI",
+ "5VrbkU": "File created",
+ "5WCb5f": "Try free for {trial_length} days",
+ "5WIYfo": "Approved list",
+ "5WLZ45": "Learn more",
+ "5WdAIs": "{name} edited {single_item_name}",
+ "5WfGnr": "Manage and pay for all accounts with a single bill",
+ "5WxhYC": "You won\u2019t be able to add any new files to your Dropbox",
+ "5XHSTE": "It looks as though there weren\u2019t any files held for this export. Try adjusting what content to include.",
+ "5XVoEE": "Reset password for {username}",
+ "5XX+/p": "Updated in the last day",
+ "5XYKiF": "Deletion",
+ "5Xbdn9": "Why Dropbox?",
+ "5Xw/20": "Allows teams to have multiple admin roles, each with a different set of permissions.",
+ "5Y9/iJ": "Activities",
+ "5YZf5a": "We weren\u2019t able to move some folders. Please try again later.",
+ "5Yz17H": "Add a {opposite_type} record instead",
+ "5Yzfj9": "Couldn\u2019t change access. Try changing access again.",
+ "5Z9j+l": "Create folder",
+ "5ZIiEq": "Add a more detailed description...",
+ "5ZXdxv": "We'll send a link to:",
+ "5ZcdXx": "From {date}, we\u2019ll charge you {scheduled_total} per year on your IBAN ending {last4}.",
+ "5Zg9Wn": "Deadline date",
+ "5aSWgz": "Centre",
+ "5aW4Ew": "Termination.",
+ "5agcni": "Next, run the Dropbox daemon from the newly created .dropbox-dist folder.",
+ "5bCD2a": "{plus} + {evh}",
+ "5bfZE4": "An expiry date disables a link on a specific date to help keep your files secure.",
+ "5bg3kl": "{team_name} will keep all content",
+ "5biQq5": "A business customer story and their experience with Dropbox",
+ "5btQJ9": "Open Canvas",
+ "5c+qgK": "{count, plural, one {You restored a previous version of {count} item in {folder_path}} other {You restored a previous version of {count} items in {folder_path}}}",
+ "5cuQBA": "Membership requests",
+ "5dI3gl": "Invite team members",
+ "5dcT/i": "{space_quota} of space",
+ "5dt0hu": "Can\u2019t save changes. Reload the page and try again.",
+ "5e94v2": "Unstar",
+ "5eLA6l": "You\u2019ve already requested a change to your plan. If you want to choose a different plan or billing period, first cancel your pending change.",
+ "5eeuA4": "Error creating transfer. Please try again.",
+ "5f2aok": "Unknown error",
+ "5fYyzZ": "This increases the chance of data loss.",
+ "5fgW0C": "Dimensions",
+ "5gFHRh": "Details (optional)",
+ "5glAir": "Review your plan options.",
+ "5gs3Xk": "Teams in federation",
+ "5hDtmD": "Cancel",
+ "5hFsVX": "Based on previous activity and file type",
+ "5hU2HW": "Released ({size})",
+ "5hVLiZ": "Make user managed",
+ "5hturn": "Please enter an email address.",
+ "5hvit0": "{price} per year",
+ "5iMHN2": "Unlimited API access to productivity platform partners",
+ "5ijoNK": "Cancelled successfully",
+ "5ixcGr": "Team folder permanently deleted.",
+ "5jNXHY": "Do more with {trademark_business}",
+ "5jX6yK": "Can't upload at the moment. {name} is low on space.",
+ "5kJrVX": "Postcode",
+ "5kLCln": "Traffic and insights",
+ "5kVa+2": "Subject",
+ "5kXXnY": "In January 2017, we introduced simplified new plans: {standard_display_name} and\n {advanced_display_name}. You are currently receiving the enhanced admin and security\n features of {advanced_display_name} to try for free, giving you the opportunity to decide\n which plan is best for your team in an upcoming renewal.",
+ "5kny8Y": "This email is already taken Sign in or reset your password.",
+ "5kwt9p": "Cannot export at the current time. You can export the hold once it\u2019s finished being updated.",
+ "5lA34q": "In order to continue creating a team, please confirm you own {new_email} by clicking on the verification link we just sent you.",
+ "5lNaXH": "Effect of Amendment.",
+ "5lYzNi": "Submitted file",
+ "5llsM2": "This alert is triggered when an unusually large amount of data is deleted in a short period of time.",
+ "5loFC4": "Expand",
+ "5lxkC0": "Your request to join the team was sent successfully! Redirecting...",
+ "5lyqwg": "You\u2019ve been invited to join {manager_name} ({manager_email}) on a Dropbox Family plan! Once you create an account or sign in, you\u2019ll be able to join the family.",
+ "5nBf6U": "You are following {folderName}.",
+ "5nJ4h3": "{space} of space with easy-to-use team management and collaboration tools.",
+ "5nUe54": "Allows team admins to sign in to the Dropbox accounts of members of their teams.",
+ "5nb+Tf": "{alertName} edited.",
+ "5o/1NY": "Edit",
+ "5o/LXe": "Revenue driving",
+ "5o2guN": "Here\u2019s an even easier way than drag-and-drop to move lots of content into Dropbox.",
+ "5oJ/ON": "Continue with cancellation",
+ "5oeOjG": "There was a problem adding your reply. Please try again.",
+ "5oiJ9b": "Suggest files",
+ "5ojLcX": "Your {trademark_business} plan will change to {plan} immediately, and you\u2019ll be refunded any difference. Your new {schedule} total will be {scheduled_total}, starting on {date}.",
+ "5ojTma": "\u2193",
+ "5pKEiG": "Your Dropbox account is full. To add this file, remove some files or ask your admin for more space.",
+ "5pVU6R": "New emails",
+ "5peL6S": "Submit a help request",
+ "5q97ZA": "Let everyone know",
+ "5qHjxe": "PM",
+ "5qPot/": "Try it for free",
+ "5qn8BD": "\u2013",
+ "5qtD+j": "Update Paper sharing settings, change the name of your Dropbox and much more.",
+ "5r7/Jv": "Can\u2019t show content because something went wrong.",
+ "5rAGUE": "Customise table",
+ "5rX/EF": "Link copied.",
+ "5rfGLn": "Subscribe",
+ "5rflXu": "Check out a preview",
+ "5rn8IP": "Limited member",
+ "5s/k4Z": "With {trademark_business}, you get even more security and collaboration features for your team. These additional features include {vacuuming_policy_max_days}-day version history, more space, email and chat support, and admin management tools for better control and visibility. Compare {trademark_business} and {trademark_plus} here.",
+ "5sdJC6": "{discount}",
+ "5t5m0I": "Sign-in failed. If you\u2019d like to sign in with Apple again, see how in our Help Centre. You could also sign in with your Dropbox account email address and password.",
+ "5tal7W": "Teams",
+ "5tpMRl": "Link not available",
+ "5uIAGo": "Everyone in {team_name} can view",
+ "5uOM5W": "Invited by {admin_name}",
+ "5uj4/u": "Centralised admin console to view and manage all of your business teams at the same time",
+ "5ujupL": "Note: {firstname}\u2019s settings can only be changed in the members page.",
+ "5up237": "An error occurred. Please reload the page.",
+ "5utoYv": "Dropbox Showcase",
+ "5vKcIC": "Localised data storage",
+ "5vUoeT": "{value, plural, one {{value,number} hour} other {{value,number} hours}}",
+ "5vnnd+": "Get your team in sync",
+ "5voD+S": "Cannot change role. This is the last team admin in this team.",
+ "5w32MB": "Where you work",
+ "5wJAeB": "Click here to describe this folder and turn it into a Space",
+ "5wQTp4": "Saving to your {team_name} Dropbox...",
+ "5wz9WX": "Contact Dropbox support",
+ "5x1uwg": "Created",
+ "5x5g3C": "{quotaTb,number} TB",
+ "5xbZh7": "Your shortcut {filename} was created in {folder_name}",
+ "5xjUoq": "",
+ "5y46L2": "Once it has been downloaded, double-click the installer",
+ "5yGE9V": "Or",
+ "5yOp5p": "Decline",
+ "5yjSod": "Change {name}\u2019s role",
+ "5yqgPL": "This lets members share links with people who aren\u2019t in the team Dropbox account. ",
+ "5z5P+5": "Most recent activity",
+ "5zARtW": "More about restore & delete",
+ "5zcAiD": "OK",
+ "5znXHf": "Bear in mind that your admin can update these settings",
+ "6+01wL": "This is an invited member",
+ "6+PaTo": "{count, plural, one {Anyone in your {trademark_business} team with this link can view the file. Expires in {count} day.} other {Anyone in your {trademark_business} team with this link can view the file. Expires in {count} days.}}",
+ "6/4o4V": "{count, plural, one {{name} and {count} other edited this file} other {{name} and {count} others edited this file}}",
+ "6/5hwp": "Multiple people",
+ "6/Iap6": "Turn off alert?",
+ "6/NfP1": "I agree to the Dropbox Terms, {tosTitle},{br}and the Automatic Renewal Terms above",
+ "6/TVPV": "Disbanded",
+ "6/zH1E": "These devices have been unlinked from your work Dropbox account.",
+ "6/zf2a": "Bring ideas to life with Paper",
+ "60A6Qz": "Please wait a few days for your plan to be updated.",
+ "60BabM": "Not enough space",
+ "60HSB/": "Loading",
+ "60fyL6": "How would you like to use Dropbox?",
+ "60pkl0": "Looking for something?",
+ "60uLrP": "Empty files cannot be previewed",
+ "60y/BJ": "Linear design rises from two computers.",
+ "61HjAX": "Make sure they have access to the right files",
+ "61WE1q": "{count, plural, one {This app will be removed from exceptions. It will follow the default permission for whether your team can connect apps not listed in App Centre.} other {These apps will be removed from exceptions. They will follow the default permission for whether your team can connect apps not listed in App Centre.}}",
+ "61fdHZ": "Verify email",
+ "61gAy5": "Sent by {display_name}",
+ "625HOw": "Dropbox {plus}",
+ "62TVke": "Bonus type",
+ "62pp19": "Comment will only be posted to Dropbox.",
+ "62wFTu": "Cancel",
+ "63Ko03": "File recovery is a way of restoring or recovering data lost through accidental edits or deletion. You can restore deleted files or folders, pieces of lost data, or even an entire hard drive.",
+ "63QQsG": "Total prices quoted include applicable taxes.",
+ "63yvS7": "File uploaded to Canvas",
+ "64H9hl": "Hide advanced",
+ "64zb8l": "To make sure we've got your email address right, we have sent a message to {email}.",
+ "650lWu": "{count, plural, one {{name} and {count} other} other {{name} and {count} others}}",
+ "65CdVw": "Auto, fired",
+ "65Ne4W": "This folder is too large",
+ "65RS70": "People can edit and comment",
+ "65ZjuM": "You successfully deleted the team.",
+ "65o/uD": "Click the button in your email to use Paper",
+ "65pLwc": "Date",
+ "667KM+": "Something went wrong. Please try again later.",
+ "67McYW": "{folder_name} shared with members of {parent_folder_name}.",
+ "67dTIZ": "Only admins can invite and manage team members",
+ "67epwi": "Request files",
+ "67fhSx": "Group name",
+ "67r41E": "Business admin support",
+ "689FPX": "The invitation could not be sent.",
+ "68E+K/": "Success! Redirecting you to Dropbox...",
+ "68FvXZ": "{price} per user per month",
+ "68Z9NX": "Error: 500",
+ "68aru0": "Before you start, close any open files. And please bear in mind that apps and certain file types can\u2019t be moved.",
+ "68bbMz": "Everything in Standard",
+ "68wybz": "You're already connected to {service_name}",
+ "69RiKK": "{price} (taxes included)",
+ "69SlWr": "We can\u2019t calculate the total size of this folder at the moment. This can happen when there is a large number of files inside the folder or if the request takes too long.",
+ "69o7Zu": "{description}",
+ "6A4kNh": "{width} x {height}",
+ "6A8hcH": "We\u2019ve downgraded your plan. If you want to keep using {trademark_business}, please add your billing information now and pick up where you left off.",
+ "6AEdAt": "Your member folder is where you can put personal files. Organise this space however you like. Put things here that you don\u2019t want to share with everyone, such as your works in progress.",
+ "6AHSKo": "Oops! We couldn\u2019t find a Dropbox account matching that email address. Click here to create one.",
+ "6ASmGo": "Please unlock your vault before attempting to add to this folder.",
+ "6AZUzG": "Why do I need to enter my credit card for the free trial?",
+ "6AoXUC": "Sync everything",
+ "6BH1uF": "{vacuum_days} accident, theft and disaster recovery",
+ "6BPanm": "Something went wrong. Try it again, or contact us on the Help page.",
+ "6BRq9E": "Authentication history",
+ "6BVmpd": "IBAN",
+ "6BcuWT": "Last downloaded {when}",
+ "6BjFCt": "{professional_vacuuming_policy}-day version history",
+ "6BnQtC": "Add custom backgrounds and logos",
+ "6ByNKu": "Make user managed?",
+ "6CBCBg": "upload to your personal Dropbox",
+ "6CCjcR": "{display_name} won\u2019t be able to manage team settings, remove and uninvite users, or upgrade the team to {trademark_business}. Are you sure you want to continue?",
+ "6Caba5": "Shared with",
+ "6Cn3Fl": "Failed to load pricing information.",
+ "6D/3E5": "Tell us how we can help",
+ "6DJJvT": "home",
+ "6DcoJb": "Automatically back up your desktop, documents and more, directly to Dropbox.",
+ "6E27tG": "Open with Dropbox Preview",
+ "6E7uyE": "Is my payment secure?",
+ "6EGy57": "This gives you two accounts \u2013 your {work_email} account for {team_name} work\nand your {personal_email} personal account for your existing files.",
+ "6EYOIQ": "See live updates",
+ "6EcMoR": "Set password",
+ "6EcS+/": "Go back",
+ "6EjTiu": "Host team name",
+ "6F77Z/": "Please follow the instructions there once it does.",
+ "6Fed5y": "How does sharing and collaboration work with {trademark_business}?",
+ "6GvPYk": "{count, plural, one {{name} edited {count} item} other {{name} edited {count} items}}",
+ "6H0ibg": "Keep your team organised with folders",
+ "6ICjSW": "OK",
+ "6IKSeQ": "We can\u2019t rewind that. Try again, or contact support.",
+ "6IaH2e": "Too expensive",
+ "6J0O1e": "{count, plural, one {{count} result} other {{count} results}}",
+ "6J7JFw": "Archived (unable to edit archived versions)",
+ "6JMMuo": "Select a shared folder or link",
+ "6K4ty0": "Current session",
+ "6KAeEf": "There was an error updating your passcode. Please try again later.",
+ "6KD+lb": "Spreadsheets",
+ "6KOkmn": "Each link tracks insights and sales metrics from wherever it is posted.",
+ "6Kpd/N": "Support tickets",
+ "6Krfx1": "Avoid paying for two subscriptions",
+ "6Krty+": "Cannot select folder. Please try again later.",
+ "6LShhL": "Show your best work, right from Dropbox",
+ "6LyZk0": "Save",
+ "6MBUKk": "Your favourite tools are now in Dropbox. Just choose a file, click Open with and take your pick of the tools.",
+ "6MC56E": "I\u2019d like to share an existing folder",
+ "6MJeaA": "Copy",
+ "6MO4fY": "Please verify your email before sending a request to connect",
+ "6NsS9w": "purchase now",
+ "6O9OEr": "Are you sure you want to remove owner permissions from {user_name}?",
+ "6OArwV": "Summary of card purchase",
+ "6OUwIN": "Failed to download.",
+ "6OXw94": "F",
+ "6Okhjr": "Plan your meals for the week. Keep track of what you\u2019ve got in the cupboard, what you need to buy and how to prepare your favourite dishes.",
+ "6Ooe3V": "How would you like to receive your security codes?",
+ "6P6oA4": "Easily access your team\u2019s work from your computer, mobile device or any web browser.",
+ "6PE8Aj": "Not shared",
+ "6Pdy0A": "Learn how to manage cookies in Google Chrome.",
+ "6Prbzr": "You\u2019re currently on a free {billing_schedule} {start_plan}. If you continue with your current plan, your {billing_schedule} total will be {recurring_total} after your free trial ends on {date}.",
+ "6PtBSH": "Trello",
+ "6QMoj7": "Need to make a change?",
+ "6QvQDC": "Deadline today at {time}",
+ "6QvwvW": "Link accounts",
+ "6RFMXO": "Check your inbox to finish updating your email.",
+ "6RN1GG": "Your current plan",
+ "6RXThu": "Lock files when editing to prevent unwanted changes and avoid conflicting copies.",
+ "6RXx/7": "Renaming undone.",
+ "6RZ/mF": "Copy this link and share it with {email}. They\u2018ll need to add your email address and ask to merge into your team.",
+ "6S9h2c": "DocuSign helps organisations connect and automate how they prepare, sign, act on and manage agreements. As part of its cloud-based System of Agreement platform, DocuSign offers eSignature so users can sign electronically on practically any device, from almost anywhere, at any time. New users get 10 free envelope sends.",
+ "6SDr7W": "Passwords must contain 6 characters or more. Good passwords are hard to guess and use uncommon words, numbers, symbols and uppercase letters.",
+ "6SiEMm": "After purchase, all of your files and folders will remain private unless you choose to share them with your team.",
+ "6T0SgL": "You\u2019re about to cancel {trademark_business} and disband the {team_name} Dropbox team",
+ "6T6/7h": "You can still choose a default editor in your Dropbox settings.",
+ "6TLfgh": "To set it up, turn off Passwords for your team. Find out more about HIPAA",
+ "6TZnes": "We\u2019ll scan content in team folders and label the files that contain personal information (also called personal data or PII). After the first scan, you\u2019ll get alerts if someone shares personal information outside the team. You can also create reports of all labelled files.",
+ "6Tvcqg": "Security settings",
+ "6U3vWl": "I understand that I\u2019ll have to sign in to Dropbox again on my computer",
+ "6Uqbll": "Save",
+ "6V/0tc": "Dropbox needs to verify your email address {email} before you can subscribe. It\u2019s as simple as clicking the link in the verification email we send you.",
+ "6V1zsr": "Is this regarding a cancellation or refund request?",
+ "6V7StD": "Hi {first_name}, we\u2019re sorry you\u2019re thinking of leaving {dropbox_family}. Do you mind telling us why? We might be able to help.",
+ "6VV85R": "Store and sync",
+ "6Vgz8b": "Only admins and group managers can change team folder membership.",
+ "6VnReU": "Colours",
+ "6WO97g": "As a user management admin, they can add or remove members from their team only. They can also do some basic tasks, such as managing groups.",
+ "6WOQfa": "Remove",
+ "6XieeI": "Informational",
+ "6XrNim": "Review...",
+ "6YT7wY": "orange",
+ "6Yc3rI": "Paste a link, and a detailed preview of the doc appears in the channel.",
+ "6Z3AkD": "Edit backup phone number",
+ "6ZAdx/": "View version history",
+ "6a1Rvf": "{count, plural, one {You renamed {count} item in {folder_path}} other {You renamed {count} items in {folder_path}}}",
+ "6aVZjI": "Watermarking your file\u2026",
+ "6aphVB": "lol",
+ "6b1uxi": "Creatives",
+ "6bImhw": "Sign in or to join your team on Dropbox.",
+ "6bRQ0U": "Done",
+ "6cNXJ3": "Add team members",
+ "6cQLSf": "Compare now",
+ "6cRVYz": "Warning",
+ "6cTz+x": "Now there\u2019s an easier way to move files into Dropbox \u2013 give it a try! We suggest that you move your Documents and Desktop folders, but feel free to pick anything you want. After the move, your stuff will live in your Dropbox folder and will be backed up securely to dropbox.com.",
+ "6dQcFd": "Unassigned",
+ "6e+m4u": "Adding shared folder...",
+ "6eSBFO": "The Dropbox Migration Assistant is an early access feature that makes it easy to migrate content to your {trademark_business} account from external drives, network shares and local file servers.",
+ "6ejtCb": "Your Dropbox {plus} plan was activated with a licence key. The plan is active until {date}.",
+ "6elmWe": "Mention someone",
+ "6fTvLO": "Begin setup",
+ "6fY6dL": "Already part of the team",
+ "6fja9U": "We\u2019ve finished recovering your files",
+ "6fxQ8q": "How does Paper integrate with Dropbox?",
+ "6g9u3x": "For each folder, select whether you want to share it with everyone who joins your Dropbox team. Anyone who previously had access to a folder will still have it.",
+ "6gF5ZF": "{count, plural, one {and {count} other} other {and {count} others}}",
+ "6h098p": "Control",
+ "6hVcgB": "Sign out of {browser} on {os}?",
+ "6hxm2u": "Not permanently deleted",
+ "6i37Wu": "Uploading {file_name}",
+ "6iQNae": "Download ZIP",
+ "6iUkVh": "Link will work for 30 days",
+ "6iWjEZ": "Download",
+ "6ia961": "External participant",
+ "6imIqV": "You\u2019re out of licences. Ask a team admin to add licences.",
+ "6ivAqf": "Company-managed",
+ "6jDtY9": "Help with syncing",
+ "6jTAhn": "Sorry, we can\u2019t load your ticket at the moment. Go back to the main page or try again",
+ "6kG9iu": "{count, plural, one {Download ({count} part)} other {Download ({count} parts)}}",
+ "6kdzvy": "Oops, something went wrong",
+ "6kmVkY": "{plan_name} plan",
+ "6kvA3u": "Edit and eSign PDFs.",
+ "6lJC1Y": "Billing postcode",
+ "6lbCLp": "Can I share files or folders with Basic/{trademark_plus} users if I\u2019m on a Business account?",
+ "6llddE": "We couldn\u2019t process your logo.",
+ "6m85k6": "Add to my member folder",
+ "6mg61h": "Press",
+ "6mqD/l": "{displayName} (you)",
+ "6mv1vT": "These folders will start as unsynced.",
+ "6nXDyt": "Yes! Please contact our sales team for more information. To provide the discount, a sales rep will need a copy of your 501(c)3.",
+ "6naKSh": "Great job! You\u2019ve almost finished.",
+ "6npKfP": "Addl. space",
+ "6oKVMW": "Have total control of shared links",
+ "6ooIhn": "Learn more",
+ "6opUf+": "99 years is the maximum",
+ "6osJwj": "Moderate",
+ "6ot4Xq": "{count, plural, one {Update {count} item} other {Update {count} items}}",
+ "6p7phI": "Passwords must contain 6 characters or more.",
+ "6pHgup": "e.g. 2019, 2020, 2021",
+ "6pMHV/": "Open Outlook",
+ "6pMrax": "Continue to items",
+ "6pY1SH": "Compare plans",
+ "6q1DsP": "Track views and downloads",
+ "6q467U": "Disconnect",
+ "6qKq/l": "Can\u2019t get to your courses right now. It should work later.",
+ "6qeTlr": "Organise and store signed documents automatically",
+ "6r35Th": "Gmail",
+ "6sDIou": "Manage multiple accounts",
+ "6sVXnz": "Text me the link",
+ "6sq4gU": "Ticket no. {ticket_id}",
+ "6stS1v": "Remove {device_model}",
+ "6sxDgy": "Active ({size})",
+ "6tNFBX": "Upgrade to work without limits",
+ "6tPzCg": "{price}/year",
+ "6ttZq5": "Sign-in location",
+ "6u3Wb2": "Select a payment type",
+ "6ujmko": "Share easily",
+ "6uu1c6": "Mobile access to keep valuable photos out of your camera library",
+ "6uwoJY": "Comment and annotate on files",
+ "6v0ESe": "Import Google contacts",
+ "6vBnWP": "Add folder",
+ "6w/KDv": "A confirmation email is on its way. Whenever you\u2019re ready, you can sign or send documents directly from Dropbox. You can even access Dropbox documents from your HelloSign account.",
+ "6w0ltk": "Verification email sent to {user_email}",
+ "6wETc+": "{count, plural, one {You were removed from {count} item in {folder_path}} other {You were removed from {count} items in {folder_path}}}",
+ "6wKAib": "Suspend member",
+ "6wSDP/": "If we need more info, we will follow up with you if\nyou included your email address.",
+ "6wTYJs": "Share a folder from your {team_name} Dropbox",
+ "6wVQkn": "Share link",
+ "6x0O+q": "They can access your files through the content page and they can sign in as any member in your team.",
+ "6xuQhu": "{count, plural, one {{count} day} other {{count} days}}",
+ "6yNlKf": "Thanks for signing up.",
+ "6ySAyw": "Licensed members get collaboration, sharing and security features.",
+ "6ya16w": "{count, plural, one {Try free for {count,number} day} other {Try free for {count,number} days}}",
+ "6ycN76": "Disconnect",
+ "6yehkM": "Unverified",
+ "6z63dh": "Link copied. Allows viewing.",
+ "6zUzuL": "Add from Dropbox.",
+ "6zbwL7": "Students",
+ "6zzZgm": "Create link",
+ "7+62hr": "Nice work setting up Dropbox for your team.",
+ "7+ns4J": "Size",
+ "7/Cv18": "Enable or disable Showcase, and limit what people can do with a showcase",
+ "7/Il8r": "or drag files here",
+ "7/JG7q": "You\u2019re not a member of this group, or it doesn\u2019t exist.",
+ "7/M9u2": "Upgrade",
+ "7/f5Vp": "Couldn\u2019t share, but it might work if you reload the page and try again.",
+ "7/jIQh": "We found this unusual activity in {team_name} Dropbox.",
+ "7/kbQP": "Create more with {dropbox_plan}",
+ "7/qGqI": "Please log in as {email}{br}to change your plan.",
+ "7/wZyi": "{userFirstName} can view, download and comment",
+ "70+xsG": "{count, plural, one {You need {count} more licence to import everyone in the CSV.} other {You need {count} more licences to import everyone in the CSV.}}",
+ "700Sbl": "Accessed from",
+ "700pg6": "Preparing files...",
+ "70A4h1": "If you exit without adding a PIN, those files won\u2019t be moved into your vault.",
+ "70WThr": "Edited",
+ "70fmfY": "Team folder name",
+ "71oXUo": "We\u2019re working on it",
+ "71wBuf": "No campaigns match filter",
+ "722XFg": "There was a problem starting your HelloSign trial. Please go directly to hellosign.com to start your trial",
+ "72JtuO": "Save changes?",
+ "72eFzo": "How do you want files stored?",
+ "730g/L": "You can\u2019t delete files from this computer because\n it\u2019s running an old version of Dropbox",
+ "73DZh+": "Couldn't send invitation. Try the invitation modal",
+ "73IpwD": "{extension} files can\u2019t be previewed at the moment.",
+ "73id4F": "Why should my team keep {trademark_business}?",
+ "74EU+T": "Your files and folders will look the same as they did before {date} at {time}.",
+ "74emIA": "Notification options for \"{folderName}\" have been set",
+ "75Ji2R": "Open sidebar",
+ "75p4CK": "Cancel",
+ "76AF1h": "Save to {team_name} Dropbox",
+ "76Ae2R": "Set custom space limit",
+ "76PuUS": "It looks as though you don\u2019t have any support tickets currently",
+ "77Nv0Y": "inclusion",
+ "78AHo5": "Save",
+ "78c7ji": "Verify your domain",
+ "79/WF/": "What can you do?",
+ "79DV5K": "Add licences",
+ "79P0Wl": "An older version of a file",
+ "79oZSg": "{count, plural, one {{count} user} other {{count} users}}",
+ "7Au+O9": "You can add your payment information now, so that your subscription will be renewed automatically when it expires",
+ "7BIy0C": "Create new account",
+ "7BjdGB": "More about teams & admins",
+ "7DvFoA": "This alert is triggered when a team member shares a file that contains sensitive information.",
+ "7E+ZlW": "Unlink all teams",
+ "7E4VWP": "Create shortcut in...",
+ "7E5yD4": "{file_extension} files can\u2019t be previewed. Downloads must be enabled to share.",
+ "7EEE7z": "Anyone with the link can view this file",
+ "7EJCsH": "We\u2019ll charge your iDEAL account.",
+ "7EmbCV": "You\u2019ll get an alert if someone shares malware with your team.",
+ "7FImp3": "Deliver files without using Dropbox storage space",
+ "7Fcxtx": "Space used: {space_usage}",
+ "7Fz7qP": "Current plan",
+ "7G52p4": "Priority email and phone support",
+ "7GHMsg": "This file type isn\u2019t supported.{line_break}For best results, select a PNG or JPG file.",
+ "7GlqMJ": "Preview",
+ "7GmJbG": "As much space as your team needs",
+ "7H2qkE": "Purchase",
+ "7H4sbU": "Created on {date,date,::MMM d, yyyy} at {date,time,::hhmm}",
+ "7HaAgB": "Hide preview from buyers.",
+ "7II8Vq": "{numOfPurgedFolders, plural, one {1 folder was permanently deleted by a member. Don\u2019t worry, all of the contents were already past their retention dates.} other {{numOfPurgedFolders} folders were permanently deleted by a member. Don\u2019t worry, all of the contents were already past their retention dates.}}",
+ "7ITdJ0": "Learn more",
+ "7IVEXg": "Get to all of your files and share them with anyone, from anywhere.",
+ "7Isi2J": "This link isn't quite right",
+ "7Iw06C": "Reason for cancelling (optional)",
+ "7J6IUj": "This file is a package file and can\u2019t be uploaded directly. To upload a package file via the web, try zipping it first.",
+ "7JfaDL": "No one has worked on this file in the past 3 months.",
+ "7Ke97p": "You do not have permission to edit this folder.",
+ "7KlMwN": "Unlock vault",
+ "7M7SRT": "This email can\u2019t be deleted.",
+ "7N2lmu": "Item",
+ "7NLYW8": "The HelloSign integration has been disabled by your admin.",
+ "7NTTlT": "after last activity",
+ "7NYfYb": "YOUR ITEM {name} IS READY TO BE SHARED!",
+ "7Ni7Qd": "Send large files \u2013 up to 100 GB \u2013 securely to any recipient, even if they don\u2019t have Dropbox.",
+ "7O5q1R": "Graphs and charts display incorrectly",
+ "7O9HTU": "You have removed your own access to this file.",
+ "7Oex9C": "Post",
+ "7OxRhv": "Please enter your surname",
+ "7P/SUF": "There was a problem unstarring {item_name}",
+ "7PIeoi": "Two-step verification security issue",
+ "7QAlX9": "This visualisation is an animated illustration that shows a blue serpent shape slowly filling up with red colour until it overflows. It\u2019s meant to playfully illustrate being out of Dropbox storage space.",
+ "7QBrxY": "Move right",
+ "7QTXwc": "In folder",
+ "7QwtIs": "Yes, I\u2019ve removed the malicious software",
+ "7Qzez9": "accessible on any connected device",
+ "7R2/qq": "Does Paper integrate with other applications?",
+ "7R7Sto": "Link copied.",
+ "7RW/1O": "{space} of cloud storage",
+ "7RiLQx": "How to fix common issues with Selective Sync",
+ "7RnoYO": "Slide {index}: {status}.",
+ "7SMyL2": "Talk with a real person in minutes during business hours",
+ "7SjgaG": "Disconnect",
+ "7TAO2F": "Third-party integrations",
+ "7TFFg+": "You successfully verified {domain} and its subdomains. Onboarding accounts with @{domain} emails will now be faster and easier.",
+ "7TJxA6": "You can earn more space by referring your friend to Dropbox! You\u2019ll get a {referral_amount} bonus when they install Dropbox on their computer.",
+ "7TnyoB": "Go to Dropbox",
+ "7TujdZ": "{count, plural, one {{count} file} other {{count} files}}",
+ "7V5b6j": "Deleted {time_ago} by {name}",
+ "7V9Fkg": "{count, plural, one {Anyone with the link can view this folder. Expires in {count} day. Downloads disabled.} other {Anyone with the link can view this folder. Expires in {count} days. Downloads disabled.}}",
+ "7VEMQ1": "Your team no longer has full use of the admin console. To keep using {trademark_business}, add your billing info now.",
+ "7VEW7B": "Plans & upgrades",
+ "7VEvCe": "We just sent an email to {email}. Click the button in the email to verify your address and finish adding your secondary email address. If you can\u2019t find the email, check your spam folder.",
+ "7VGYSH": "OK",
+ "7VLSWU": "Delete permanently",
+ "7VN/eT": "{monthly_price} per user per month",
+ "7VY1E1": "Off, no flash function",
+ "7VYYNS": "Don\u2019t cancel",
+ "7VaQw6": "Change photo",
+ "7W2jrM": "Folders in the shared workspace have stopped syncing and no new files can be added. To get more space, upgrade to {trademark_business}.",
+ "7W9Igi": "Learn more",
+ "7WqO2X": "Get started with your personal Dropbox",
+ "7WtSQw": "Admins",
+ "7X70ZB": "Remind me later",
+ "7XPZDG": "Link your Dropbox content to projects, tasks and team to-do lists.",
+ "7XPmFF": "Something went wrong. Please close this window and try again.",
+ "7XWgdi": "{value} TB",
+ "7XqkzT": "Need more time to decide?",
+ "7Y7wHx": "SUSPENDED",
+ "7YQq8z": "Try reloading the page.",
+ "7Yab1V": "{count, plural, one {Couldn\u2019t paste {count} item.} other {Couldn\u2019t paste {count} items.}}",
+ "7ZfcJ/": "Add members to '{'group_name'}'",
+ "7a3rOL": "Note: these packages install an open-source helper application. The version of this application does not change as frequently as the main Dropbox application. These packages will always install the latest version of Dropbox for Linux.",
+ "7a4yA6": "Their docs will appear as \u201c.paper\u201d files on their computer, and they can then move them around just like any other file.",
+ "7a6RSM": "Help with teams and admins",
+ "7aBsbD": "Add any email address that ends in {headDomains} or {lastDomain}",
+ "7aCRDJ": "Drop files and folders here",
+ "7aMkcz": "How should new files be downloaded to your computer?",
+ "7af/KI": "This Dropbox is only for work, and {name} will have admin control over this account",
+ "7aqxgu": "Choose folder",
+ "7bN4Js": "Looking for details on another plan?",
+ "7bObr8": "{count, plural, one {As a member of the parent folder listed below, {member_name} can still view \u201c{content_name}\u201d.} other {As a member of the parent folders listed below, {member_name} can still view \u201c{content_name}\u201d.}}",
+ "7bV9ju": "Edit group",
+ "7bp3ep": "Start your {trial_length}-day free trial now!",
+ "7cHGzY": "{name} viewed",
+ "7dFy6j": "Updating\u2026",
+ "7dSNRZ": "Invited {user_count} people.",
+ "7djceN": "You\u2019ve already requested a plan change. If you want to choose a different plan, first cancel your pending change.",
+ "7dyBPz": "Archived",
+ "7e4omg": "{team_name} admins can now update this setting",
+ "7eTQm2": "deleted app folder",
+ "7g1fqE": "The average user stores a mixture of photos, videos and documents. When you\u2019re setting up a backup plan \u2013 either to save device space or preserve files \u2013 it\u2019s hard to gauge how many photos and videos 1 terabyte of data can hold. 1 TB gives you the option of storing roughly:
250,000 photos taken with a 12MP camera;
250 movies or 500 hours of HD video; or
6.5 million document pages, commonly stored as Office files, PDFs and presentations. It\u2019s also equal to 1,300 physical filing cabinets of paper!
",
+ "7g5z54": "Create with Dropbox Paper",
+ "7gH+Ao": "Outlook",
+ "7gnJT/": "Remove everyone in {team_name}?",
+ "7gpSOV": "Save space now",
+ "7gy6vP": "You\u2019re upgrading to a {trademark_business} {plan} plan for the remainder of your free trial. Your new {schedule} total will be {recurring_total}, due on {date}.",
+ "7h/xn+": "Password strength",
+ "7hrPpV": "Authentication",
+ "7i9KhQ": "You\u2019re not waiting for anyone to join at the moment.",
+ "7iNoCk": "Manage admins and members in the organisation.",
+ "7iXo5j": "Send securely with Dropbox Transfer",
+ "7ivi5Y": "You started a Dropbox {plus} trial via the iOS app.",
+ "7jFHaC": "You\u2019ll become part of the primary team, and merge your content, members and billing.",
+ "7jU61l": "All done!",
+ "7k/CMy": "You\u2019ve tried to log in too many times. Please try again in a few minutes.",
+ "7kQoXu": "Organise and track work from start to finish. Help your team stay updated on who's doing what.",
+ "7kYVzF": "Something went wrong.",
+ "7kgsyk": "Cancel change",
+ "7kj19u": "{index}. Sign up",
+ "7lAnTg": "No matching user",
+ "7lc6X0": "Times shared",
+ "7lciQm": "External sharing",
+ "7lwk8l": "Asked to join on {joinRequestStateDate}",
+ "7mFZKN": "Your admin set your institution domain. To use a different institution this time, enter the domain above.",
+ "7mcdEU": "To unfollow, visit \"{folderName}\".",
+ "7mjTSW": "Agree",
+ "7mpbMB": "How to sync files between computers",
+ "7mzX/k": "Dropbox Paper admin tools",
+ "7nKLv9": "With the Paper desktop app, you can manage tasks, run meetings and move your projects forwards. Available now on Mac and Windows.",
+ "7nUdHD": "You don\u2019t have permission to manage membership of this folder",
+ "7nlCJP": "Permanently delete team folder?",
+ "7nnCz9": "Shared folder",
+ "7ns7JF": "Due on {day,date,::MMMdd} at {time,time,::hhmm}.",
+ "7oDUUP": "Couldn\u2019t create report.",
+ "7oJ2Rp": "No schedule",
+ "7obT6s": "Unknown error when sending push notification",
+ "7ojjS8": "There was a problem. Please reopen the add member window",
+ "7oqHAY": "Invite-only access",
+ "7oxXPt": "To link your computer, you need to enter a security code. Enter the security code generated by your mobile authenticator app.",
+ "7pLIpL": "Licences",
+ "7pTLBy": "{trademark_plus} trial {ios}",
+ "7qCjrJ": "Create an account or sign in to accept",
+ "7qt4kq": "We\u2019d love to hear from you",
+ "7r0nc8": "You\u2019re cancelling your scheduled changes. Your {trademark_business} {plan} plan will be renewed on {date} and you will be billed {schedule}.",
+ "7r1Wq8": "Reset your PIN",
+ "7raSCH": "Full name",
+ "7rgxnM": "Folder",
+ "7rjTvN": "The gifted subscription will begin after the recipient\u2019s current subscription expires.",
+ "7rk24L": "{count, plural, one {{dropbox_basic} only supports 1 device. Upgrade to {dropbox_plus}\n to stay signed in to more than 1 device at a time.} other {{dropbox_basic} only supports up to {count} devices. Upgrade to {dropbox_plus}\n to stay signed in to more than {count} devices at a time.}}",
+ "7rnsEt": "Activated on {activated_date}",
+ "7sBDNd": "Refund request",
+ "7sFPiN": "Added \u201c{folder_name}\u201d Learn more",
+ "7sVO1G": "{count, plural, one {Sent in {count} day} other {Sent in {count} days}}",
+ "7scpW3": "Link",
+ "7sx9IB": "New hold",
+ "7t1Y5l": "Request e-signatures with DocuSign",
+ "7tTy3M": "Single sign-on (SSO) integrations",
+ "7tWmUr": "You won\u2019t get an alert if a member shares sensitive information outside your team. You can turn off scanning and labelling separately if you want.",
+ "7ta/tB": "Required",
+ "7u/Z5D": "Credit card",
+ "7uyY2y": "Import CSV",
+ "7v6dcE": "{count, plural, one {Anyone with this link and the password can view the file. Expires in {count} day. Downloads disabled.} other {Anyone with this link and the password can view the file. Expires in {count} days. Downloads disabled.}}",
+ "7vgBww": "How satisfied are you with the Family Room folder?",
+ "7w7C+H": "Ask to join",
+ "7wBihs": "Companies using {trademark_business}",
+ "7wbXbV": "Start free trial",
+ "7wz7Ok": "Set to default",
+ "7xDVJJ": "If you cancel your plan, your computer backup will remain available but it\u2019ll be limited to the {basic_space_short_form_gb} storage quota of the {dropbox_basic} plan. If you exceed your quota, automatic backups will stop.",
+ "7xM4Ul": "Privacy & Terms",
+ "7xQbH0": "You added this file",
+ "7xX0jJ": "Feedback",
+ "7y+Tal": "when billed yearly",
+ "7y/t8n": "Point your phone camera at your computer until the download starts.",
+ "7yJWDx": "Link expired, request a new one.",
+ "7yrmLd": "Dropbox needs to verify your email address {email} to enable your Public folder. It\u2019s as simple as clicking the link in the verification email we send you.",
+ "7z4nSY": "Your current plan details (trial ended on {locked_date})",
+ "7zpJoc": "Control access to your transfer by setting an expiry date and password.",
+ "8+T625": "Export",
+ "8+Vj2S": "You\u2019ll get everything in your{br}Dropbox account",
+ "8/Jo8j": "Configure the details",
+ "8/w9ir": "Create new file",
+ "807W+j": "The folder name can\u2019t start with a dot (.)",
+ "80S+yG": "{displayName} \u00b7 Invited \u00b7 Resend invitation",
+ "819C/n": "{name} shared this file with {entity}",
+ "81JfmS": "Ask the community",
+ "81NCFj": "Get the app",
+ "822J3q": "Nothing, they won\u2019t be deleted forever or hidden. Only the owner can delete these items permanently.",
+ "825yNA": "Artist",
+ "82QKyx": "From",
+ "82TDDR": "Collapse",
+ "82WU9J": "Anyone in your Dropbox team with this link can view the folder.",
+ "82iDDY": "{name} download has been paused",
+ "83SsJ1": "{domainsCount, plural, one {Save yourself some work and let people with an {domains} email join your team automatically.} other {Save yourself some work and let people with {domains} emails join your team automatically.}}",
+ "84NDsw": "You don\u2019t have permission to change the settings on this folder.",
+ "84r4yx": "They can join by invitation only",
+ "84rx9D": "Get Dropbox for work",
+ "84tBCx": "Get help in minutes by chatting with Dropbox support",
+ "85BIRm": "There is no data available from the past 90 days.",
+ "85a6yC": "Revoke all",
+ "85eDyB": "{first_name}, here are some Dropbox accounts you can join to work better together.",
+ "85p8vn": "One or more names or email addresses you entered are invalid.",
+ "868B4V": "Continue",
+ "86SUHm": "If you'd like to use a different account to manage your team, you can",
+ "86nreK": "Drop files and folders here",
+ "875e4O": "To",
+ "87FcVM": "Back to admin console",
+ "87faBp": "Connect Canvas to your Dropbox account to easily attach files to courses or submit assignments without switching apps.",
+ "87vAZJ": "you@mail.co.uk",
+ "88ah3M": "Help us improve Dropbox Vault",
+ "88tm6t": "Contact sales",
+ "897rw5": "Closed requests",
+ "89Buqa": "Delete permanently",
+ "89T3/H": "Create",
+ "8A5tqO": "Enter your security code",
+ "8AK5Pp": "Please enter a phone number",
+ "8ArX24": "Open on Dropbox",
+ "8BEeyh": "How to cancel/refund your subscription",
+ "8BMTr0": "Send files up to 100 GB with Dropbox Transfer, including additional customisation options",
+ "8Blp1K": "{intended_recipient} was given access, but you\u2019re signed in as {user_email}.",
+ "8BpVBE": "Confirm delivery with download notifications",
+ "8BygYK": "14 logos that represent the companies that integrate with Dropbox.",
+ "8C0qsm": "You\u2019ll be able to download any of this content by double clicking",
+ "8C6Dyg": "Average",
+ "8CPGr0": "By user type",
+ "8CU33U": "When a new device or browser signs in to your Dropbox account, you\u2019ll get an email straight away with everything we know. To figure out if this was you, have a look at the email:",
+ "8DDD1m": "1 hour",
+ "8DYgdR": "Oldest devices (by last activity) will be removed and disconnected to fit limits",
+ "8Ddcdc": "Channel partner",
+ "8Dtg9+": "BETA",
+ "8EBzlA": "Invite people to your team and start using your shared workspace to organise and access files easily.",
+ "8EZlSa": "{count, plural, one {Anyone in your Dropbox team with this link and the password can view the file. Expires in {count} day. Downloads disabled.} other {Anyone in your Dropbox team with this link and the password can view the file. Expires in {count} days. Downloads disabled.}}",
+ "8Eo5OI": "We\u2019ll send them your request, or untick the team if you want to continue on your own instead",
+ "8FZe3I": "Acknowledged",
+ "8GWs/W": "W",
+ "8HLRwx": "Download the installer",
+ "8HepWx": "Updates every 8 hours",
+ "8Hvsub": "Partial",
+ "8I3UCo": "This file cannot be previewed. Please check that your file extension is correct.",
+ "8Izk7L": "{sharedFolderCount, plural, one {Shared {sharedFolderCount} folder with you} other {Shared {sharedFolderCount} folders with you}}",
+ "8J+4aQ": "PayPal transaction ID",
+ "8J2bi3": "Create report?",
+ "8JgKqx": "Moderate",
+ "8JpgPh": "Unsynced",
+ "8L6T7O": "Save",
+ "8LdEP+": "Block",
+ "8LzcOp": "Let members send messages, share files and meet over video conferencing directly from Dropbox.",
+ "8MPV7A": "See all results for \u201c{query}\u201d",
+ "8MQcfN": "From {date}, we\u2019ll charge you {scheduled_total} per month on your iDEAL account.",
+ "8Mptnf": "Collect files from multiple people, even if they don't have a Dropbox account, while keeping file submissions visible to you only.",
+ "8N7KT8": "{count, plural, one {Restored {count} file.} other {Restored {count} files.}}",
+ "8NCBLs": "There was an error sending your link",
+ "8NRsMQ": "Delete item",
+ "8Nu/kD": "Admin tools and extra security",
+ "8O0P9k": "Under Cookies, select Don\u2019t block cookies.",
+ "8O9Ml7": "Your team\u2019s collaborative workspace",
+ "8OTJco": "Data retention",
+ "8OW3yL": "Team admins",
+ "8OkWFM": "Choose a new 6-digit code that you\u2019ll use to unlock your vault.",
+ "8OxgrK": "Keep your business on track",
+ "8PCF0I": "Custom schedule",
+ "8PKqBc": "Require a physical key to be plugged in to your USB port to sign in.",
+ "8PPImn": "Creating view link...",
+ "8PW7Kh": "Send and receive faxes online. Covers 70+ countries.",
+ "8Ppp84": "Opacity",
+ "8QIhOs": "You work hard for your clients. Dropbox works hard for you.",
+ "8QjKPo": "Everything at your fingertips \u2013 on any device",
+ "8QrZLM": "Choose how you\u2018d like to connect",
+ "8QvHCJ": "Free trial will end on {date}",
+ "8R/Iui": "{name} moved this file",
+ "8Rak3x": "(To choose your own account, please sign in.)",
+ "8SI5mc": "{count, plural, one {You and {count} other viewed} other {You and {count} others viewed}}",
+ "8T61hZ": "members",
+ "8TCdrR": "Try eSignatures by HelloSign",
+ "8TImcP": "Start a transfer",
+ "8TIme3": "Import CSV file",
+ "8TOnv7": "Are you sure you want to delete {filename} from your Dropbox?",
+ "8TOykk": "Settings saved.",
+ "8TnhFk": "Users",
+ "8U/qbn": "Share with Dropbox",
+ "8U6hwT": "{count, plural, one {You cannot have fewer licences than team members, and your account has {minPlanLicenses} licence by default.} other {You cannot have fewer licences than team members, and your account has {minPlanLicenses} licences by default.}}",
+ "8UD/7h": "To see who can access a folder, check here.",
+ "8UO4DP": "Your team will get free access soon.",
+ "8UcRmi": "Fired, red-eye reduction, return not detected",
+ "8UuB5I": "Alerts by severity over the last 7 days",
+ "8Uwt1Z": "Get a quick overview with a glance",
+ "8WOGDU": "Your Dropbox {professional} plan will be converted on {conversion_date}. Your {period} total will be {price} (including taxes).",
+ "8X8aMD": "Ctrl + z",
+ "8XBryx": "Active",
+ "8XPgxq": "Remote device wipe",
+ "8XbArc": "Tips for {trademark_business}",
+ "8XnuVp": "Everyone\u2019s files",
+ "8YUt40": "Change PIN",
+ "8YeSj9": "HR",
+ "8YsFcN": "Your account will be merged into the {team_name} Dropbox account, where you\u2019ll have\na private area for your stuff. {team_name} admins will be able to manage your files and Paper docs.\n{team_name} has disabled Smart Sync, so you\u2019ll be signed out of Dropbox and\nonline-only files will be downloaded to your hard drive next time you sign in.",
+ "8Yy3df": "Pinned 3 days ago",
+ "8ZSwph": "Enterprise admins can manage your team\u2019s files and see team activity to help investigate issues.",
+ "8ZnYLu": "Item name",
+ "8a8x3p": "You can continue using Dropbox with your team, but you\u2019ll be losing:",
+ "8aL8p/": "{credit_type} ending in {last_4}",
+ "8ajQZb": "These devices and browsers are signed in to your account. If any listed below are no longer in use or they look unfamiliar, you should sign them out.",
+ "8bWrbN": "Restore",
+ "8bsdjD": "Two astronauts bobbing up and down on top of a golden road leading into outer space.",
+ "8btGV1": "Clone campaign",
+ "8cKJMG": "We couldn\u2019t find a Dropbox account matching the email address {email}. Sign up for a new account or get help signing in to an existing account.",
+ "8ciQRL": "I understand that our team can\u2019t leave the organisation unless an enterprise admin removes us",
+ "8cyvqx": "Open the desktop app",
+ "8dJybY": "Your {trademark_business} plan will change to {schedule} billing immediately, and you\u2019ll be refunded any difference. Your new {schedule} total will be {scheduled_total}, starting on {date}.",
+ "8ds+MV": "All team admins",
+ "8e1IBP": "Sharing time",
+ "8e6dNr": "Unlock editing",
+ "8e8X2Q": "{name} added this file",
+ "8eIJRU": "Ready to edit?",
+ "8eL0jH": "Fired, return detected",
+ "8eZVYB": "Please agree to the Dropbox Terms",
+ "8eZfi5": "Limit the use of certain Dropbox features on members\u2019 phones and tablets.",
+ "8eiYiI": "Choose who can add people to folders.",
+ "8fJdJ4": "Share this file",
+ "8fj+Bq": "Starts as unsynced",
+ "8fuytD": "Preview",
+ "8gVsSR": "{count, plural, one {{name} moved {count} item into this folder} other {{name} moved {count} items into this folder}}",
+ "8gmJYG": "Please select an issue that you need help with from the list below:",
+ "8gpuN1": "Couldn\u2019t set to your default workspace. Please try again later.",
+ "8grOst": "Un-acknowledge",
+ "8h+ZVh": "Protect work in Dropbox",
+ "8hDEqq": "{count, plural, one {This app will be set to block, preventing your team from connecting it to Dropbox. This won\u2019t disconnect the app for any team members who already have it connected.} other {These apps will be set to block, preventing your team from connecting them to Dropbox. This won\u2019t disconnect the apps for any team members who already have them connected.}}",
+ "8hnMBh": "Reason",
+ "8hyMaE": "Connect",
+ "8i5CD2": "We can make sure files stay protected \u2013 however you decide to share them.",
+ "8j6sBp": "Renaming",
+ "8jiOi9": "You\u2019ll be refunded for your remaining subscription",
+ "8jjoFh": "You are already connected to this team",
+ "8k8t2N": "Download and install the Dropbox desktop app on your computer",
+ "8kGMMY": "To",
+ "8kcKrE": "Edit now",
+ "8kcx/V": "This link was created by {display_name}. To manage access to the file, sign in as this member.",
+ "8lAMhk": "deleted video",
+ "8lI61Z": "Single sign-on",
+ "8ltwDt": "Templates",
+ "8lzhuK": "Security",
+ "8m53T6": "Upload file and try",
+ "8mQgTV": "In the top right-hand corner, click Tools {settings}{chevron_right} Internet options {chevron_right}Privacy {chevron_right}Advanced",
+ "8mUNoz": "Kick-start your team\u2019s next project",
+ "8mkUdI": "You may need to check spam or unblock no-reply@dropbox.com.",
+ "8nB2Fu": "Not authorised to browse {path}.",
+ "8nJFgX": "Sync files across your devices",
+ "8nZWnh": "Enter a valid group name",
+ "8nsyYY": "Last edited by {createdUserName} on {creationTime}",
+ "8o4LmU": "You have unsubscribed from the file.",
+ "8o9wUX": "See all deletion and version history of your files for an unlimited period of time.",
+ "8oHG0B": "{item_name}",
+ "8oKDb5": "Invite friends",
+ "8pL0xd": "Collect ideas and connect all kinds of files in a single doc.",
+ "8pOPp+": "Your free trial period won\u2019t be affected. You will be charged after your free trial ends on {trial_end_date} and your plan will transition without interruption.",
+ "8pTIBW": "Email a Dropbox file as a link via Microsoft Outlook",
+ "8ph+84": "Cancel",
+ "8puerm": "Free up hard drive space automatically by moving inactive files to the cloud.",
+ "8qoK+u": "Get mobile app",
+ "8qrqD1": "Send for signature with HelloSign",
+ "8r0I1I": "You\u2018ll no longer merge with {primary_team_name}, and both teams will remain separate.",
+ "8r1z6a": "Share",
+ "8r3ApF": "Paper desktop app",
+ "8r3iOB": "Both Smart Sync and Selective Sync can help you save space. Selective Sync is an older feature that allows you to choose files and folders to sync with Dropbox. Synced files take up hard drive space, and everything you don\u2019t sync can\u2019t be seen or opened on your computer. With Smart Sync, you can choose to make files \"online only\". Online-only files take up practically no space on your hard drive, but you can still see them, rename them, move them and preview them on your computer \u2013 just like normal files. And when you need them, just open them and they\u2019ll be synced automatically.",
+ "8r7g2J": "Presentations",
+ "8rOTAS": "2 GB of space and limited sharing features",
+ "8rZcLe": "If you purchased your subscription through Google Play, you'll have to request your refund from Google directly.",
+ "8rlotY": "If you remove {name}, they won\u2019t be able to see future changes to this shared folder. Bear in mind that anyone who can access the parent folder will still be able to access this folder.",
+ "8sfQMH": "{durationTimeInDays, plural, one {{durationTimeInDays} day since last modification} other {{durationTimeInDays} days after last activity}}",
+ "8sgmOk": "An unexpected error occurred",
+ "8st5dU": "\u201cHearst has more than 360 businesses. Dropbox makes a significant impact by providing a central hub for our teams to access all of the content they need from anywhere, on any device. It has completely changed the way these teams work.\u201d",
+ "8stY8L": "Require password",
+ "8tm1dH": "{count, plural, one {{count} hour left} other {{count} hours left}}",
+ "8uJf17": "{price} charged yearly",
+ "8uKnLO": "This file was skipped because it\u2019s an internal system file.",
+ "8upVNy": "You can add, modify and remove them from your Dropbox account",
+ "8vR+GP": "{count, plural, one {Only you can view via this link. Expires in {count} day. Downloads disabled.} other {Only you can view via this link. Expires in {count} days. Downloads disabled.}}",
+ "8vhXDd": "Updated",
+ "8vhrE8": "Exit without moving files?",
+ "8vkOAo": "Please note: changing your billing location could impact your applicable tax rate.",
+ "8vpbOk": "Unlimited signature requests",
+ "8w63fP": "{number, plural, one {Viewed {number,number} year ago} other {Viewed {number,number} years ago}}",
+ "8wc14X": "Here\u2019s where you can see who has access to the content you\u2019re looking at.",
+ "8wjxn4": "Remove",
+ "8x+8m0": "Open in Paper",
+ "8x9N0T": "Members of {parent_folder_name} folder won\u2019t be able to access\n {folder_name}.",
+ "8y1DkX": "Download Dropbox for free",
+ "8y1aOx": "Support",
+ "8yAvwd": "Only you have access",
+ "8yBNxI": "Collect inspiration, exchange ideas in real time and get feedback.",
+ "8yPR3T": "To use Smart Sync, you\u2019ll need to allow a system extension from Dropbox. Click Continue below, then click OK on the alert that appears.",
+ "8ybz4F": "Active session limit",
+ "8ykm0G": "Crop, rotate and fine-tune colours. Add filters and text, all from your browser.",
+ "8zDWI3": "{count, plural, one {You moved {count} item from {src_folder} to this folder} other {You moved {count} items from {src_folder} to this folder}}",
+ "8zuxGM": "Team shared folder",
+ "9+RQpr": "Which assignment?",
+ "9+Zj9K": "Campaign info",
+ "9+lBHX": "Search",
+ "9/pd+A": "/month",
+ "9/uuKb": "Remove me from this folder?",
+ "909Pdu": "Change admin role",
+ "91G0fl": "Something not working?",
+ "91fy3Z": "4 of 4",
+ "923/JO": "You do not have permission to join the family. Please refresh the page and try again, or contact your family administrator for help.",
+ "92TP40": "Disable this link on a specific date.",
+ "92Vx1f": "Can\u2019t show link. Something\u2019s wrong with this file.",
+ "92YBd9": "Paper is a single space for your team to create and share work \u2013 it displays everything from video and images to code and sound beautifully.",
+ "92rCGV": "Dropbox makes it easy to automatically back up the photos on your iPhone or Android device. When you enable camera uploads, your photos will upload to the camera uploads folder in your Dropbox account. Camera uploads also has an optional feature you can set so your photos are backed up the moment you take them, from your mobile device to Dropbox. After your photos have been uploaded, you can move them to a different folder in your Dropbox account if you\u2019d like.",
+ "92wq0F": "No file types entered",
+ "93LvA5": "There was an error sending the link",
+ "93O1Dq": "Martin-Sign-Company",
+ "93VJD1": "Go to Event details",
+ "93zKII": "You moved the {card_name} card with this file attached to {list_name}",
+ "941ynO": "Your team doesn't work with anyone outside {teamName} at the moment.",
+ "943V9h": "Select an issue type",
+ "94Vu4C": "
You removed a connected web browser, device or app from your Dropbox account. Let\u2019s change your password to ensure that only you can access your Dropbox.
{pw_policy}Learn more about how to set a strong password.
",
+ "94bfPu": "Create the file you need for the task at hand. Edits to Google Docs, Sheets or Slides are saved back automatically.",
+ "94cLJC": "Invite members",
+ "94d0Gz": "Couldn't find vault. Please check with the owner.",
+ "95OsPW": "Please enter first name",
+ "95Rtq3": "You\u2019ll get everything in {trademark}, such as 1 TB (1,000 GB) of storage space, offline file access, remote device wipe and priority email support \u2013 plus more features to make your work shine.",
+ "95l3d4": "Importing {service_name} contacts",
+ "95x9XL": "Save your email attachments to Dropbox",
+ "96Dl7E": "Combine accounts",
+ "96RMa4": "Desktop app",
+ "96Vf8l": "The desktop app syncs files on your computer to dropbox.com, so you can get your stuff from anywhere.",
+ "96hRce": "Keep passwords encrypted to protect against hacks",
+ "96hcDu": "You don\u2019t have access to App Centre with your team account",
+ "96pf9f": "Sorry, this content couldn\u2019t be requested.",
+ "96ulM9": "It doesn\u2019t look as though you\u2019re on a paid {dbx_biz} plan",
+ "97ZLPM": "The watermark could not be saved because your account is over quota.",
+ "98DfV5": "This setting is turned off for all files in this folder.",
+ "98acYM": "Communicate",
+ "992DNz": "iOS/Android",
+ "99UyMq": "Standard rates apply.",
+ "99mfpn": "You\u2019ll join the team as {email}, then you can decide which files you want your team to access.",
+ "9AK/tz": "Manage who can access Paper links.",
+ "9AyxI5": "Your shared folders and files will appear here so they\u2019re easy to find.",
+ "9B0qpj": "Accept invitation",
+ "9B60nq": "Invited {amount} users.",
+ "9BtwiW": "Team admin, user management admin",
+ "9C/lc5": "Can\u2019t @mention someone in your personal Dropbox.",
+ "9C1BM4": "You have successfully unlinked Slack.",
+ "9C6Zh7": "Click on 'Open with' and select Smallpdf to open PDFs.",
+ "9C7dis": "Previous state",
+ "9CcFdg": "Delete files from lost or stolen devices with remote wipe",
+ "9Co1fJ": "Account security settings",
+ "9DNE0x": "Check out our Help Centre",
+ "9DfCEL": "Thanks! You\u2019re all done.",
+ "9DkYwJ": "{count, plural, one {Anyone with this link and password can edit the file. Expires in {count} day. Downloads disabled.} other {Anyone with this link and password can edit the file. Expires in {count} days. Downloads disabled.}}",
+ "9E8xUP": "Go to items",
+ "9EtAz0": "Hi,{display_name} ({email}) invited you to view the file \"example.pdf\" on Dropbox.",
+ "9FCQD8": "{count, plural, one {Members of the file with this link can view. Expires in {count} day. Downloads disabled.} other {Members of the file with this link can view. Expires in {count} days. Downloads disabled.}}",
+ "9FRoAV": "2. Choose your plan",
+ "9FUQpC": "Got it",
+ "9Fi8TL": "Are you sure you want to remove the shared folder {file_name} from your Dropbox? This shared folder will stay shared with other members and you can re-add it later.",
+ "9GDOEf": "Invite your team members",
+ "9GwZlG": "Personal Space",
+ "9H6BKX": "See who downloads",
+ "9HQPwW": "Do you have any discounts for non-profits or educational institutions?",
+ "9HWjA9": "Error opening file",
+ "9I8Dg4": "Let {user_name} keep a copy of your Family Room folder",
+ "9IYzCq": "You removed {entity} from this file",
+ "9IZPhQ": "Time\u2019s up",
+ "9Ihzjr": "Show who viewed files in this folder to team members and people who can edit.",
+ "9JWHIG": "Unable to execute the required action",
+ "9Jas6o": "Date",
+ "9K9jT1": "As of your first renewal date in 2018, your plan will adopt the new Advanced plan pricing. Your new {schedule} total will be {recurring_total}.",
+ "9KVCqi": "If you cancel your plan, your account will drop from {quota} to {basic_space_short_form_gb} of space (plus any bonus space earned previously)",
+ "9Koui6": "Dropbox community",
+ "9L15vT": "Are you sure you want to remove admin permissions from {display_name}?",
+ "9LwV6I": "Access your Dropbox account from any Windows, Mac, Linux, iOS or Android devices.",
+ "9MDXgW": "To add a Dropbox team folder, you\u2019ll need to upgrade first.",
+ "9Mpjvl": "Share files & folders",
+ "9N3N8W": "If relevant, please describe the steps to reproduce this issue.",
+ "9NkAGq": "Upload folder",
+ "9Oab9R": "You purchased Dropbox {dropbox_plan} via the iOS app. Your plan will expire on {end_date}.",
+ "9OveuT": "Removed",
+ "9PMXaG": "recommended",
+ "9PRHPf": "Disabled",
+ "9Q/1TS": "Saving to your personal Dropbox...",
+ "9QCMuo": "Did you know you can request an instant refund for your account without the help of an agent? To request a refund of your subscription, sign in to your Dropbox account and click Request a refund of your Plus or Professional subscription to be taken directly to your refund page.",
+ "9QLDg8": "Safety first",
+ "9QTLF+": "Light",
+ "9R5mul": "Get Dropbox for mobile",
+ "9R9t69": "Default file browser",
+ "9RBFNn": "Star",
+ "9RkYIu": "Continue with installation",
+ "9Ru4ky": "{count, plural, one {Up to {count} member, easy family sharing and {plan_space} of storage.} other {Up to {count} members, easy family sharing and {plan_space} of storage.}}",
+ "9TDn8O": "{count, plural, one {{name} and {count} other viewed} other {{name} and {count} others viewed}}",
+ "9TLSvT": "Cancel {plan} plan",
+ "9TVXpy": "Task title",
+ "9TcKh/": "Sign-in attempt expired.",
+ "9U9gjD": "You rolled back {single_item_name}",
+ "9UOHBZ": "Custom branding",
+ "9UdVyB": "They\u2019ll receive a copy of the Family Room folder in its current state, but won\u2019t be able to see future changes.",
+ "9Ui6u2": "More than {yearsSinceCutoff}",
+ "9UmkJy": "Your request to join was declined",
+ "9V9G5m": "Cancel your Plus or Professional subscription",
+ "9VRfot": "Please add an icon for this app",
+ "9VXwXH": "Paperless signing that scales with your business.",
+ "9VlSbF": "Manual",
+ "9W0BXd": "Security codes will be generated by an authenticator app",
+ "9WMEfp": "Your computer was successfully linked to your account",
+ "9WTRXc": "Name updated.",
+ "9X/XH4": "",
+ "9XDuy+": "Can view, edit, delete, comment on and save files",
+ "9XdwOI": "Try Dropbox Plus for passwords and more",
+ "9Z4Ptj": "Items shared. Type, size and path",
+ "9Z9r19": "Dropbox is recovering your files",
+ "9ZZYrU": "We couldn\u2019t find a Dropbox account matching that email address.",
+ "9ZbCky": "Couldn\u2019t undo paste.",
+ "9ZczZk": "Can\u2019t save. Markup isn\u2019t available for this file type.",
+ "9ZqdLn": "deleted code",
+ "9Zs+OY": "\u201cProtected Health Information\u201d",
+ "9Zx9uj": "Subscribe to notifications",
+ "9a+Bwx": "Other",
+ "9a9FOw": "{folderCount, plural, one {{folderCount,number} shared folder} other {{folderCount,number} shared folders}}",
+ "9aeamM": "They should try not to use Dropbox for a bit",
+ "9alAnt": "your browser",
+ "9alsnN": "Couldn't change {name}'s role.",
+ "9arWaU": "If there is a conflict or inconsistency between the terms of this HIPAA BAA and the remainder of the Agreement, the terms of this HIPAA BAA will govern to the extent of the conflict. Except as expressly modified or amended under this HIPAA BAA, the terms of the Agreement remain in full force and effect.",
+ "9b+utM": "Send large files with Transfer",
+ "9b3/OP": "Store a token with Facebook",
+ "9b6lrI": "A guest viewed this file",
+ "9byxfZ": "Can\u2019t find it here?",
+ "9cSdtw": "Update your browser",
+ "9cj0Es": "Set a password",
+ "9eGRHz": "Drag and drop",
+ "9f3QFy": "It\u2019s important",
+ "9fCVcb": "After a meeting you host is recorded to Zoom cloud, the recording will be copied from Zoom cloud to your Zoom folder in Dropbox. We\u2019ll notify you when files are copied. This feature requires certain settings in your Zoom account to be enabled.",
+ "9fLrh/": "{count, plural, one {Skipped {count} person who is already a member of the team.} other {Skipped {count} people who are already members of the team.}}",
+ "9fMG6q": "Extended version history",
+ "9fef95": "Loading your folders\u2026",
+ "9foXwb": "Please enter your company size.",
+ "9gQpmR": "If you\u2019re an admin for a {dbx_biz} account, you can allow\n access to files synced to one top-level team folder. More info.",
+ "9h6nkS": "yourdomain.com",
+ "9hKn1S": "Filter to {folder_name}",
+ "9htZoO": "Members of the folder with this link can view. Downloads disabled.",
+ "9isGfn": "no. {ticketId}",
+ "9j1jzb": "Couldn\u2019t grant access to {requester_email}",
+ "9j7wtG": "Anyone in your {trademark_business} team with this link can view the file. Downloads disabled.",
+ "9jay6Z": "Our business is changing to {trademark_plus} or {trademark_professional}",
+ "9kKUEZ": "Years",
+ "9kVfTz": "Cancel",
+ "9kg6I+": "Changing this will rename the Dropbox folder on all team members' computers.",
+ "9lplRT": "Edit '{'group_name'}'",
+ "9lsUlB": "Name",
+ "9m9zTf": "Primary phone number",
+ "9n/oNu": "Specific team admin/groups",
+ "9n5hWh": "{explanation}",
+ "9oBl00": "Edit",
+ "9oT838": "The stuff in this space is shared with everyone in your team.",
+ "9puzWn": "To invite members with a link, add licences.",
+ "9q9Jhs": "Change plan",
+ "9qXmaf": "Any",
+ "9qoOeF": "Try for free",
+ "9s47b8": "Receipt",
+ "9s4M13": "Shared link URL",
+ "9sggQN": "Company size updated.",
+ "9skvJU": "Automatically save edits to Microsoft Office files in Dropbox, and always work from the most up-to-date version.",
+ "9suezP": "File does not exist.",
+ "9tHV6e": "Your Dropbox deployment was purchased through {reseller_name}.",
+ "9tWpFU": "We failed to bill your current billing instrument on file on {date}.",
+ "9toIi4": "Removing member...",
+ "9tpsop": "If you accept {displayName}\u2019s invitation to be a trusted contact, that means:",
+ "9tqB+r": "You must provide a valid identity provider sign-in URL to enable single sign-on.",
+ "9u9nEt": "How to recover deleted files",
+ "9uHtUs": "{display_name}\u2019s personal account isn\u2019t managed by the {team_name} team, so its contents aren\u2019t accessible to admins.",
+ "9uRzgj": "{trademark_business} Advanced Server Integration plan required.",
+ "9ug4JK": "Search activities",
+ "9v0bSQ": "Stop worrying about storage space \u2013 create amazing work without thinking about what your hard drive can handle.",
+ "9v2+SN": "Delete",
+ "9wdsbq": "The domain portion of the email address (the portion after the @) is invalid.",
+ "9xHDZe": "Continue leaving",
+ "9xLR6M": "Never mind. ",
+ "9xXIAi": "Please provide a name for the new folder.",
+ "9xak9u": "You\u2019re not syncing all of your {team_name} Dropbox folders to this computer.\n You can make those folders online only with Smart Sync.\n That way, you can easily access them and still save hard drive space.",
+ "9xgxj0": "Name",
+ "9xjlyh": "Spreadsheet",
+ "9xkxHM": "Your team no longer has full use of {trademark_business} features. Add your billing info now and you can pick up where you left off.",
+ "9xlOag": "Requests",
+ "9y4ORJ": "\u201cHIPAA\u201d",
+ "9yYWu+": "Close",
+ "9ylS0L": "Your download will still continue if you close this page.",
+ "9ynHXt": "Set your team up for success",
+ "9zBt93": "{lengthOfSelectedFolders} selected folders",
+ "9zKAIq": "Almost ready to go",
+ "9zN/0n": "Basic ({basic_storage_gb})",
+ "9zXodW": "People can view and comment",
+ "9zmM7L": "Members can share within the team and with approved people",
+ "A+7vH+": "Leave team?",
+ "A+8wXS": "Date range:",
+ "A+luT2": "Invited {user_count} people.",
+ "A+nrfT": "Send it again",
+ "A/3wcW": "To access {content_name}, choose an account",
+ "A/4awJ": "You can invite 1 member with this link. Add their name so you can track who has it.",
+ "A/96BB": "{trademark_business} users can\u2019t sign in with Apple. Please sign in with your email address and password.",
+ "A/lIV4": "30-day file recovery and version history",
+ "A/vkeo": "Don\u2019t wait \u2013 this offer expires on {expiration_date}",
+ "A01AX2": "Sign in as user",
+ "A0CVFo": "Loading more members...",
+ "A0KR8q": "Someone deleted {filename}. Restore it to keep working on your latest version.",
+ "A0ZAfU": "How much space does my team get?",
+ "A0d0gP": "File sync across devices",
+ "A0f9t6": "You can transfer content until {date}",
+ "A16uYC": "Customers",
+ "A1Asiw": "Successfully deleted the recovery token.",
+ "A1DSQ1": "Only members you select can invite people",
+ "A1E2Ar": "Anyone can invite people",
+ "A1NOlF": "Executable",
+ "A1VSQM": "Email it instead",
+ "A1tyau": "Preview files on the web and leave comments directly in specific parts of the file.",
+ "A273sc": "Cannot import. Make sure the file is in CSV format and UTF-8 encoded.",
+ "A2G0sf": "What will happen",
+ "A2X/mK": "{count, plural, one {Sending {count} invitation\u2026} other {Sending {count} invitations\u2026}}",
+ "A2cXxH": "Try for free",
+ "A3cCkZ": "Cancel link",
+ "A3vDB+": "Invitation deleted.",
+ "A41J5c": "{count, plural, one {You have selected more than {count} user, which is the maximum allowed to use this page. You can contact us to complete this order.} other {You have selected more than {count} users, which is the maximum allowed to use this page. You can contact us to complete this order.}}",
+ "A4NXzf": "When it\u2019s totally full, folders in the shared workspace will stop syncing and members won\u2019t be able to add new files. To get more space, upgrade to {trademark_business}.",
+ "A4boBS": "Duration",
+ "A4hF74": "{name} is already a {new_role}.",
+ "A4nKxB": "There was an error retrieving your account information.",
+ "A5e1nu": "Price",
+ "A5hoZ/": "Request description",
+ "A5jT3S": "
You can find more information about refunds here.
",
+ "A5xQHG": "As an individual",
+ "A6gKEq": "The Dropbox desktop folder makes it easy to stay in sync without interrupting your flow.",
+ "A79DfA": "Edit space limit",
+ "A7cFjC": "Share with these apps",
+ "A8C212": "Add a team admin from the trusted team",
+ "A8qtqw": "Drop files here",
+ "A8yD2a": "Allow members to enable camera uploads and computer backups",
+ "A9VWK1": "Got it",
+ "A9w5h2": "2-year plan",
+ "AAA4Ng": "Invoice for {name}",
+ "AAPE8r": "{num_days, plural, one {Your trial will be upgraded automatically to a {dropbox_plus} account in {num_days} day.} other {Your trial will be upgraded automatically to a {dropbox_plus} account in {num_days} days.}}",
+ "AAQLq4": "Work",
+ "AAaWbr": "The {team_name} team will be permanently deleted and all members will be removed.",
+ "AAne2J": "Sign in",
+ "AAqh+5": "The left sidebar of the app lists starred and suggested folders. The middle pane shows how to create an overview with descriptions, to-dos and @mentions.",
+ "AB91up": "Which shared folder or shared link are you having trouble with?",
+ "ABhYEq": "Deleted",
+ "ABuPQv": "Asked to join",
+ "ABwlTm": "Enter your institution\u2019s domain.",
+ "ACT/JG": "{price} / family (includes GST)",
+ "ACVnV9": "by {modified_by}",
+ "ACkjCJ": "Automatic backup and recovery protection for one device.",
+ "ACxSQZ": "Creation time",
+ "ADTv/8": "Paste a link to the event you would like to undo here",
+ "ADVAM4": "No results.",
+ "ADYm3j": "Secondary team",
+ "AEevrh": "Choose how to sync your files",
+ "AEyki5": "Top-level folders added on web start as online only",
+ "AF+/tL": "Video",
+ "AFSJ3V": "Sorry, you\u2019re not authorised to do this",
+ "AFScK8": "Send and request electronic signatures",
+ "AFh00+": "New",
+ "AGKWLu": "You need to sign in to see files and folders in your work Dropbox that may cause syncing problems.",
+ "AGXz3U": "Only the owner can move some of these folders to a team folder.",
+ "AGa70V": "Your admin has disabled this setting.",
+ "AH/PXS": "Set a password to limit access to the file via link.",
+ "AH4JT6": "There was an error while trying to pair.",
+ "AIqD3P": "Next",
+ "AJEVeE": "Anyone in your {trademark_business} team with this link and password can view the file. Downloads disabled.",
+ "AJk/mG": "You added {single_item_name}",
+ "AK0VR1": "Sign in to add more",
+ "AK48XH": "Dropbox needs to verify your email address {email} to finish updating your email. It\u2019s as simple as clicking the link in the verification email we send you.",
+ "AKCa1l": "Use and Disclosure.",
+ "AKXLQz": "Edit email",
+ "AKdTOF": "Updating folder settings...",
+ "AKmV/v": "Dedicated phone and chat support",
+ "AKoqYC": "If you turn off the system extension, it will be uninstalled and you\u2019ll\n no longer be able to use Smart Sync. You\u2019ll be signed out of Dropbox on\n all computers you\u2019ve connected. Once you\u2019ve signed in again, files\n that were set as online only will be downloaded and will take up space on your hard drive.",
+ "AKsIbN": "Max file size (MB)",
+ "AL6RgK": "{price} per month",
+ "ALMsaw": "Folder members with the link can view until {date}",
+ "ALfhls": "Create to-do",
+ "AM/h+a": "You will no longer have a subscription to {addon_name}, which currently grants you unlimited file recovery and version history. Please note that you can\u2019t add {addon_name} back once you\u2019ve cancelled your subscription.",
+ "AMQSOr": "Sign in",
+ "AMSZK+": "Names can\u2019t contain {invalid_characters}",
+ "AMTmTK": "First name",
+ "AMbVJu": "Clear all",
+ "AMcrXU": "Get Dropbox for iOS",
+ "AMi311": "New first",
+ "AN5z8K": "A place for everyone with space for everything",
+ "ANUEUs": "The names dot (.) and dot dot (..) aren\u2019t allowed",
+ "ANxsmU": "Remove yourself from \u201c{parent_folder}\u201d?",
+ "AOhoa4": "Download",
+ "AOhvcM": "No sheet to show",
+ "AP9nbK": "Info",
+ "APJefm": "Something went wrong, but it should work if you try again.",
+ "APqTeb": "An admin in your team manages these apps for your {teamName} Dropbox account.",
+ "AQ10W0": "@angela please put final version here once approved",
+ "AQNzzE": "Make them a support admin?",
+ "AQWCeu": "Store all of your signed documents in one secure place.",
+ "AR/5y3": "Someone else is making a change at the moment. Please try again in a few minutes.",
+ "AR/x0b": "No company-managed groups found",
+ "AR3sLa": "OK, thanks!",
+ "ARFmYd": "All dates",
+ "ARJeG+": "Download failed",
+ "ARYk7X": "INVITED",
+ "ARdJGs": "Upgrade to an Advanced plan to get more space.",
+ "ARfvq4": "To add this folder, you\u2019ll need {needed} of space in your Dropbox. You currently have {remaining} of space left.",
+ "ARhWBm": "Continue anyway",
+ "ARxiTU": "We have received your report and will look into it.",
+ "ASRI+S": "When a lot went wrong, undo everything by going back to any point in the last {version_history_length} days.",
+ "ASXrei": "Can I upgrade my existing {dropbox_basic} or {trademark_plus} account? How does migration work?",
+ "ASZGQ1": "Status",
+ "ASnOd4": "{count, plural, one {{name} renamed {count} item} other {{name} renamed {count} items}}",
+ "ASqQAc": "Deleted Life Vault folder",
+ "AT7ChO": "Triage",
+ "AUEkPL": "Email match: {emailDomain}",
+ "AUVVuM": "deleted disk image",
+ "AUX6bx": "Password changed successfully. Any existing sessions, devices and apps can still access your Dropbox.",
+ "AUtTf8": "Manage your payment information",
+ "AUvNZU": "Links",
+ "AUzwig": "Effective date:",
+ "AV3JCA": "Edit two-step verification",
+ "AVJ8pJ": "You\u2019ve made it this far \u2013 why not give your team what it needs to keep growing? Scale your team with the space and tools that make a good team great.",
+ "AVWuae": "Get the Dropbox that connects{br}your entire business",
+ "AVgcYn": "You will no longer have a subscription to {addon_name}, which currently grants you one-year file recovery and version history. Learn more",
+ "AVlRrQ": "Your trial will end in four days. Your account will be downgraded, and your team will lose out on {space} of space, file recovery and advanced features such as Smart Sync.{br}{br}Add your billing info now so your plan will transition without interruption on {trial_end}.",
+ "AWLWNd": "Unable to sign in. Please try again.",
+ "AWX3CI": "Renew",
+ "AX/4il": "{name} deleted {single_item_name}",
+ "AX20W0": "Connect Trello to Dropbox",
+ "AX6tzq": "This link is invalid",
+ "AXMJrf": "Add exception:",
+ "AXdltP": "Additional user(s)",
+ "AXtlaD": "Centre-weighted average",
+ "AZAqNG": "{value, plural, one {{value,number} month ago} other {{value,number} months ago}}",
+ "AZPIG5": "Copying files...",
+ "AZYIpb": "If you\u2019d like more than that, please contact sales.",
+ "AZvTRu": "JPG, PNG, GIF and more",
+ "AZyzep": "Invitations sent successfully.",
+ "Aa0IeW": "Base locale:",
+ "AaWqmt": "This gives members the option to back up photos and videos from their mobile devices automatically. Everyone will get their own Camera uploads folder that isn\u2019t shared with the rest of the team.",
+ "AbUoiK": "{name} turned off viewer info",
+ "Ac43cu": "Alternative sign-in options",
+ "AcEWpy": "Download",
+ "AcIKp8": "Dropbox {trademark_professional}",
+ "AcQYt9": "Cancel",
+ "AcTLHd": "Commenting",
+ "AdZTsb": "Please describe the issue you\u2019re experiencing in as much detail as possible to enable us to troubleshoot it faster.",
+ "Adel35": "Manage requests",
+ "Ae1ck1": "Folder name",
+ "Ae3d4k": "Create new Microsoft Office files, upload photos and scan documents straight from the Dropbox app on your iPhone.",
+ "AeXk4J": "File owner",
+ "AesiRa": "Priority:",
+ "Afbd2m": "Advanced server integration trial",
+ "AfgxjZ": "
You can find more information about cancellations here.
",
+ "Afo8TC": "See what Dropbox can do",
+ "AgUX/m": "Make content accessible to everyone, from anywhere with a company folder",
+ "Ah28BX": "HelloSign eSignatures",
+ "AhNhGX": "Invite trusted contact",
+ "AhSs9N": "No domains",
+ "Ahb+5C": "What should happen when a member disconnects a computer or mobile device?",
+ "AhcQ+n": "month",
+ "Ai+Hmi": "Dropbox Basic",
+ "Ai9G7w": "The watermark could not be saved because you do not have permission to save to this folder.",
+ "AiCsXp": "Close",
+ "AiEiIb": "The team admin and members of the team will still have access to team files and folders",
+ "Aj1Vqb": "files entry point onboarding modal",
+ "Aj5ymN": "Something went wrong. Please try reloading the add-in.",
+ "AjPrmn": "Tasks are synced from emails you star.",
+ "AjarNz": "Team folders can\u2019t be deleted.",
+ "AjkSqw": "Upgrade to {dropbox_professional} for more space",
+ "Ak0AwV": "Extremely dissatisfied",
+ "AkLAAg": "You\u2019ll lose access to all {team_name} groups. Your account will be converted to a personal Dropbox.",
+ "AkcG97": "Device tickbox",
+ "AkoOwN": "Enter password",
+ "AlSHtr": "App Centre",
+ "AlpLdm": "Get help downloading Dropbox",
+ "Am0cfD": "Choose who to share this folder with",
+ "Am0oLV": "Learn more",
+ "AmEj2/": "By confirming, all existing scheduled changes will be cancelled.",
+ "AnAwlI": "Create report",
+ "AnCJrk": "This file type isn\u2019t supported. For best results, select a PNG or JPG file.",
+ "AnTrsf": "This email is already taken. ",
+ "Anhyxs": "Gmail settings saved",
+ "Ao5Pwf": "Share a link instead",
+ "AoKm6Y": "Pending email change",
+ "AoU5JI": "It looks as though you\u2019re using an older sync feature",
+ "Ap0tqr": "{trademark_business} provides three plans to fit your team\u2019s needs. The {standard_plan_name} plan gives your team {standard_plan_size} of shared storage. For teams needing more space, the {advanced_plan_name} and {enterprise_plan_name} plans provide as much space as you need.",
+ "ApENy7": "On",
+ "Aq/UfD": "You are removing the link to \u201c{fname}\u201d created by {owner}. This link will no longer work for anyone who has it.
We'll notify {owner_email}. Do you want to continue?",
+ "AqH9gg": "Single sign-on (SSO) integrations",
+ "AqQlEF": "{pro_space} of space",
+ "AqRWwC": "Cancel",
+ "AqdxzJ": "Purchased",
+ "Aquro6": "Want to keep using Dropbox with your team?",
+ "ArB9mG": "It\u2019s not very important",
+ "ArqQYa": "The folder name is invalid.",
+ "As2n1+": "Invited by {name}",
+ "AsODc2": "{name} restored {single_item_name}",
+ "AsgwQQ": "Passwords",
+ "At94iP": "Share",
+ "AtC6hy": "You\u2019re cancelling your scheduled billing change. Your Dropbox {plan} plan will be renewed on {date} and you will be billed monthly.",
+ "AtPOo0": "Keep it separate",
+ "Au8OeU": "Plan downgrade scheduled",
+ "AuRzIq": "This app is listed in App Centre. Select Manage this app to make changes to its permissions.",
+ "AupGw5": "That\u2019s too large. Try a file that\u2019s {max_size} MB or less.",
+ "AvC4zO": "Move files",
+ "AvK1w/": "More about syncing",
+ "AvcnE0": "From a computer",
+ "AvhcCE": "Create, edit and organise Google Docs, Sheets and Slides",
+ "AvhnVi": "Team members with this link can view the folder.",
+ "AwEwo2": "Your logo should be at least 20px by 20px.",
+ "AweRvI": "Note: If you\u2019re using your Chromebook at work or school, you might not be able to change this setting. For more help, contact your administrator.",
+ "Awpyvm": "Smart Sync",
+ "AwwRIX": "The email address you entered is invalid.",
+ "Ax4+ny": "Sent!",
+ "AyD3/3": "It looks as though {email} is already in another Dropbox team. You can still invite them to your team using a different email address.",
+ "AySSOB": "Attach",
+ "Az/c9G": "Close this window and return to the Dropbox desktop app to continue.",
+ "AzElDC": "Manage members",
+ "AzRPpu": "Try for free",
+ "AzuKe2": "Simple, secure eSignatures",
+ "B+5CcZ": "Contact your admin to upgrade to an Advanced plan and get more space.",
+ "B+Z5a5": "{numInvitees, plural, one {You need more licences for this invitation. Contact your reseller to add more.} other {You need more licences for these invitations. Contact your reseller to add more.}}",
+ "B0BOfb": "Pending email change",
+ "B0FLmM": "Delete this policy?",
+ "B0Xgkz": "Add your name",
+ "B0gVcH": "Work together anywhere",
+ "B1LWln": "(your current plan)",
+ "B22YnE": "Send faxes online from Dropbox files and receive confirmation of receipt. HelloFax has international coverage to 70+ countries. New users get 5 free faxes for new accounts.",
+ "B2uHCh": "Copy this link and share it with {email}. They\u2018ll need to add your email and give you access to their admin console.",
+ "B3CC0j": "{gigabyteSpace}",
+ "B3RLyV": "There isn\u2019t a link for viewing.",
+ "B400nx": "We\u2019ll charge your IBAN ending in {last4}.",
+ "B4gFdK": "Resend",
+ "B4hIYu": "{actor_name} moved the {card_name} card with this file attached to {list_name}",
+ "B4vMzU": "They\u2019ll keep access to their own content and any folders shared with them. They\u2019ll lose access to any team folders and anything not shared with them directly.",
+ "B5Agak": "Templates for IT teams",
+ "B5C3BM": "Cancel invitation",
+ "B5Fd74": "Drag files and folders here to upload, or browse from your computer",
+ "B5WHGf": "Download this export",
+ "B5xaho": "upload to the folder \u2018{folder}\u2019",
+ "B5ygR1": "Prevent people with this link from downloading.",
+ "B69Z5q": "Everyone will be removed from this file. You\u2019ll still keep a copy of this file in your Dropbox.",
+ "B6BQW0": "Thanks for helping Dropbox improve your experience.",
+ "B6dG2q": "Billing name",
+ "B70y83": "You rewound {item_name}",
+ "B7AytW": "Unread",
+ "B7S1VF": "Suggested from your activity",
+ "B7S5UI": "To sign in again, you\u2019ll need your phone or a backup option for the second step.",
+ "B7hug6": "Reseller support",
+ "B7wMrN": "Can\u2018t sign in?",
+ "B8sL3t": "Owner",
+ "B9Dq75": "Create, store and share cloud content from Google Docs, Sheets and Slides, Microsoft Office files, and Dropbox Paper alongside traditional files in Dropbox.",
+ "B9hIv7": "Learn more",
+ "B9i1lm": "Work with best-in-class business tools",
+ "B9jSy7": "To see more information about the Dropbox pricing plans that are available, please visit our plan page.",
+ "B9kRrE": "Open in app",
+ "B9nMuZ": "What is a {trademark_business} user?",
+ "BABZhM": "Alerts policies",
+ "BBTooV": "A screen capture demonstrating the tracking capabilities within the Showcase feature of Dropbox. The user begins on a screen with their list of showcases. After clicking on the number of views, comments and downloads for a showcase, the user sees engagement information on their showcase by viewer and file.",
+ "BBhL4X": "Loading folders",
+ "BCJrz5": "Select a folder",
+ "BCNI47": "Change my Dropbox plan",
+ "BChhOI": "{count, plural, one {The {count} admin other than you will be signed out of dropbox.com immediately and prompted to reset their password.} other {All {count} admins except you will be signed out of dropbox.com immediately and prompted to reset their passwords.}}",
+ "BCyGLk": "Try again",
+ "BDDDn/": "Copy team ID",
+ "BDKipQ": "Collaborate by leaving targeted feedback on videos for your team.",
+ "BDPPA/": "Undoing move...",
+ "BDfWiD": "{sharerName} and other people we think you work with have joined this team",
+ "BDtFp+": "{count, plural, one {Copied {count} item.} other {Copied {count} items.}}",
+ "BDvzfr": "There is another pop-up window already open",
+ "BEFvHI": "Traffic and insights",
+ "BEOiVL": "Remote workshop plan",
+ "BF7J/9": "{to_email} was given access, but you\u2019re signed in as {user1_email} and {user2_email}.",
+ "BFoFQM": "Hand in assignments quickly, without having to sign in every time.",
+ "BFxzt+": "To",
+ "BGC0oW": "All members will be automatically signed out of dropbox.com every day.\n This session length might interrupt the members\u2019 workflow.",
+ "BGMJLS": "People can edit, delete, comment on and add the files to their Dropbox",
+ "BGilt5": "Archive",
+ "BGjMiE": "Add items",
+ "BGyZpk": "You do not have permission to pin to {path}",
+ "BGzgS/": "Moving files\u2026",
+ "BHATNe": "Karen J.",
+ "BHClQE": "Something went wrong. Please try again later.",
+ "BHiVSS": "",
+ "BHsBCZ": "Are you sure you want to delete {item_count} items from your team member folder?",
+ "BI7WaU": "Remove {collaboratorName}?",
+ "BIfjkX": "Welcome to {team_name}\u2019s {dropbox_business}",
+ "BIh4SD": "Your {plan} plan will be renewed on {date}. {billing_summary}",
+ "BIwxa4": "Quickly give whole departments or teams access to folders and files",
+ "BJHueE": "This can take a while. We\u2019ll email you when the report is ready.",
+ "BJJDSm": "You don\u2019t have enough licences.",
+ "BJQoka": "{count, plural, one {{count} reply} other {{count} replies}}",
+ "BK/LED": "You\u2019re already creating this report. We\u2019ll email you when it\u2019s ready.",
+ "BK7t9c": "You will need to allow Dropbox to access your account.",
+ "BKISIV": "Confirm",
+ "BKfMXQ": "{name} renamed {from_name} to {item_name}",
+ "BLAjVt": "Change sync default",
+ "BLMWP/": "Link not found",
+ "BLivWp": "See individual and team plans",
+ "BLmrgy": "Total edit time",
+ "BMQUdK": "Close",
+ "BMhlbR": "Viewing now",
+ "BNlIo5": "Deselect",
+ "BOIgzx": "Anyone in your Dropbox team with this link and the password can view the folder. Downloads disabled.",
+ "BOLnxx": "Thanks. Your feedback will help improve Dropbox.",
+ "BOj5uG": "Large grid",
+ "BPDVoc": "See how your team has used Dropbox over time",
+ "BPT3zF": "Sharing and collaboration are just as easy with {dropbox_business} as they are with {dropbox_basic} or {trademark_plus}. You can add collaborators to shared folders so they always have the most up-to-date versions of files they're working on together, or you can send a copy of a file or folder instead. Plus, with {dropbox_business}, admins can control sharing permissions and see audit logs of sharing activity.",
+ "BQ34Lf": "",
+ "BQJPmf": "{name} accounts",
+ "BR8Tap": "1 month",
+ "BRMB6V": "Content management",
+ "BROm59": "on {datetime}",
+ "BRqDy1": "Now, let\u2019s review",
+ "BSsiar": "Malware or virus",
+ "BSwIRv": "I\u2019ve changed my mind \u2013 take me back to Dropbox",
+ "BTHLkw": "{focal_length} mm",
+ "BTNaP3": "To make sure we have the right email address, we sent an email to {user_email}. Click the button in the email to start using {showcase}",
+ "BTdE3l": "Retention",
+ "BTrvIQ": "Which app is this feedback about?",
+ "BV1uZg": "Folder overview changed.",
+ "BVaBI+": "Customer console",
+ "BW7hgp": "As much space as your team needs with sophisticated admin, audit, security and integration capabilities.",
+ "BWJGoq": "Resume",
+ "BWM4PG": "Phone",
+ "BXhw+q": "Activity",
+ "BXmY1r": "We couldn\u2019t reach your phone number. If this has happened before, click here.",
+ "BXzOOL": "You don\u2019t have any recent conversations",
+ "BY+Sxv": "Members moved",
+ "BYTHdG": "{trademark_business} {scheduled_plan}",
+ "BYTz5T": "Name this export",
+ "BYkDpN": "Image details",
+ "BYmWL4": "Re-link this computer",
+ "BZ+Od4": "Why are my Dropbox files missing?",
+ "BZIYTj": "Post and preview",
+ "BZcalE": "Organise team info",
+ "BZkpj2": "Consent",
+ "BZwQbv": "Continue",
+ "BaJ3/b": "Dropbox agrees that, within a commercially reasonable period following termination of the Agreement, not to exceed ninety days, Dropbox will return or destroy all PHI received from the Customer, or created by Dropbox on behalf of the Customer. Despite the foregoing, if this return or destruction is not feasible, Dropbox will extend the protections of this HIPAA BAA to the PHI not returned or destroyed, and limit further uses and disclosures to those purposes that make the return or destruction of the PHI infeasible.",
+ "BaNqPa": "Sales call notes \u2192",
+ "BaU4v4": "Cannot convert to a Dropbox Basic account",
+ "BahKtt": "This file could not be watermarked.",
+ "BayfYG": "If you want to keep using it, why not add your billing information now and get it out of the way? It won\u2019t interrupt your free trial period, and you\u2019ll transition seamlessly at the end of the {trial_days} days.",
+ "Bb9vvF": "Get Dropbox",
+ "BbAEqS": "Solutions",
+ "BbTthn": "Package your transfer and send it over \u2013 then you can view it here.",
+ "BbVXLk": "Are you encountering any issues with this file preview?",
+ "Bbnzjx": "File browser",
+ "BcXpnh": "On",
+ "Bcojaq": "Contact support",
+ "Bcpu+z": "Toggle whether inherited members are displayed or hidden",
+ "BdUKjA": "Using {usage} of {quota}",
+ "BdgOjU": "Please enter your name and a valid email address.",
+ "Bdz08I": "By type",
+ "BerEfa": "Family Room folder",
+ "BerOfs": "Compare our plans",
+ "Bf160P": "Verify your email",
+ "BfD9wn": "Creative template",
+ "BfEAMA": "({maxCommentLength} character limit)",
+ "BffPZc": "Add search terms to improve your results",
+ "Bg2T2/": "Sticker menu",
+ "Bg4C2n": "You don\u2019t have permission to manage membership of this file",
+ "BgBbVR": "Pin to...",
+ "Bgsqmh": "For viewing",
+ "Bh1By2": "Filter by date, email and more",
+ "Bhm8Q8": "Activity in shared folders (weekly digest)",
+ "BhxxXf": "The {card_name} card with this file attached was moved to another board",
+ "BiBJqz": "Advanced security features",
+ "BihZjv": "This file hasn\u2019t been updated in the past year.",
+ "Bj8GE3": "{trademark_business}",
+ "BjAart": "Continue with trial",
+ "Bjb3rs": "{count, plural, one {Are you sure you want to attach {count} file to this email?} other {Are you sure you want to attach {count} files to this email?}}",
+ "BjqhsA": "You\u2019re all set!",
+ "BjtU1h": "Space used",
+ "BjuWgM": "Anyone in the {trademark_business} team with this link can edit the file.",
+ "BkClNB": "Low",
+ "BkKYO9": "Token refreshed successfully.",
+ "BkuRIT": "Present files with your logo, company name and a background image with branded sharing.",
+ "Bl1/Rp": "Back",
+ "Bl42Mh": "Team admin, support admin",
+ "BlFhZY": "Are you sure you want to disconnect {workspaceName}? You\u2019ll need to reconnect to this {serviceName} workspace to continue using it with Dropbox.",
+ "BlnVw/": "Remove their admin role?",
+ "BmNZ7+": "Ctrl + c",
+ "Bmep3+": "Prepare your document easily",
+ "Bmlee+": "{recurringCost} {taxRateText}",
+ "Bmo28B": "{count, plural, one {Skip this file} other {Skip these files}}",
+ "Bn45Hc": "Jumping between accounts is easy",
+ "BnxGMW": "Modified",
+ "Bo6T4v": "Remove pending member?",
+ "BoGtrT": "\u201cMy first reaction when IT implemented Dropbox was relief because I knew it would revolutionise how we work, make our job easier and make us all better at what we do\u201d",
+ "BoJi/Z": "Something went wrong. Please try again later.",
+ "BoLL3S": "Email, name or group",
+ "BoaISa": "{browser} on {platform}",
+ "Bp/TpE": "TRIAL",
+ "Bp4fPr": "Incorrect name or email address",
+ "BpPk8Q": "Custom quota must exceed 15 GB",
+ "BpSnBu": "Transfer files up to 100 GB to anyone",
+ "Bpm3al": "Well-designed, by design",
+ "Bq/2xV": "Delete file?",
+ "Bq65fh": "Please select a reason for cancelling:",
+ "Bq8Uia": "Google Pay and App Store billing",
+ "BqFPCE": "Help us make Dropbox classification smarter",
+ "BqoQS6": "Block",
+ "BqqQJn": "Collect and receive large files from anyone \u2013 right in your Dropbox account.",
+ "BrE2tZ": "Start check-up",
+ "BrIpHU": "Expiry date",
+ "BrZ+ML": "For freelancers and solo workers",
+ "BrZq/p": "Close",
+ "Brdumg": "This includes all files and folders inside your team\u2019s purple member folders. Learn more",
+ "BroQin": "Show preview with splash screen",
+ "BsLZDt": "Block",
+ "BssyWI": "Transfer later",
+ "BstyO6": "Back up important or finished files",
+ "Bti7ZJ": "Every member will get a new folder called \u201cPaper docs\u201d in their Dropbox. All of their paper docs and folders will be moved there.",
+ "BunHhw": "Your new {schedule} total will be {total}.",
+ "Bur9Rj": "{numDocuments, plural, one {Send {numDocuments,number} document for eSignature per month} other {Send up to {numDocuments,number} documents for eSignature per month}}",
+ "BvUPS9": "{count, plural, one {Added {count} item to clipboard.} other {Added {count} items to clipboard.}}",
+ "BvX9fO": "Cancel the move",
+ "BvqoGd": "Selecting a folder in your {dropbox_name} Dropbox will remove the existing deadline you\u2019ve set.",
+ "BvyC2g": "Hold name",
+ "Bw4yjs": "Uploading...",
+ "BwpcMZ": "Verification email sent to {email}",
+ "Bwr8UQ": "Create new folder",
+ "BxYl3D": "Can\u2019t find the verification email? Send another email",
+ "BxgXG2": "Just you",
+ "BxjdMG": "Didn\u2019t work?",
+ "BxyH89": "Folder history",
+ "ByrYhN": "You can\u2019t upload files from your computer after you\u2019ve chosen files from your Dropbox.",
+ "BzTN4Y": "Protect your best ideas. Add a digital watermark to any file before sharing with collaborators or clients.",
+ "Bzjp8Q": "{name} will be notified that you\u2019ve signed in to their account.",
+ "BzyzgE": "To resolve this issue, you can try:",
+ "C+1sfc": "Our Help Centre is the fastest way to get help. Select an issue.",
+ "C+6/kN": "After a certain amount of time",
+ "C+Np3r": "Templates for sales teams",
+ "C+cgdZ": "Revoke",
+ "C/EDB6": "Please enable more users for this app",
+ "C/Rlk8": "On (alert only)",
+ "C/gp+a": "Folder, {alt}",
+ "C/iu7P": "{showcase} isn\u2019t available for teams who\u2019ve signed a HIPAA Business Associate Agreement",
+ "C0CNZE": "The image used in this Prompt version.",
+ "C0Cv1B": "Create campaign",
+ "C0EJuB": "Still have questions?",
+ "C0XK4Y": "Keep your team\u2019s files and the conversations about them in the same place by connecting tools such as Slack and Zoom.",
+ "C12AhB": "Step 1 of 2",
+ "C1bQRh": "You\u2019ll find your Paper docs in Files, along with all of your Dropbox content. Recently viewed or created docs are also listed in Home.",
+ "C1kd1L": "Audio",
+ "C1x9sH": "Get {discount,number,::percent} off the usual price when you choose Advanced",
+ "C20oMk": "Edit photos",
+ "C2BKnZ": "Failed to load modal.",
+ "C2K8FK": "Manage the visibility, access and download permissions of all of your files, folders and links.",
+ "C2jCcj": "Back to Dropbox",
+ "C35LL5": "Keep your family\u2019s content safe with the latest encryption technology and robust security features. At Dropbox we have been protecting data for over a decade \u2013 it\u2019s our top priority.",
+ "C3vD8m": "Creative",
+ "C41TAx": "Attach more links",
+ "C4C3zD": "Anyone in your {trademark_business} team with this link and password can edit the file.",
+ "C4CWQC": "Link copied successfully",
+ "C4FJfI": "Sign up",
+ "C4J82N": "Not available to invite",
+ "C50rI2": "Blog",
+ "C5jY7c": "Search in App Centre",
+ "C6IfhA": "Find out how to change to an individual plan",
+ "C7+cKO": "5-year plan",
+ "C7GGQr": "Usage",
+ "C7LfmG": "Add an email address, name or group",
+ "C7Sn78": "Role",
+ "C7V9H3": "Select folders to remove from this computer",
+ "C8/58i": "Enter a new email address for your personal Dropbox. You\u2019ll need to verify your new email address in order to finish updating your personal email.",
+ "C8/FYy": "Keep everyone in sync",
+ "C8NyKM": "You won't be charged until you confirm your purchase on the next screen.",
+ "C8cYDt": "Link expired",
+ "C94zzZ": "Sync your passwords to one place across your devices. Learn more",
+ "C9D7bp": "Or, cancel your subscription by following these steps:",
+ "C9JnJZ": "My teams",
+ "C9N3eb": "Select which file versions to include",
+ "CABcgS": "Your trial has expired but we were unable to process your credit card for the Dropbox {plus} upgrade.",
+ "CAJjXO": "Please enter a valid email address",
+ "CAPfT/": "Space",
+ "CAT/px": "{name} failed to download",
+ "CAxLNf": "Please enter a valid postcode.",
+ "CB1sZR": "Start a launch plan",
+ "CBoODF": "and {number_of_more_domains} more",
+ "CC5sIb": "Extracting {file_name} to your Dropbox \u2013 {time_remaining}.",
+ "CCItA6": "Add a screenshot",
+ "CCL40r": "Upgrade to Advanced",
+ "CCUrto": "Deleted files can\u2019t be renamed.",
+ "CCmgaO": "You haven\u2019t created any shared links.",
+ "CCsjH2": "Security keys help you complete two-step verification when logging in to Dropbox.",
+ "CD+ZYc": "Folder access removed.",
+ "CDgQc9": "Please update your billing information to re-subscribe.",
+ "CEIbrX": "Setting up your trial...",
+ "CGBKot": "Active member",
+ "CGFY8N": "Give feedback",
+ "CGQ57Z": "Successfully uninstalled app.",
+ "CGZ17o": "Click 'Open with' and select Gmail.",
+ "CGyvlS": "Securely store unlimited passwords and access them wherever you need.",
+ "CHevf+": "
PLEASE NOTE: The information on this page relates to the account registered with {email}.
",
+ "CI9/rJ": "Mark all as completed",
+ "CILfa8": "We couldn\u2019t find that app.",
+ "CITqJj": "Enjoying your {trademark_business} trial?",
+ "CIbq3r": "This file type can only be shared with view access",
+ "CIfJ04": "Plan highlights",
+ "CIiM/g": "A record will be made in the activity log that you have signed in to on {name}\u2019s account.",
+ "CIqO2V": "Verify your email address at {email} to share folders and ensure that your account can be recovered.",
+ "CJT3Wa": "Choose image",
+ "CJeup7": "Your name",
+ "CJpXzt": "See who downloaded",
+ "CJtjRk": "{count, plural, one {Anyone with this link can edit the file. Expires in {count} day. Downloads disabled.} other {Anyone with this link can edit the file. Expires in {count} days. Downloads disabled.}}",
+ "CK2JPR": "Invite to join",
+ "CKJ3Xr": "Unlink or relink a computer, phone or tablet to Dropbox",
+ "CKj3RT": "Either that file was deleted or you no longer have access to it.",
+ "CKozbQ": "You\u2019ll be emailed when this product becomes available",
+ "CLvZsN": "{count, plural, one {The minimum package comes with {min_num_users} licence. You can activate your extra licence at any time.} other {The minimum package comes with {min_num_users} licences. You can activate your extra licences at any time.}}",
+ "CLzi2a": "Mac",
+ "CMJbXJ": "We're a small team that operates on the same level as a company that has a couple of hundred employees because we\u2019re using the right technology and the right platforms\u2026I collaborate with hundreds of content creators, and without Dropbox Business, collaborating would not be nearly as efficient or easy.",
+ "CMt9TG": "{count, plural, one {You\u2019ll be charged {new_amount_with_tax_rate_str} to add {count} licence for the remainder of the trial period. From {next_billing}, your new {schedule} total will be {total_amount_with_tax_rate_str}.} other {You\u2019ll be charged {new_amount_with_tax_rate_str} to add {count} licences for the remainder of the trial period. From {next_billing}, your new {schedule} total will be {total_amount_with_tax_rate_str}.}}",
+ "CNGRmj": "Centralise entire team\u2019s work",
+ "CNHOhT": "Make files online only",
+ "CNLpjm": "N/A",
+ "CNNb4+": "When you start drafting an email, you can attach Dropbox files from here.",
+ "CNPdm5": "Open",
+ "CNx4iO": "Failed to lock",
+ "COB0tV": "Supported file types",
+ "COSVBy": "Change how new Dropbox users join",
+ "COcw+E": "Once you\u2019ve added the meta tag and saved the HTML file, your domain is ready to be verified.",
+ "COtdTL": "Scheduled total licences",
+ "COuQ/F": "You turned on commenting for {entity}",
+ "CP2g4s": "Cancel",
+ "CP9OZj": "We\u2019ll let {display_name} know their account has been unsuspended. This means they\u2019ll have full access to everything in their account again.",
+ "CPIIvy": "Move items anyway",
+ "CPUBF2": "Go to folder",
+ "CQ7F9W": "Tasks",
+ "CQTi9x": "{cur_file_num} of {num_total_files}",
+ "CR+5G4": "return to the main page",
+ "CRaaPT": "{count, plural, one {You and {count} other edited this file} other {You and {count} others edited this file}}",
+ "CRu5LB": "We didn't find any files or folders in your Dropbox that will cause syncing problems.",
+ "CSR/JZ": "{trademark_business} is only intended for businesses and organisations, not for consumers.",
+ "CSRnaR": "Choose whose files to include",
+ "CTFQyD": "You\u2019re already connected to {service_name}",
+ "CTRelf": "Invitations sent!",
+ "CUEIMF": "Add your info now so you don\u2019t have to later. You won\u2019t be charged until after your free trial ends on {trial_end_date}.",
+ "CUOG9o": "Revoke access",
+ "CUmnlA": "{name} moved {item_name}",
+ "CUmyb2": "Deselect this row",
+ "CUocxO": "{name} shared {single_item_name} in {folder_path}",
+ "CVe8VC": "At the end of your trial, you will be downgraded to a free team plan. Your team will lose out on {space} of space, file recovery and advanced features such as Smart Sync. If you choose to purchase now, it won\u2019t interrupt your free trial period, and your plan will transition without interruption at the end of the {trial_days} days.",
+ "CVumiI": "My computer",
+ "CVzXRv": "Share",
+ "CWMWS0": "When a member wants to invite someone new to the team, you\u2019ll see the request here.",
+ "CWjdjE": "The specific pages within the platform on which the campaign can appear.",
+ "CX1y/7": "Dropbox Professional",
+ "CX7Qsk": "Open calendar event",
+ "CXIFxS": "The icon for a file",
+ "CXTMJd": "Dropbox is recovering {infected_user_full_name}\u2019s files",
+ "CXfPLw": "Sort by",
+ "CXm4lo": "Need help with something?",
+ "CYH8DH": "Say hello and add a message (optional)",
+ "CYHFZJ": "({start} \u2013 {end})",
+ "CYfaKX": "Edit security keys",
+ "CYkszS": "Your free trial of {dropbox_trial_plan_name} will end on {trial_end_date}. If you don\u2019t purchase {dropbox_trial_plan_name} by the end of your trial, you\u2019ll go back to {dropbox_current_plan_name}.",
+ "CYt8vZ": "connect computer to Dropbox account",
+ "CYuBjY": "Platform:",
+ "CZBH+L": "Asked to join on {requestDate,date,medium}",
+ "CZBgT9": "This increases the chance of accidental data loss or a large-scale resync.",
+ "CZC77D": "Remember to add a title",
+ "CZDfZ8": "Advanced security protects your life\u2019s work",
+ "CZcIMc": "{count, plural, one {This shared folder will be added back to your Dropbox account.{br}{br} Because this folder is shared, other people might have made changes to it since it was removed from your account.} other {These shared folders will be added back to your Dropbox account.{br}{br} Because these folders are shared, other people might have made changes to them since they were removed from your account.}}",
+ "CZcw7A": "Error importing users.",
+ "Ca6k2W": "You have an exclusive offer.",
+ "CaLU0w": "Stormcrow feature:",
+ "CaPWf4": "Opening the Dropbox desktop app\u2026",
+ "CaWcwf": "Their former team won\u2019t lose access to shared folders",
+ "CaboZW": "The maximum size for {extension} files is {size}",
+ "Cae1N7": "Get Dropbox for work",
+ "CagMem": "Upgrade now",
+ "Cc37un": "Deleting files...",
+ "CcHCln": "A team folder with this name already exists.",
+ "CclWH3": "All of your family info, all together in one place",
+ "CcpVyl": "Share",
+ "CdIseI": "the phone, you\u2019ll need a PIN.",
+ "CdjelZ": "Personal email",
+ "CdnhdL": "Password-protected",
+ "Ce6mTU": "When should we remind the user?",
+ "Ce9FpX": "Log in successful. Your browser will be redirected in a few seconds.",
+ "CeMx7Q": "Can\u2019t upload folders in Safari. Upload the files separately or try another browser.",
+ "CeW+ki": "Collaborate",
+ "CehxyY": "Images",
+ "Cf14JO": "Are you sure you want to delete {filename} from your {team_name}workspace?",
+ "CfZkFh": "After your free trial, you will be charged {plan_price} {period} until you cancel your subscription.",
+ "CfdLws": "256-bit AES and SSL/TLS encryption",
+ "Cffj+5": "you@example.com",
+ "Cfhoeq": "Change billing period",
+ "CfiPnG": "Member",
+ "CfmdLY": "See who has previously viewed your files and when.",
+ "CgREwE": "Hide link",
+ "Cgg/GQ": "Can comment",
+ "CghgW/": "Item",
+ "CgpQgI": "Support admin",
+ "Cgtj8U": "Removed from the team.",
+ "Chex7V": "Save attachment",
+ "Chf30m": "Unable to upload one or more files",
+ "Ci6LzN": "You can also set your default apps for supported files.",
+ "CiEY+j": "Next time they log in",
+ "CiHyv+": "Ensure your Dropbox security settings are up to date.",
+ "CiZnrG": "We were unable to delete the comment.",
+ "Cj1p0k": "Space earned",
+ "CjHpil": "Drag your CSV file here or{br} select it from your computer",
+ "CjMRSv": "This HIPAA BAA will expire upon the earlier of: (a) a permitted termination in accordance with this HIPAA BAA; (b) the expiry or termination of the existing Agreement; (c) the execution of an updated HIPAA business associate agreement that supersedes this HIPAA BAA; or (d) if the Customer downgrades to a Dropbox service that is not included in the Included Functionality.",
+ "Cjp7Qo": "People we think you work with have joined one of these teams.",
+ "Cjuiv2": "{count, plural, one {Remove licence} other {Remove licences}}",
+ "Ck16Gr": "Collaboration",
+ "CkJ/6V": "Assignee",
+ "CkJRtk": "Lifetime access",
+ "CkSNkV": "Customers",
+ "CkebzH": "Get a pulse",
+ "Ckv1Uz": "Ref. pages:",
+ "CkykNe": "Paperless signing in Dropbox powered by HelloSign!",
+ "CkyxPA": "Show in folder",
+ "Cl/4Rx": "{count, plural, one {{name} moved {count} item from {src_folder} to this folder} other {{name} moved {count} items from {src_folder} to this folder}}",
+ "Cl3pwT": "This feature isn\u2019t available on Internet Explorer. Please try on a different browser.",
+ "CleGDk": "Cancel",
+ "ClmYKS": "See more stories",
+ "CmFrWR": "Congrats! You\u2019ve added the extension!",
+ "CmUy7l": "Monitor team activity, view connected devices and audit sharing activity.",
+ "CnrwJR": "Powerful sharing, collaboration tools and {plan_space} of storage.",
+ "Co/4Mf": "Dropbox Smart Sync",
+ "CoNUK+": "Create product",
+ "CoSE9G": "1 million API calls/month for data transport partners",
+ "CofOK0": "You won\u2019t get an alert if a member shares sensitive information outside your team.",
+ "CpeF4U": "Create groups to share with lots of people in one go.",
+ "CpiKUF": "Text files",
+ "Cpk2oz": "Your selection reflects your current plan / billing period / add-on (space). Your {billing_period} total will not change. Your scheduled change will be reverted.",
+ "Cq5FzG": "You\u2019ll get an alert if a member shares sensitive information outside your team.",
+ "CqPhXv": "You can only email this link",
+ "CqUAV5": "Transient ID + email assertion",
+ "CqxU6X": "On {date}, your plan will change from {start_plan}, billed {start_billing_schedule}, to {end_plan}, billed {end_billing_schedule}. Your new {billing_schedule} total will be {recurring_total}.",
+ "CrQ+7O": "Request admin access",
+ "Crjkyu": "Declined on {request_date}",
+ "Crrn66": "Unlink {device_model}",
+ "Cs6e8c": "Something went wrong. Please try again later",
+ "CsgvOF": "Great! Let\u2019s change your email address.",
+ "Ct4owd": "To change your billing information, please first of all renew your {trademark_business}\n account. During the renewal process, you\u2019ll be able to choose a different payment method.",
+ "CtH5WI": "Integrated options to join a Zoom meeting or send a message on Slack to a Dropbox user profile.",
+ "CtZXhM": "Create team folder",
+ "CtlL6P": "Payments & billing",
+ "Ctm1ee": "{count, plural, one {Could not add {count} file} other {Could not add {count} files}}",
+ "Cu4KD8": "Here\u2019s your team space",
+ "CunpdT": "A copy of the BAA Agreement will be uploaded to your Dropbox once you agree.",
+ "CutXPW": "Some of these items are shared, so other people might have made changes since they were removed from your account.",
+ "CuvJqT": "None",
+ "Cv/c25": "Already member group",
+ "CvAVX3": "Archive",
+ "CvC6k9": "You\u2019re saving {savePercentage,number,::percent} per licence over the course of a year.",
+ "CvTxIw": "This alert is triggered when someone outside your team shares a malware file with team members.",
+ "CvbPIi": "Organisation admins",
+ "CvhuBB": "If you already use Dropbox, moving to a {trademark_business} account is easy! All of your content will stay the same \u2013 your files will stay where they are and all of your settings (such as shared folder relationships and linked devices) will remain the same. For admins, all of your team members who already use Dropbox will have the same experience, and anyone without an existing Dropbox account will be prompted to sign up when you send them an invitation. For Dropbox {trademark_plus} users who switch to {trademark_business}, any remaining credits will be returned as a pro rata refund to the original payment method.",
+ "CvxD0q": "Brand logo",
+ "Cw6aHE": "Not allowed by your team. Contact your team admin to connect.",
+ "CwYxp0": "Instant access",
+ "Cwkfdc": "Sampling rate",
+ "CwuFw8": "Cookies are required to view this Dropbox content. You may need to enable them in your browser.",
+ "CwzQuV": "One last step: download the desktop app to have all your files at your fingertips.",
+ "Cx9wsw": "Experience campaigns",
+ "CxRIXA": "Welcome to Professional",
+ "CxlnYJ": "{trademark_business}: {title}",
+ "Cxmbw8": "Your team is losing {space} of space, and you and your team members have returned to your initial space quotas.",
+ "Cy+7xr": "You renamed this file",
+ "CyOG7U": "Add payment method",
+ "CyRaJu": "Your Dropbox account is full.",
+ "CyuYgB": "Make them a team admin?",
+ "CyxyyA": "Folder members",
+ "Cz9tal": "Rewind to a previous time",
+ "CzRGuP": "Search for files, folders and content",
+ "D+/RyZ": "Choose a file to start",
+ "D+135/": "Edit {display_name}\u2019s space limit",
+ "D+KIIm": "The file doesn\u2019t exist",
+ "D+gjeO": "Any device",
+ "D/5sPh": "slack",
+ "D/D/vE": "New users join",
+ "D/P6Pa": "{fileCount, plural, one {{fileCount,number} file} other {{fileCount,number} files}}",
+ "D/Sn82": "Fantastic! Click here to go back to the Dropbox Support home page.",
+ "D/m9XE": "Couldn\u2018t find an answer above? Please submit a help request form so we can get in touch.",
+ "D/n9sr": "Next",
+ "D/prww": "Members must use two-step verification",
+ "D/rjjz": "You\u2019re already connected to {service_name}",
+ "D/sjzk": "{outstanding_invites} remaining",
+ "D/tUrq": "View file",
+ "D09GlF": "Resend",
+ "D0UebZ": "How branded sharing works",
+ "D0n7tP": "Bear in mind that if group members have a shared link to this file, they might still be able to view or edit it.",
+ "D0noCL": "PIN changed.",
+ "D14eS/": "Save email attachments to Dropbox",
+ "D1br1j": "Check out",
+ "D26Tzh": "Any active members of your {plan} team will be downgraded to Dropbox Basic accounts on {date}.",
+ "D2FbWd": "wizard fist bumping a rabbit",
+ "D2TAqV": "Space that grows with your team",
+ "D2VN2I": "To change who can access the link, go to the shared folder options.",
+ "D2WNWl": "You won\u2019t get an alert if a member deletes an unusually large amount of content.",
+ "D3751u": "Do you want to delete this file?",
+ "D3IxOv": "Pinned 5 days ago",
+ "D3YZN3": "Now pick up where you left off in the Dropbox app.",
+ "D3qjGs": "Charged now:",
+ "D4+6Xw": "Add an optional message",
+ "D4EFB6": "The destination folder has been deleted. Please choose another one.",
+ "D4emRA": "Verify your email to start sharing",
+ "D4rg8p": "Full deployment",
+ "D4zrFS": "I understand this can\u2019t be undone and my team\u2019s account will be completely transferred to the primary team",
+ "D5/6mK": "I no longer need this product",
+ "D5EX99": "I still want to downgrade",
+ "D5S/Kk": "Deleted Paper doc",
+ "D6kbg6": "Start by inviting your family",
+ "D6wSz0": "Create CSV report",
+ "D7t0ul": "You must agree to the Dropbox terms to turn on Paper",
+ "D82jPj": "Play, comment on and publish private and public videos",
+ "D8D6Vb": "Failed to load request.",
+ "D8K+9v": "Hide",
+ "D9+Ln+": "15-day trial",
+ "D93tst": "Enable your IT team to structure a company wiki, build a self-service knowledge base and onboard new recruits with ease.",
+ "D9XHqB": "Unable to show section.",
+ "D9l0jJ": "You ({name}) are the owner",
+ "D9yBwz": "Your local currency has changed. Your selected plan\n is {monthly_per_user}/user/month ({monthly_price} charged per month).\n You\u2019ll only be charged if you don\u2019t cancel your trial before it\n ends on {trial_end_date}.",
+ "D9zyJH": "Set to default",
+ "DA3CAk": "Make space to work",
+ "DA7PGf": "What can I do with Paper?",
+ "DAGHpK": "Having trouble installing? ",
+ "DAPFIt": "Collapse module",
+ "DB3BmC": "Keep your family organised",
+ "DBGyx6": "You moved the {card_name} card with this file attached to the {board_name} board",
+ "DBYP+0": "Upgrade to {trademark_business} to get access to the full admin console and take your team to the next level.",
+ "DCJ3J1": "Only you can see this folder. Put things here that you don\u2019t want to share with everyone, such as your work in progress. If you already had files in Dropbox, they\u2019re now here, safe and sound.",
+ "DCNJ2c": "Include an image on your splash screen that shows up when you share files or folders.",
+ "DCWM0R": "Open",
+ "DCfdq9": "Sign in to your personal Dropbox",
+ "DDCDRp": "People with password",
+ "DDCr3O": "Remove {item} from upload queue",
+ "DDg1zX": "{team_name}",
+ "DE3hjq": "What\u2019s Included",
+ "DEVLIQ": "A complete list of your linked devices can be found here.",
+ "DExBT7": "Your background image should be at least 20px by 20px.",
+ "DF2xnS": "Contact telephone",
+ "DFLqLE": "6-digit code",
+ "DFjPX9": "Illustration of a computer with a new file",
+ "DG4lYD": "Wrap up projects by easily and securely sending final files or large collections of files, complete with password protection, expiry dates and delivery confirmation.",
+ "DGTMqU": "Start signing",
+ "DGdGzv": "Share family photos, docs and more",
+ "DGxBAt": "Optional",
+ "DHafRJ": "{trademark_business} account",
+ "DHeu7O": "Media",
+ "DHjasW": "Created:",
+ "DHwU7Z": "For individuals",
+ "DHwX9/": "Cancel",
+ "DI9fEf": "Sharing {folder_name} with members of {parent_folder_name}\u2026",
+ "DIlw7R": "Illegal content",
+ "DIq6Gz": "Could not communicate with host window {target_origin}",
+ "DJOIWU": "Require an additional layer of security when signing in, such as a key or code.",
+ "DJRhTP": "You're not signed in to the Dropbox account that {vaultOwnerFname} invited. {SwitchAccounts}",
+ "DKA/ma": "A drawing of a camera with the Dropbox green tick",
+ "DKSsPd": "Resend verification email",
+ "DKjb8y": "Got it! Thanks for letting us know",
+ "DLEQeq": "Link settings",
+ "DLVRSH": "Individual doc settings can be changed to allow people outside my team to open the doc.",
+ "DLrTA7": "Only the latest version",
+ "DLyScQ": "",
+ "DM7zll": "Download for {platform}",
+ "DMts9k": "Cancel",
+ "DN6GvF": "{count, plural, one {To continue, you need to sign out of one device} other {To continue, you need to sign out of {count} devices}}",
+ "DNyJ1w": "No results",
+ "DO0qKT": "deleted link",
+ "DOOyh7": "Shared folders and links",
+ "DOgC5w": "Dropbox app already installed? Can\u2019t install software on this computer?",
+ "DOiA9c": "Something went wrong. We\u2019re working on it.",
+ "DOjvpK": "Sending request...",
+ "DOkWiK": "Will my credit card be charged right now?",
+ "DPdWKV": "The amount of space you receive by default",
+ "DPv1pf": "{numUsers, plural, one {{numUsers,number} user} other {{numUsers,number} users}}",
+ "DQ0Rwh": "Provisioned",
+ "DQAg6E": "Help with billing and payments",
+ "DQE4OW": "Download complete",
+ "DQLFiT": "Enter a title for this card...",
+ "DQiXDX": "Smart Synced",
+ "DRKsia": "Free up {xgb} GB of hard drive space with Smart Sync",
+ "DROpD+": "Deselect all",
+ "DRVSxm": "A guest downloaded this file",
+ "DRw3WP": "Anyone in your Dropbox team with the link and password can view this file",
+ "DSMBAE": "Start typing a folder name",
+ "DT4G8U": "Something went wrong.",
+ "DTHqX2": "{standard_rewind_policy_max_days}-day account recovery with Dropbox Rewind",
+ "DTOpUy": "That\u2019s a bit too long ({count}/{max} max)",
+ "DTxqCx": "Buyers can download the files and keep a copy.",
+ "DU4eMy": "Canvas",
+ "DU9Meo": "Restoration link",
+ "DUDfaX": "Add items",
+ "DUHhfd": "Move all files to team account",
+ "DUJmji": "{count, plural, one {You cannot have fewer licences than team members, and your account has {count} licence by default.} other {You cannot have fewer licences than team members, and your account has {count} licences by default.}}",
+ "DUTcNc": "Go ahead and click on it now.",
+ "DUVaTi": "Verify email",
+ "DUbjsQ": "I need more help",
+ "DUeQds": "Tasks marked as complete here will be ticked off in Paper automatically.",
+ "DVJ4/q": "View earlier dates",
+ "DVUAxh": "By text",
+ "DVWR1j": "Outlook",
+ "DVayew": "If you don\u2019t have a personal account, click 'Link accounts' to create one for free.",
+ "DWChyI": "Automatically saves email attachments when you send emails to {email_address}",
+ "DWcV9y": "Unsharing unsuccessful. This folder has too many files.",
+ "DWwxhG": "View-only in preview",
+ "DWyepJ": "You were removed from {single_item_name} in {folder_path}",
+ "DX7rMh": "Can\u2019t show link. Something\u2019s wrong with this file.",
+ "DXC6te": "Remove admin privileges from {display_name}",
+ "DXEa3N": "Not now",
+ "DXIWrE": "deleted archive",
+ "DXXUzU": "
Your currency is based on the billing address that you first used to purchase a Dropbox subscription.
If your new billing country uses the same currency, you can update your billing information to change your country.
To change your currency, you must cancel your current Dropbox subscription and re-subscribe using a new billing address in your desired country.
",
+ "DY6gzv": "Close",
+ "DYOfu0": "Dismiss",
+ "DYmg/x": "Here\u2019s how stuff looks when you share outside the team.",
+ "DYpwRs": "Store",
+ "DYzA9G": "See how many people are using their own Dropbox accounts in your company domain, and help them join your team.",
+ "DZ14UC": "This transfer is over the {file_size_limit} limit",
+ "DZFGjg": "Downloading {name} {progress,number,::percent}",
+ "DZRU+E": "Move files between a personal and Dropbox Business account",
+ "DZSpcz": "Remember that, after downgrading from {current_plan_name}, you\u2019ll go from {current_plan_space} to {free_quota} of space (plus any bonus space earned previously) and you\u2019ll lose powerful features such as Smart Sync.",
+ "DZZcth": "Work",
+ "DZeWex": "You can change access to any folder at any time.",
+ "DZtAEl": "Pin",
+ "Da7N5p": "Dropbox sharing permissions make it easy to collaborate with familiar settings.",
+ "Da7zII": "You\u2019ve successfully verified permission for our support agents to view additional information related to your account. Please watch for an update from our support team.",
+ "DaDVT1": "All members will keep a copy of your Family Room folder.",
+ "Db79+e": "Failed to load modal.",
+ "DbLUIG": "Save",
+ "DbT6E7": "Your {plan} will be downgraded to Dropbox Basic on {date}.",
+ "Dc18S0": "How does Smart Sync save space on my hard drive?",
+ "DcKHEo": "Missing dates",
+ "DcKRPG": "Unlink",
+ "DcuOhc": "{index}. Create your account",
+ "DdQVS4": "Members of {shared_folder_name} ({member_count_string})",
+ "DdgIRL": "Keep editing",
+ "De29fY": "Signed in to {name} Dropbox",
+ "De5grV": "Member",
+ "DeB65W": "Couldn\u2019t upload. Try again in case it was a one-off, or reload the page.",
+ "DePCsb": "{folder_name} team folder has been restored but no groups have access to it. Would you like to add groups now?",
+ "DeXDpY": "Top right",
+ "Demriw": "Expired",
+ "Df007B": "{client_version_number} for {platform}",
+ "DfB6Pu": "month",
+ "DfGklh": "Back to preview",
+ "DfguIi": "Your version has unsaved changes.",
+ "Dg9/fw": "Download settings",
+ "DgNBM/": "iDEAL",
+ "DhAXrs": "Link not available.",
+ "DhomU6": "Copy link",
+ "Di+hvL": "Select a location for your Dropbox folder",
+ "Di2bB3": "URL",
+ "DiOQqr": "Or continue with {space} {dropbox_basic} plan",
+ "Die2Pn": "Rename transfer",
+ "Dj/752": "{count, plural, one {{count} new} other {{count} new}}",
+ "Dj00Xc": "Password",
+ "Dj4LXB": "We can\u2019t issue a refund at the moment because your last payment is still being processed. Please wait at least 2 business days, then try again. If you continue to have issues, contact Dropbox Support.",
+ "Djcj3P": "People with the password can view",
+ "Djg5OP": "Message on Slack ({workspaceName})",
+ "Dk+Py4": "New to Trello? Get started",
+ "DkHo17": "Enter your thoughts here",
+ "DkK6KM": "There was an error deleting this invitation.",
+ "DkMbIR": "Select files",
+ "Dkf+Pc": "Go to my Dropbox",
+ "DkgKYE": "Back",
+ "Dl+iw2": "Someone else\u2019s account",
+ "DlTX41": "{dropbox_paper} keeps teams together",
+ "DlX7Ow": "Payment method",
+ "DlYP8J": "Shared with other people",
+ "Dla82j": "{team_name} members",
+ "DldXvN": "Download is unavailable while file is being uploaded.",
+ "DljPpW": "Insert your security key to use it",
+ "DmMDME": "{price} per month",
+ "DmXK1H": "{count, plural, one {({count} member)} other {({count} members)}}",
+ "Dma8SU": "Custom expiry",
+ "DmpaCL": "For editing",
+ "Dn6iyj": "Marking up file...",
+ "DnISVN": "With the Family Room folder, everyone can access shared content such as photos and videos, holiday or wedding planning spreadsheets, and emergency contacts when you need them the most.",
+ "DnSYRK": "Folders",
+ "DnYpJ5": "image",
+ "DnaiNC": "Add everyone in {team_name}",
+ "Dnp+hz": "Coordinate teams by setting milestones, assigning to-dos and managing approvals.",
+ "DoIf+E": "Message on Slack",
+ "Dp8U2l": "Please verify your email address",
+ "DpG3vJ": "Your team\u2019s plan usage details are below. If you have any questions, you can contact {reseller_name} on {email_or_phone}.",
+ "DpbrhN": "This can happen when something isn't safe or isn't allowed to be shared.",
+ "Dq0QQH": "or drag files here",
+ "DqRjhN": "\u2013",
+ "DqcjPT": "You can view",
+ "Dqm0Ju": "Got it",
+ "DrEa0N": "{new_total} per {new_period} will be charged to your payment method on file.",
+ "DrX/AV": "The file storage interface and someone using Dropbox integrations to create a Google Slides presentation.",
+ "DrXtUG": "Information",
+ "DryIqI": "Link creator name",
+ "DsVskZ": "When the page reloads, tap 'Download' again.",
+ "Dt53+6": "Connect to Zoom",
+ "DtHJTE": "Duplicate campaign...",
+ "DtMAq9": "Your call has ended.",
+ "DtOr0o": "You can come back at any time by going to your account tab in the top right-hand corner and clicking Take a tour",
+ "DtTthQ": "Data governance will be moved over",
+ "DtibH5": "How to use camera uploads",
+ "DtwbRE": "Project folder",
+ "DuMLvR": "Album name",
+ "DuR7iM": "There was an internal Dropbox error.",
+ "DuTcCA": "{count, plural, one {Anyone in your Dropbox team with the link can view this file. Expires in {count} day.} other {Anyone in your Dropbox team with the link can view this file. Expires in {count} days.}}",
+ "DuhPxK": "This file is larger than the maximum size (20 MB)",
+ "DunJW9": "Download again",
+ "DupHq4": "{count, plural, one {You\u2019ll be charged an additional {new_amount_including_tax} for adding {additional_licenses} licence pro rata for the current billing period.{white_space}} other {You\u2019ll be charged an additional {new_amount_including_tax} for adding {additional_licenses} licences pro rata for the current billing period.{white_space}}}",
+ "Duy5BB": "Team folder name",
+ "DvP2/w": "{selected_plan_detail} ",
+ "Dvl2Dl": "Does a showcase use Dropbox storage space?",
+ "Dvw5Kr": "Most recent",
+ "Dvwua+": "Overview",
+ "Dw/7c6": "Some of these people are not in your Dropbox team.",
+ "Dw43cf": "From {date}, your plan will be downgraded to Dropbox {plan_name} without extended version history. You will revert to {days}-day version history. Your new {billing_schedule} total will be {scheduled_total}.",
+ "Dw9ZsX": "Cardholder name",
+ "Dwje+M": "Delete {display_name}\u2019s account completely",
+ "DxhWHl": "Finally now all of your tools, content and collaborators are accessible from the same place. {trademark_business} is more than secure storage \u2013 it's a smart, seamless way to optimise your existing workflow.",
+ "Dy7R90": "Untick the team if you want to continue on your own instead",
+ "DyAxR3": "Your account will be merged into the {team_name} Dropbox account, where you\u2019ll have\na private area for your stuff. {team_name} admins can manage your files and Paper docs if they\nupgrade the account to {trademark_business}. You\u2019ll sign in with {work_email}.",
+ "DyrBQI": "Rename",
+ "DzaRL0": "Join the {team_name} shared Dropbox account?",
+ "DzcvS8": "Enter a valid number",
+ "E+3IgE": "If you\u2019re running Dropbox on your server for the first time, you\u2019ll be asked to\n copy and paste a link in a working browser to create a new account or add your server to an\n existing account. Once you\u2019ve done this, your Dropbox folder will be created in your home directory.\n Download this Python script to control Dropbox from the command line. For easy access,\n put a symlink to the script anywhere in your PATH.",
+ "E+Sm/s": "Tips for using Dropbox Paper",
+ "E+Vu/n": "Cannot request access for an inactive team.",
+ "E+nHv4": "Support",
+ "E/Jy6H": "While you wait, you can preview this file in another tab.",
+ "E/vNT2": "You haven\u2019t included anyone to invite! Please invite at least one person.",
+ "E0iC8o": "You can ask the person who shared the link to invite you directly. Just so you know, you're signed in as {email}.",
+ "E0v6mC": "Share with",
+ "E1ARN2": "Freelancers",
+ "E1J8cw": "{numInvitees, plural, one {You need more licences for this invitation. Please contact your account executive to purchase licences.} other {You need more licences for these invitations. Please contact your account executive to purchase licences.}}",
+ "E1MoOZ": "We\u2019ll send a reminder email to anyone who hasn\u2019t yet set up two-step verification.",
+ "E1Zecc": "Create report",
+ "E1aGBg": "{team_name} account",
+ "E1nUJ4": "{count} images and videos",
+ "E2/xHY": "The system extension will be uninstalled from your team\u2019s computers.",
+ "E2qErh": "Extremely satisfied",
+ "E3AATa": "Duration",
+ "E3Cjhs": "Monitor the file-level actions that your team members are taking.",
+ "E3Ydgf": "You can only copy this link",
+ "E4/Q2q": "Learn more",
+ "E44pjD": "Guess again",
+ "E49hK6": "Couldn't extract files. Can only handle files up to {file_size} MB.",
+ "E4RVKt": "We've dispatched a fleet of pandas to analyse your account. Please wait\u2026",
+ "E5+L0i": "An overview of Dropbox Paper showing text, a checklist, images and two users collaborating with comments.",
+ "E5PyhP": "Your licence key will be activated and no charge will be made to your payment method on file.",
+ "E5ZvL4": "The \u2018team name\u2019 is the name your {trademark_business} account will go by. For example, \u2018Team World Peace\u2019. You can always change this, even after it\u2019s been set.",
+ "E6+0Aw": "Just before a spike is a good place to start",
+ "E6DVmG": "Drag here or choose files",
+ "E6Ku17": "open settings",
+ "E6SULc": "This account\u2019s {plan} plan will be renewed on {date}. {billing_summary}",
+ "E6W3e0": "Branded sharing",
+ "E6pkM7": "We noticed something suspicious, such as a lot of downloads in a day. Ask the owner to create a new link. Learn more",
+ "E6ymO6": "Cancel",
+ "E73zzX": "{price}/month{line_break}({tax_string})",
+ "E76/3z": "Email sent!",
+ "E7Mnxf": "Remove manager permissions",
+ "E7n2JC": "If you\u2019ve got an issue, we\u2019re here for you. Chat directly to Dropbox support to resolve any issues quickly.",
+ "E7rT2W": "Ads",
+ "E8K1hr": "example@company.com",
+ "E8kLRO": "Withheld {tax_name} ({tax_percent,number,::percent .##}): {tax_amount}",
+ "E8w+ml": "Cancel trial",
+ "E8yrWK": "Connect your domains",
+ "E9Pl4j": "Send up to 2 GB per transfer",
+ "E9Q42D": "Enter a new password for your account. This will also change your email address from {email} to {new_email}.",
+ "EAkfIY": "Easier collaboration",
+ "EBSl02": "{count, plural, one {{count,number} person is already in your team: {emails}} other {{count,number} people are already in your team: {emails}}}",
+ "EBUqtV": "Unlock your vault, refresh the page and try again.",
+ "EBx+nl": "AM",
+ "EC77h4": "Using too much of my family\u2019s storage",
+ "ECG75B": "Smart Sync",
+ "ECZFz/": "{count, plural, one {{count} member} other {{count} members}}",
+ "ED/wrT": "Remember me",
+ "EDBJwx": "Disconnect",
+ "EDsCCo": "Your Dropbox account has over {max_files,number} files. Syncing that many files in one go will take a long time. We recommend that you sync only the folders you need right now.",
+ "EEXzcz": "Manage creative work with clients",
+ "EEc43S": "Freelance",
+ "EEvTVP": "Anyone with this link can edit the file. Downloads disabled.",
+ "EExgXY": "Verified domains:",
+ "EF/17d": "Pages",
+ "EF52pb": "Send up to {send_size_limit} for free to anyone",
+ "EFGwFd": "Members of {team_name} won\u2019t be able to access {folder_name}.",
+ "EFMKS+": "Download the file",
+ "EFRGA8": "Collapse section",
+ "EFmCuH": "Text me the link",
+ "EFtntj": "Current plan",
+ "EG+Tsf": "Folder renamed.",
+ "EG/Tli": "Delay (in seconds):",
+ "EGb0bw": "Manage this app",
+ "EGoORJ": "Creating report\u2026",
+ "EGrZ5w": "Dismiss",
+ "EH4Xhy": "Sign in to dropbox.com to keep working.",
+ "EHGhBT": "Use this token when setting up Dropbox with your EMM vendor.",
+ "EHeQzm": "How file locking works",
+ "EI542R": "The {card_name} with this file attached was unarchived to the {board_name} board",
+ "EIHDne": "Two-step verification adds an extra layer of protection to your account. Whenever you sign in to the Dropbox website or link a new device, you\u2019ll need to enter both your password and a security code sent to your mobile phone.",
+ "EIOOOI": "Team policies",
+ "EIQpcq": "Edit language",
+ "EIToGf": "We\u2019re working on a {trademark_family} plan with more shared space, but an upgrade isn\u2019t available yet. Individual {trademark_family} members can free up space by deleting unused files and folders, or they can opt out of {dropbox_family} and choose an individual plan that meets their needs.",
+ "EIULk3": "No limit",
+ "EIxg6H": "Install the Dropbox system extension to enable Smart Sync?",
+ "EK/q5b": "Link copied. Allows viewing.{br}{copiedUrlDisplay}",
+ "EKgeAS": "Couldn\u2019t rewind this folder. Try again or let us help",
+ "EKnGia": "The member was removed from your family.",
+ "ELKKjB": "Full",
+ "ELPoBF": "Just one moment while we take you back to the desktop app.",
+ "ELsJsf": "Previous slide",
+ "ELzCWG": "We couldn\u2019t log you in with Google. Try again?",
+ "EMOHAJ": "Templates for marketing teams",
+ "EMTopi": "Removing {member_name}...",
+ "EMXHTJ": "Send for signature",
+ "EN9RBU": "External sharing",
+ "ENGFia": "Paper is partially enabled for your team. You can control who has access here.",
+ "ENMVb1": "Couldn\u2019t undo move.",
+ "ENlS4s": "{count, plural, one {Moving {count} item...} other {Moving {count} items...}}",
+ "ENrcwA": "Dropbox Paper is a new type of doc where teams can bring ideas to life in a single space. Use Paper to write and edit, manage tasks, review designs or run meetings.",
+ "EOFX3k": "You can\u2019t restore any files that have been removed from your Dropbox",
+ "EOoaCf": "Dropbox",
+ "EOtUeY": "Invite by email",
+ "EOwMfn": "See all deletion and version history of your files for one year.",
+ "EP1jNF": "Members moved",
+ "EP2yEU": "3 or more",
+ "EPgLDL": "Edit hold",
+ "EPpPpF": "{count, plural, one {Your plan only supports 1 linked device. Upgrade to {dropbox_plus}\n to stay signed in to more than 1 device at a time.} other {Your plan only supports {count} devices. Upgrade to {dropbox_plus}\n to stay signed in to more than {count} devices at a time.}}",
+ "EPx9jS": "Camera model",
+ "EQ1qvT": "Ray P.",
+ "EQ6NDi": "Contact us",
+ "EQfnGr": "We were unable to complete your request.",
+ "EQpX0G": "Default permission for all other apps",
+ "ER3Cey": "Document turnaround times up to 80% faster",
+ "ESBIe+": "Schedule",
+ "ESecig": "Tables",
+ "ESoQOz": "You left the team.",
+ "ETBRGg": "recommended",
+ "ETO0Wr": "Add a note if you like",
+ "ETQ33x": "Error creating report.",
+ "ETUSAG": "Account plan \u2192",
+ "ETp2gK": "Present work to my team or clients",
+ "ETy9PA": "Cannot add an empty folder",
+ "EUUBQX": "There was an unexpected error. Please try again later or contact support.",
+ "EUhgvE": "Tidy up",
+ "EUp7Eo": "Email or name",
+ "EV/g+s": "No groups found",
+ "EV0Bgi": "Get {vacuum_days} of accident, theft and disaster recovery",
+ "EWbjWs": "Duration",
+ "EWc63s": "{count, plural, one {{count} member} other {{count} members}}",
+ "EWrDUn": "Choose members or groups",
+ "EXBwHQ": "{start_date} - {end_date}",
+ "EXL4DE": "Interested in other ways you can keep your account secure?",
+ "EXfF4B": "This link is invalid. Please verify that the link was opened directly from the email you received and try again. If you still receive this error message, please contact our support team.",
+ "EXrwGc": "Everyone in {team_name} can edit at the top level. Change setting",
+ "EY3gAJ": "Get started",
+ "EYJ3Li": "People can only view and download the file",
+ "EYQ0Wr": "Please log in as {email}{br}to upgrade your plan.",
+ "EYb0mR": "Select your bank...",
+ "EYw1Cy": "Documents",
+ "EZm8Rx": "Failed to load modal.",
+ "Ea8/7H": "You\u2019re about to change your Dropbox email address ({email}) and reset your password. Would you like to continue?",
+ "EaSxr+": "Send invitation",
+ "EbFf1n": "Looking good!",
+ "EbjYX+": "Name of product",
+ "EcKZ4P": "Keep {trademark_business}",
+ "Ed/RQ2": "Title",
+ "Ed74Bk": "Failed to unlink paper devices. Please try again later.",
+ "EdVYXW": "A drawing of a cat reaching for a fish skeleton under a box",
+ "EdrYIB": "Move members",
+ "EeWtuF": "Uploads complete!",
+ "Eeorda": "\u2022 Changing your browser to an updated version of Chrome, Edge or Opera",
+ "Ef8m3r": "Allow members to request signatures and sign documents",
+ "EfMIQd": "{count, plural, one {{count} key} other {{count} keys}}",
+ "EfUQcM": "IP address",
+ "EfqPiJ": "Your changes won\u2019t be saved.",
+ "EfyLN0": "Free up your computer\u2019s hard drive with Smart Sync",
+ "EghH/d": "{num_docs} Paper docs and {num_folders} folders",
+ "EgikhY": "Create groups to simplify sharing",
+ "EgjKrN": "The ZIP folder you\u2019re downloading doesn\u2019t sync with {firstName}\u2019s vault. If {firstName} makes updates, your folder stays the same",
+ "Eh1woB": "{storage} of storage to help you store or share a few files for a quick project.",
+ "Eh61ix": "Add your business name and logo to any files or folders you share.",
+ "EhBVdm": "We\u2019ve emailed the receipt and instructions for accessing your file to {email}.",
+ "EhXC4d": "Get your link code",
+ "EhkgVc": "Status icon",
+ "Ehmc4Q": "Please disable Paper first.",
+ "EhrnXF": "Your request is pending approval",
+ "EhtH9U": "Viewing now",
+ "Ei1e3Y": "Make folders online only",
+ "EiEqjk": "Make {collaboratorName} the owner of this folder?",
+ "EiOh7j": "Go from {basic_space} to {space} of storage space, and unlock premium features",
+ "EipTQ9": "Upload Dropbox content anywhere the content editor appears in Canvas.",
+ "Ej5kjR": "In company-managed groups, admins are responsible for adding and removing members. In user-managed groups, users approve new members and existing members can leave whenever they like.",
+ "EjL/IJ": "Send me a notification",
+ "EjS5+X": "Submit",
+ "EjnB2M": "Save hard drive space by making files online only. Members can\n still browse online-only files directly from the Dropbox folder on their computers.",
+ "Ejp/L8": "Platform",
+ "EjsYag": "This member will be notified that their account has been suspended and their devices will stop syncing. The account will continue to use a licence and you can remove the suspension or delete the account at any time.",
+ "EjtFRv": "Sync top-level folder too?",
+ "Ejwzio": "Your account will be downgraded and your team will lose the additional space it\u2019s been using, file recovery and advanced features such as Smart Sync.",
+ "Ek+UwA": "Activity: this week",
+ "EkFAkT": "From {date}, we\u2019ll bill you once a {schedule_noun} for your Dropbox {plan}. Your new {schedule} total will be {scheduled_total}.",
+ "Ekh3bq": "OS version",
+ "El1G5f": "No deadline",
+ "El6O0Q": "toolbar",
+ "El6a1g": "What is {dropbox_enterprise}?",
+ "ElDiXe": "Unable to create transfer",
+ "ElMtg6": "Well done!",
+ "ElTpYK": "If selected, {name} will be shared with everyone that joins your Dropbox team.",
+ "ElcPzY": "What is Smart Workspace?",
+ "ElsIdD": "An unknown error has occurred. Please enter your password and try again.",
+ "Elv8fe": "Your background image should be no more than 10 MB in size.",
+ "EmB8rD": "Account created. One last step...",
+ "EmJLlM": "Status: {status}",
+ "EmOY+w": "Creating new transfer...",
+ "En219Z": "Create folder",
+ "En5KXm": "HelloSign \u2013 a Dropbox company",
+ "Enxj1g": "Keep all of your team\u2019s work in one place",
+ "Eo3G73": "Error unlocking. Please try again later.",
+ "EoEi1l": "Fired, return not detected",
+ "Eoa7wt": "Support request verification",
+ "Ep2u8E": "Invite friends",
+ "EpLafK": "You can manage access in the admin console.",
+ "EpYmFq": "Delete selected watermark image",
+ "EpeY3Z": "Remove",
+ "EqTfoU": "Year to date",
+ "EqUCHi": "Created shortcut",
+ "Eqe8R9": "Choose your plan",
+ "ErPYhx": "Dropbox signs HIPAA Business Associate Agreements to enable Covered Entities and their Business Associates to store Protected Health Information in Dropbox. Please complete the following fields:",
+ "ErccPg": "Summary",
+ "Ercy3i": "Select all",
+ "ErrGVR": "Unlink all of your mobile devices from Paper.",
+ "Erx7lP": "Send a reminder?",
+ "EsX/pm": "{count, plural, one {{creator_name} sent {count} item} other {{creator_name} sent {count} items}}",
+ "EtJkOW": "Content management",
+ "EtOBfz": "Anyone in your Dropbox team with the link and password can view this folder",
+ "EtTGfV": "We couldn\u2019t issue your refund and your plan hasn\u2019t been changed. Please contact Dropbox Support.",
+ "EtmMRq": "Advanced sharing permissions",
+ "EuBU0c": "Restoring...",
+ "EuLBkx": "Add your teammates\u2019 email addresses below:",
+ "EuP9S1": "Easily integrate Dropbox with any large identity provider.",
+ "EwObyT": "Share the file with others",
+ "EwZlqx": "Choose a folder for submitted files",
+ "EwnYms": "A {dropbox_paper} document containing a photo of a satellite and a to-do list.",
+ "EwtFU3": "Try Professional free",
+ "Ex23ZE": "The Customer will not use the Services to create, receive, maintain or transmit PHI to other Dropbox services outside the Included Functionality, except where Dropbox has expressly entered into a separate HIPAA Business Associate Agreement for use of those Dropbox services. The Customer agrees that Dropbox has no obligation to protect PHI under this HIPAA BAA to the extent the Customer creates, receives, maintains or transmits such PHI outside the Included Functionality, including the Customer\u2019s use of its offline or on-premise storage tools or third-party applications.",
+ "ExAvCI": "{count, plural, one {You restored {count} item} other {You restored {count} items}}",
+ "ExhGkl": "Shared link URL",
+ "Ey/8Q8": "Trust this computer",
+ "EyHIRK": "Number of files",
+ "EyJ4U4": "{count, plural, one {{count} shared folder} other {{count} shared folders}}",
+ "Eyrk2O": "{name} shared this file with {entity}",
+ "EzrGZU": "The Dropbox mobile app simplifies common tasks that can eat up your day. Scan receipts, stickies and other documents in seconds using your phone\u2019s camera. Save time \u2013 and get peace of mind \u2013 with automatic photo and video backup.",
+ "EzsjEm": "Congrats! You\u2019ve enabled two-step verification.",
+ "EzzmNI": "Open file",
+ "F+LnFL": "T",
+ "F+hl46": "Cannot open this policy",
+ "F+zn0K": "Close",
+ "F/B5QX": "Instantly start Zoom meetings from Dropbox, automatically copy recorded meeting videos and transcripts to Dropbox, and see file activity in one place.",
+ "F/FWqg": "Other details",
+ "F/gmjd": "Password required for this link",
+ "F/nFEH": "Link expired, please request a new one",
+ "F/p9Uq": "Customisable solutions",
+ "F0Q7WV": "deleted team folder",
+ "F0SdTF": "Native (Windows Explorer, macOS Finder)",
+ "F0kqUs": "On, red-eye reduction",
+ "F0o6Ad": "You won\u2019t get an alert if a team member shares malware.",
+ "F1PCBh": "Delete account",
+ "F1TVtm": "{count, plural, one {By default, folder contents will sync to members with access to the folder.} other {By default, folder contents will sync to members with access to these folders.}}",
+ "F1g1bb": "or",
+ "F1loHM": "Team admins from the trusted team will be able to sign in to your admin console.",
+ "F1v4ge": "Simple, secure file storage and sharing with built-in tools to help you get and stay organised.",
+ "F1wJ2u": "Can I cancel the trial at any time?",
+ "F2/IGw": "{count, plural, one {Emailed to {count} person} other {Emailed to {count} people}}",
+ "F23jdQ": "Remove a member of \u201c{parent_folder}\u201d?",
+ "F2cWbF": "You can select how you\u2019d like each file type to open in Dropbox.",
+ "F2lDMN": "Upgrade now",
+ "F3VlpS": "You are saving {discount_total,number,::percent .##} in total on your yearly subscription. This includes a {discount_yearly,number,::percent .##} standard saving for choosing a yearly subscription, plus a special {discount_promo,number,::percent .##} discount.",
+ "F5ADP7": "Country and postcode must match your account\u2019s payment information.",
+ "F5GHJL": "The secondary team, {team_name}, has team Selective Sync enabled. To continue merging, enable this feature for your team too on the Sync settings page.",
+ "F5JKr7": "Current members",
+ "F5NZs5": "Save changes",
+ "F5h/wg": "Trouble downloading? Try again",
+ "F5izuk": "Completed",
+ "F6NIR0": "Turn off",
+ "F7A+9f": "The owner of {file_name} isn\u2019t a member of {team_name}.",
+ "F7gl6q": "Create link",
+ "F7owMq": "Could not disconnect {name} \u2013 please try again later",
+ "F7yotX": "Overview examples to inspire you",
+ "F836B+": "On (anyone)",
+ "F8dz1D": "{count, plural, one {Are you sure you want to invite this user?} other {Are you sure you want to invite these {num} users?}}",
+ "F9y0Zn": "Teams & admins",
+ "FA70cd": "Connect Dropbox",
+ "FAZpqt": "Team checklist",
+ "FAd9tz": "Name",
+ "FAgdb8": "Not at all happy",
+ "FBZ1TU": "Adobe Sign tracks the entire signature workflow and automatically stores all of your signed documents in one secure place.",
+ "FBhWHL": "Wrong PIN \u2013 try again",
+ "FBlHqR": "@mention someone to share this file.",
+ "FC7yfm": "{name} unlocked this file",
+ "FCAxfK": "{count, plural, one {{count,number} second} other {{count,number} seconds}}",
+ "FCIOqW": "Account verification",
+ "FCkFiN": "Get app",
+ "FDU/qx": "Over {million_user_count} million people use Dropbox and more than {business_count} teams use {trademark_business} to work smarter, including:",
+ "FDhMqF": "Your plan includes as much space as you need and unlimited API calls.",
+ "FDlkl8": "Send file to {slack}",
+ "FDw3AL": "Office 365 integration",
+ "FEEs/D": "Couldn't save as PDF because your Dropbox is out of storage",
+ "FEVIN3": "Show this ad until",
+ "FEpy0h": "Download name",
+ "FF2MgF": "Hover over a message > 'More actions' > 'More message shortcuts' > search for 'Dropbox'.",
+ "FFEhM0": "Request reopened. People can upload files again.",
+ "FFSHc1": "Download the error log to see what went wrong. Once you\u2019ve fixed the errors, try importing the file again.",
+ "FFXJyz": "Email link",
+ "FFaFs4": "To",
+ "FFdNpb": "Always deliver your best",
+ "FFqVaU": "Enter Dropbox 2-step verification code",
+ "FFs3dJ": "1. Secure it with a PIN",
+ "FH3K02": "Upgrade to add your own",
+ "FHWCk7": "Sending\u2026",
+ "FIEkjq": "Which Dropboxes do you want to unlink from {host_name}? Any Dropbox you unlink will immediately stop syncing.",
+ "FIkuCu": "don\u2019t connect computer to Dropbox account",
+ "FIt40L": "Something went wrong with the download. Please try clicking the Download button again.",
+ "FJLHLl": "Only you can view via the link. Downloads disabled.",
+ "FJruXu": "Previous last",
+ "FKQMdu": "After a meeting you host is recorded to Zoom cloud, the recording will be copied from Zoom cloud to your Zoom folder in Dropbox. We\u2019ll notify you when files are copied. This feature requires certain settings in your Zoom account to be enabled.",
+ "FKUdiy": "Your account will be merged into the {team_name} Dropbox account, where you\u2019ll have\na private area for your stuff. {team_name} admins can manage your files and Paper docs if they\nupgrade the account to {trademark_business}. {team_name} hasn\u2019t enabled Smart Sync, so new files will\nbe downloaded to your hard drive.",
+ "FKe7lD": "{count, plural, one {{filename} and {count} other item were deleted successfully.} other {{filename} and {count} other items were deleted successfully.}}",
+ "FKgWDC": "Enter the password for this link",
+ "FKs4ZT": "Manage",
+ "FL9yea": "Ctrl",
+ "FLLfhH": "Include {filename}",
+ "FLUEFq": "Link settings",
+ "FLZdgG": "Sad cat holding a broken umbrella in the rain",
+ "FLm00O": "Back",
+ "FM0J2d": "Edit settings for {name}",
+ "FMV0on": "This should be your full company name. This name will appear on billing statements.",
+ "FMgHvt": "File is being uploaded...",
+ "FMi51Q": "Your Dropbox pricing will automatically change on {date}.",
+ "FMwtPZ": "Please enter a valid number of users.",
+ "FN1EQh": "You\u2019re being billed externally.",
+ "FN3eG2": "Send",
+ "FNJvCl": "You\u2019re not signed in",
+ "FNTreO": "Only a team admin can convert {display_name}\u2019s account to a Basic account.",
+ "FNbyIG": "Responsibility.",
+ "FNvZo7": "Only admins",
+ "FNvk2j": "{price} / {duration}",
+ "FO/O/t": "Help Centre",
+ "FO/PBa": "{count, plural, one {You currently have {count} licence ({cost} per licence/{billing_schedule}).} other {You currently have {count} licences ({cost} per licence/{billing_schedule}).}}",
+ "FO7ep6": "Come back to this page on a PC with Windows 10 or a Mac with at least macOS Sierra 10.12 to get the {trademark_passwords} desktop app.",
+ "FODqf1": "Sign in",
+ "FOTirc": "This shows info about who has viewed a file to team members and anyone who can edit it. Team members can also track traffic and insights on files they can edit.",
+ "FOxSlp": "Track key details from your customer calls. Outline agenda topics, jot down notes and capture related action items to keep you and your team accountable.",
+ "FPEPRA": "{count, plural, one {Only you can view via the link. Expires in {count} day.} other {Only you can view via the link. Expires in {count} days.}}",
+ "FPPh+1": "When your download is complete, run the Dropbox installer",
+ "FQDYXM": "Don\u2019t set an end date",
+ "FQExXY": "Turn off Smart Sync update for Mac?",
+ "FQbLTX": "Keep Dropbox in your pocket",
+ "FRK0o9": "You can\u2019t upload files because you\u2019re out of space. Before you can upload to Dropbox, you need to get more space.",
+ "FRQa4i": "Only team admins",
+ "FRQeqz": "Edit profile",
+ "FS5Khl": "{count, plural, one {Tap Yes when you get the notification on this device:} other {Tap Yes when you get the notification on any of these devices:}}",
+ "FSZhfb": "User\u2018s password reset.",
+ "FSeZKt": "Allow 1-2 business days for a response.",
+ "FT16WL": "Comment",
+ "FTRXjM": "Cancelling your Dropbox {trademark_plus} trial in the {billing_store} will not affect your {trademark_business} trial.",
+ "FU93ia": "A new app is connected",
+ "FUgw/y": "Safari currently has no way to selectively allow Dropbox third-party cookie access. Please use a different browser.",
+ "FUlJkV": "Microsoft Word",
+ "FVWBqr": "Name changed.",
+ "FVe48a": "{potential_gb} GB",
+ "FVfpGL": "Report this ticket",
+ "FVq+2q": "Invite people to the team without waiting for admin approval",
+ "FW1/1Y": "Please enter a new password",
+ "FWJkxz": "Shared with you",
+ "FWSVAK": "Advanced, billed monthly",
+ "FWcIMP": "Add an email address for members to contact",
+ "FWvbK+": "Remove member",
+ "FXDId4": "Unarchive campaign",
+ "FXXrRL": "Reset all passwords?",
+ "FXfq01": "Enter a valid email address",
+ "FXqYpV": "Allows viewing.",
+ "FYFWxi": "Dropbox now has two {trademark_business} plans: {standard_display_name} and {advanced_display_name}. To give you the most powerful admin controls and security features, we\u2019ve given you access to {advanced_display_name} features at no extra charge. You\u2019ll have access to these features at your original pricing plan until your first renewal date in 2018. After that, your account will adopt the storage plans and pricing of {advanced_display_name}. If you want to downgrade to {standard_display_name}, you\u2019ll have until your first renewal date in 2018 to do so.",
+ "FYSoqK": "Show recommended plans",
+ "FZC8rP": "See info about people who view my files",
+ "FZm653": "Dropbox for Windows",
+ "FZvvYq": "Signed in with {provider}",
+ "Fa+cEy": "Anyone in your Dropbox team with the link and password can view this file. Downloads disabled.",
+ "FaO5KK": "App Centre would be better if\u2026",
+ "FaOoVc": "Not sure",
+ "Fb2HRt": "Let\u2019s create your new team account",
+ "Fb2T0a": "Communication",
+ "Fb32+S": "Open image source selection menu",
+ "Fb6V6v": "Billed monthly",
+ "Fb8F3r": "Tiered admin roles",
+ "FbWoPF": "Manage this team in the admin console",
+ "Fbyffs": "Shared {folder_name}.",
+ "Fbyxe1": "{count, plural, one {Members of the containing shared folder with the link can view this file. Expires in {count} day.} other {Members of the containing shared folder with the link can view this file. Expires in {count} days.}}",
+ "FcMi9V": "Category",
+ "FcUWvI": "Activity",
+ "FcXf1g": "Do any of these help with photos and videos?",
+ "FccHej": "A new device is linked",
+ "Fd23KZ": "{plan_name} is {price_per_year} per year. You\u2019ll save {savePercentage} compared with monthly billing.",
+ "Fd4rpp": "Search for a domain",
+ "FdIUrR": "Use shared folders without worrying about going over your storage quota.",
+ "FdPHTR": "Just sign in or create an account.",
+ "FdTkAn": "Moving files...",
+ "FeZD2I": "Auto, fired, return not detected",
+ "Feu4we": "{dropbox_plus} user",
+ "FfTCDK": "{business_space} of space",
+ "FfUURL": "To",
+ "FfZ3WR": "Create new export",
+ "Ffa/mi": "You\u2019ve lost access to powerful features.",
+ "Ffd3Cn": "Dropbox needs to verify your email address {email} to finish updating your personal email. It\u2019s as simple as clicking the link in the verification email we send you.",
+ "Fflsme": "What\u2019s included in the free trial?",
+ "Fh9Atn": "2 GB of space",
+ "FhSkpL": "Package, {alt}",
+ "FhXZaX": "Stormcrow",
+ "FhbDUp": "All team admins and activity log",
+ "FhxAuj": "You added this file",
+ "Fi5vzl": "Upload in progress...",
+ "FijxUX": "Your account comes with a free Plus trial",
+ "Fk4cKH": "Cancellations & refunds",
+ "FkaCY0": "I\u2019m sure",
+ "FkvWlK": "{failed_count,number} of {total_count,number} couldn't be moved to {target_team_name}",
+ "Fl6LcA": "Signed in to team",
+ "FlQsLB": "\u201cThe space in which we live should be for the person we are becoming now, not for the person we were in the past\u201d{br} \u2013 Marie Kondo",
+ "FlW+uk": "When people email you files, you can save those files from here.",
+ "FlqVEE": "Hello, world",
+ "Fm7xpO": "Save all of your edits to Dropbox.",
+ "FmMziB": "{count, plural, one {Anyone in your {trademark_business} team with this link and password can edit the file. Expires in {count} day.} other {Anyone in your {trademark_business} team with this link and password can edit the file. Expires in {count} days.}}",
+ "FmeLvS": "There was an error processing the X.509 certificate. Double check the certificate and try again.",
+ "Fmjlrn": "No billing information on file",
+ "FmwO+2": "Congratulations on joining {trademark_business}!",
+ "Fn1En+": "Dropbox is not working properly",
+ "FnHDRJ": "You haven't included anyone to invite. Please invite at least one person.",
+ "FoHNXw": "Saving changes...",
+ "FoLSMR": "Healthcare",
+ "FolCTl": "The University of Sydney Business School logo",
+ "FomW4x": "Request sent",
+ "Fozt1X": "Quickly move or copy files to a new location",
+ "Fp+Rh0": "Getting a new token will block all mobile sign-ins in the EMM app until you save the new token in your EMM vendor account and update the Dropbox EMM app on your team\u2019s devices.",
+ "Fp+s39": "Lets them view only. They can\u2019t see comments.",
+ "FpGVRp": "Rename",
+ "Fpw5cG": "Learn more about what they can access",
+ "FqbGUM": ", billed {schedule}",
+ "FquCbz": "Show who\u2019s viewing files in this folder to people who can edit.",
+ "Fr4ziX": "Suspended",
+ "Fr6+q3": "Stop syncing files",
+ "Fra1aX": "You\u2019re backing up your photos with automatic camera uploads",
+ "FsLrBD": "Suggest members",
+ "Fsd+XK": "Dropbox may use and disclose PHI only as permitted under HIPAA and as specified in the Agreement and this HIPAA BAA. Dropbox may also use and disclose PHI for the proper management and administration of Dropbox\u2019s business and to carry out the legal responsibilities of Dropbox, provided that any disclosure of PHI for these purposes may only occur if: (a) required by applicable law; or (b) Dropbox enters into a Business Associate Agreement with the person or entity to whom PHI will be disclosed.",
+ "FsmDQI": "I don\u2019t like suggestions.",
+ "Ft3ikL": "Create account and continue",
+ "Ft4lr4": "Code",
+ "FtUdJa": "Ready when you are",
+ "Ftc2rw": "View downloads",
+ "Ftg4vm": "Please correct the form errors and try again",
+ "FtiJRA": "Search result {index} of {result}: {aria_title} in {location}",
+ "Ftkrln": "Well done!{br}Dropbox installed",
+ "Fu5CC4": "Something went wrong. It should work later.",
+ "FuPzY9": "We sent a code to {email} and any devices you\u2019ve linked to this account. Enter the code to continue.",
+ "Fv/8LI": "{count, plural, one {Permission changed for {count,number} app.} other {Permissions changed for {count,number} apps.}}",
+ "Fv7AjG": "Enter your reason here...",
+ "FvQTeI": "You can now use your security key to complete two-step verification when you sign in to Dropbox.",
+ "FvXtZK": "{device_name} icon",
+ "Fvjb7e": "Your account will be merged into the {team_name} Dropbox account, where you\u2019ll have\na private area for your stuff. {team_name} admins will be able to manage your files and Paper docs.\n{team_name} hasn\u2019t enabled Smart Sync, so new files will be downloaded to your hard drive.\nYou\u2019ll sign in with {work_email}.",
+ "Fw9VX7": "Sent to {recipient_first} and {recipient_second}.",
+ "FwFrOA": "For households",
+ "FwIpLD": "Discard",
+ "FwY8UG": "Saturday",
+ "Fwdgfr": "Member left team and converted to individual account.",
+ "FwgOvv": "Failed to update task.",
+ "Fwo2By": "How happy are you with this file preview?",
+ "Fww5XR": "Ask for a new link",
+ "FwxW5d": "Drop in a link to automatically add a preview for dozens of media types such as YouTube videos, Pinterest boards and code snippets.",
+ "FxRqE+": "[Email]",
+ "FxTO0x": "Create CSV report",
+ "FxoGBv": "Group",
+ "FysXyj": "Loading folder history",
+ "FzPwz1": "Create report?",
+ "G+NHPz": "Join team",
+ "G+dVoc": "Submitter name",
+ "G+lPYi": "Edit policy",
+ "G+o88n": "*Long distance charges may apply.",
+ "G/+x4N": "{durationTimeInDays, plural, one {{durationTimeInDays} day from creation} other {{durationTimeInDays} days after creation}}",
+ "G/Kz4Q": "Size",
+ "G/OZRB": "Location:",
+ "G/hflv": "Clear files from lost or stolen devices to keep company data in the right hands.",
+ "G0BGYo": "Image loading",
+ "G0Bo7E": "Sent by you",
+ "G0eFMx": "This month",
+ "G0iSiW": "Send invitation request icon",
+ "G0kfHQ": "Have a look",
+ "G1c4c7": "Schedule a call",
+ "G1qknX": "Online-only files will no longer appear to take up hard drive space, but you won\u2019t be able to see their full size before you download them.",
+ "G22gqW": "Nothing happened this week",
+ "G2LAVo": "Transform your folders",
+ "G2PT1D": "Done",
+ "G2fJEY": "Your {app_name} Contacts are available when sharing files with Dropbox.",
+ "G2jO1n": "{count, plural, one {Couldn\u2019t copy {count} item.} other {Couldn\u2019t copy {count} items.}}",
+ "G2k2hl": "A person doing work on a laptop in a caf\u00e9.",
+ "G2xST/": "Signed in",
+ "G32RJ7": "Colour",
+ "G3CiMx": "Dropbox doesn\u2019t currently offer HIPAA support for Showcase.",
+ "G3L9yN": "Add partner admin",
+ "G3SC9+": "Or with an existing Dropbox account",
+ "G3gJf8": "Jane",
+ "G49pwM": "Yes. You can cancel at any time. This is a no-obligation free trial.",
+ "G4M3yK": "Signed out",
+ "G4MWO/": "Mark all as read",
+ "G4ktGR": "Confirm you want to cancel your change",
+ "G4o7Ay": "Password protection on files",
+ "G5Pred": "Slack integration",
+ "G5QRye": "Easily and securely send files to clients and vendors from within Adobe Photoshop.",
+ "G61RCe": "Prepare content to download",
+ "G62PXN": "Search groups",
+ "G6HUee": "We couldn\u2019t reach your phone number. Are you sure it\u2019s correct?",
+ "G6YtZx": "Permanently delete in the admin console",
+ "G6fMgg": "Select billing cycle",
+ "G6pT4u": "{name} added {single_item_name} in {folder_path}",
+ "G71pmj": "{count, plural, one {/user/month, starting at {count} user} other {/user/month, starting at {count} users}}",
+ "G76Bc1": "Make manager",
+ "G79Iwz": "Oops... something went wrong",
+ "G7jTKb": "{display_name} ({email})",
+ "G86tSi": "You can turn on Paper free of charge at any time.",
+ "G8MvaH": "Two men talking about how to find a trusted Dropbox partner.",
+ "G915sS": "Client",
+ "G9Qw5q": "Members won\u2019t be able to edit top-level folders, but admins will be able to edit them in the admin console. Access to anything inside the folders won\u2019t change.",
+ "G9Z0Ln": "illustration of person taking photo of family members",
+ "GAHqSI": "Showcase your brand with a custom logo and background",
+ "GAk+s1": "Build an app",
+ "GBT3WZ": "Restore member",
+ "GBUARD": "Select team folders to add",
+ "GBaqQN": "Dropbox desktop",
+ "GBrNRo": "You\u2019ll get an alert if a member moves an unusually large amount of content.",
+ "GBu2Ic": "{count, plural, one {Moved {count} item to {dest}.} other {Moved {count} items to {dest}.}}",
+ "GBuqK+": "{count, plural, one {You restored {count} item in {folder_path}} other {You restored {count} items in {folder_path}}}",
+ "GC3RYQ": "Request a secondary team merge into my team",
+ "GC4Lj2": "If you just need help managing settings such as billing and security, you can allow this team access to your admin console instead.",
+ "GCHvoP": "What to do if audio files or videos won\u2019t play on the Dropbox mobile app",
+ "GCzx3+": "Make support admin",
+ "GDSx6k": "{count, plural, one {Members of the containing shared folder with this link can view the file. Expires in {count} day.} other {Members of the containing shared folder with this link can view the file. Expires in {count} days.}}",
+ "GDUcy7": "Dark",
+ "GDikFY": "Choose folder",
+ "GER5ks": "DELETED BINDER",
+ "GESxnb": "A cartoon woman uses a laptop while she sits at a desk near a bulletin board filled with notes.",
+ "GEcDxp": "The Dropbox Migration Assistant only migrates content to the locations you choose, either a team folder or {trademark_business} account. Folder permissions are not migrated to {trademark_business}.",
+ "GF5n87": "Team folder created.",
+ "GFGDaG": "No password",
+ "GFJLg5": "All activity",
+ "GFhs9d": "Start free HelloSign trial",
+ "GFxvjq": "How Rewind works",
+ "GFzp3j": "All amounts shown are in {currency}.",
+ "GG80Oc": "Up to 5 users",
+ "GGfLFz": "This member might be out of space if you set a limit lower than their current\n usage.",
+ "GGj0mz": "HelloSign trial started.",
+ "GH5ghx": "Do any of these help with team and admin questions?",
+ "GHBzHK": "Link sent to {phone_number}",
+ "GHOvO/": "Default background added.",
+ "GHSqyI": "A team space for everyone to work in",
+ "GHUPHC": "Lock icon",
+ "GHgKTe": "Directory restrictions",
+ "GITIns": "Relax \u2013 all of your info is secure",
+ "GJ7/9v": "Dropbox Paper mobile is not included in device approvals. Members will still be able to use the Dropbox Paper mobile app on any number of mobile devices.",
+ "GJAB8B": "Suggest something",
+ "GJesZx": "1 of 3",
+ "GJuXgi": "And more!",
+ "GK+TXw": "We\u2019ll charge your card ending in {last4}.",
+ "GKBCGI": "Amount charged",
+ "GKgRRt": "can edit",
+ "GLQxt4": "Group names",
+ "GLtYJa": "Start chat",
+ "GM9O28": "Save",
+ "GMLScf": "Undo",
+ "GMRGcj": "{count, plural, one {Removed app from exceptions.} other {Removed {count,number} apps from exceptions.}}",
+ "GN5l5p": "Account settings & sign-in",
+ "GNNuwW": "Membership request removed.",
+ "GNjUSI": "Their team will become part of your team and use your licences",
+ "GNolQQ": "Follow",
+ "GO5jX5": "Step 3 of 3",
+ "GO7ZWv": "Now that you\u2019ve made room on your device list, you can continue to install Dropbox on your computer.",
+ "GO8hjQ": "Paper automatically formats your doc and even sends you a reminder when a due date\u2019s coming up. Plus you can convert any doc into a presentation with just one click.",
+ "GOcFCv": "For starters",
+ "GOgFbO": "I\u2019m running out of disk space, what should I do?",
+ "GOgkb+": "Here\u2019s what we suggest",
+ "GOrQGH": "Member",
+ "GOzuO6": "Requested on {request_date}",
+ "GPDghz": "recommended",
+ "GPgj53": "{count, plural, one {{count} group} other {{count} groups}}",
+ "GPhXnH": "Please enter surname",
+ "GPrFxQ": "Limited admin",
+ "GQ1gFJ": "We couldn\u2019t find any matches",
+ "GQB5zk": "Personal Dropbox space",
+ "GQS6/m": "Download Dropbox to get started",
+ "GQZPKR": "Discard changes?",
+ "GQhP3K": "If you\u2019ve got a deadline coming up or a task due, or if someone shares a doc or mentions you, Paper follows up. Like your own personal assistant.",
+ "GQixcT": "You need to agree to HelloSign\u2019s terms and conditions first.",
+ "GQqYaL": "Restore",
+ "GREGY1": "Work",
+ "GRT2xh": "If you want to use Vault again, sign up for {PLUS}.",
+ "GRyN3w": "Spreadsheets",
+ "GSJawD": "Storage",
+ "GSj5XF": "Android",
+ "GSjEU0": "{count, plural, one {{name} added {count} item in {folder_path}} other {{name} added {count} items in {folder_path}}}",
+ "GT9zYK": "Business Advanced",
+ "GTNg67": "File access removed.",
+ "GTwtgQ": "Inactive for more than",
+ "GU+cu2": "Upgrading will cancel all scheduled changes.",
+ "GU8La8": "Link sent to {email}",
+ "GUKJ0I": "Send reminder",
+ "GUSUqO": "Dropbox Paper helps teams bring their ideas to life in a single space. They can work together in real time on any type of content \u2013 from code and text to video, images and sound.",
+ "GVBhip": "After uploading the HTML file, it should be accessible at one of these links:",
+ "GVDaoy": "Policy",
+ "GVJm+/": "Everyone can rewind only their own folders and folders they can edit",
+ "GW4cXr": "View folder",
+ "GWKu4W": "Chris R. Vaccaro, Director, Live Operations & Editor-in-Chief, Mobile",
+ "GWZZEI": "Drag files and folders here to share them with your family",
+ "GWmSVK": "Upload error",
+ "GWtL57": "Restore account",
+ "GWzQpn": "Member removed from {current_folder}.",
+ "GXUwCl": "Only a team admin can work with a hold.",
+ "GY5th8": "Would you like to sync everything in your {label} Dropbox ({need_gigs} GB) to this computer?",
+ "GY9Uat": "Start your 14-day trial",
+ "GYDnJ7": "Members of the containing shared folder with this link can view the file. Downloads disabled.",
+ "GYFlxk": "Install Adobe Flash Player to preview this video.",
+ "GYPuMT": "Low",
+ "GYhJ5f": "Deleted content isn\u2019t sorted by last modified",
+ "GYj3Ib": "Text message",
+ "GZ7Mjc": "What can Dropbox help you do?",
+ "GZW/r9": "Select devices to sign out of",
+ "GZbfwA": "Add emails",
+ "Ga3Ee+": "Folders",
+ "GaL0QU": "Dropbox mobile app",
+ "GaUyyL": "Modified",
+ "GbIGMP": "Camera uploads",
+ "GbOWVs": "{count, plural, one {Anyone in your Dropbox team with the link and password can view this file. Expires in {count} day. Downloads disabled.} other {Anyone in your Dropbox team with the link and password can view this file. Expires in {count} days. Downloads disabled.}}",
+ "GbToMT": "To set up a BAA, first you need to turn off Showcase for your team. Learn about HIPAA",
+ "GbyPA7": "Enter password",
+ "Gc+HwO": "Capitalised terms used here, but not defined here, are defined in the Agreement or under HIPAA.",
+ "GcYOVe": "{count, plural, one {You unshared {count} item} other {You unshared {count} items}}",
+ "GcryKJ": "{trademark_business} {plan_name}",
+ "GctNeH": "animated image showing what a transfer looks like",
+ "Gd/02t": "Current password",
+ "GdR1oX": "PIN must be numbers only",
+ "Ge2zdm": "Setting updated.",
+ "Ge53zy": "Show fewer files",
+ "GeMENn": "You\u2019ve reached the limit for computers allowed by your company. Ask your admin for help.",
+ "GeMbUy": "Choose {trademark}",
+ "GeokGk": "On (team + approved)",
+ "Get3xu": "All the space you need",
+ "Gevpqz": "Connect more apps",
+ "GevpuM": "MasterCard",
+ "GfBT/H": "Failed to delete invitation link.",
+ "GfRRwj": "Nothing to export yet",
+ "GfwCtS": "Please update your search and try again",
+ "GgOoMO": "Host team",
+ "GhOTyb": "Undo unwanted edits with {dropbox} Rewind.",
+ "GhTqsZ": "View the file contents",
+ "Ghdn8K": "Removing you from {sharedFileName}\u2026",
+ "GhycE9": "Turn on Smart Sync update for Mac?",
+ "Gi+irE": "can\u2019t upload folders or empty files",
+ "Gimj2c": "Link password",
+ "Gir0fu": "Set up Dropbox password",
+ "Gj7aSc": "You and your family members will lose access to the plan\u2019s storage and features, and your accounts will be downgraded to {dropbox_basic}.",
+ "GjcSo6": "No billing information on file. Add billing information.",
+ "GkNuiP": "Any day",
+ "GkZAlh": "Yes",
+ "GkiAxR": "If you remove {collaboratorName}, they won\u2019t be able to see future changes to this shared folder.",
+ "GlCum8": "This could be a brute-force attack or a case of stolen credentials.",
+ "GlPgxg": "Upgrade to Professional for advanced features",
+ "GlyhO1": "Please enter your name",
+ "GmIF3z": "Cancel {dropbox_family}",
+ "GmYEt0": "PDFs",
+ "GmgQyg": "Sign in with a notification",
+ "GmhVIx": "Anyone in your Dropbox team with this link and the password can view the folder.",
+ "Gmhr/j": "Sorry, we can\u2019t load your tickets at the moment. Check your connection or try again",
+ "GmjvDa": "Out of space, visualisation",
+ "Gmn3D8": "View and join {app_name} Calendar meetings from the Dropbox desktop app.",
+ "GnRAIi": "You were removed from {item_name}",
+ "GnZgOE": "Team folders",
+ "GnwhBg": "Keep your organisation\u2019s content for the right amount of time using policies. More about managing policies",
+ "Gnx3as": "Find a partner",
+ "Go+sgr": "You are currently receiving the enhanced admin and security features of the Advanced plan. In an upcoming renewal, you\u2019ll be able to select the plan that\u2019s best for your team.",
+ "Go7X6c": "This won\u2019t disable computer backups for members who already use it, or new members who have it enabled when joining the team. Click the Activity tab to see a list of current users.",
+ "GoJlu1": "Name",
+ "GoMNKq": "Now that you\u2019ve upgraded, you can continue installing Dropbox on your computer.",
+ "GoSmfp": "Edit filters",
+ "GouPmU": "Show off your brand when you share",
+ "GozfFf": "{count, plural, one {Change permission} other {Change permissions}}",
+ "Gp382Q": "Automatically",
+ "Gp73Gl": "Contact your team admin to change your email",
+ "GpDu1w": "With powerful productivity features and {proSpaceLongFormRounded} of space, you can share your work, leave feedback and secure your most important files without ever leaving Dropbox.",
+ "GpJJcz": "Details",
+ "GpPK8+": "Invite a team to join your organisation",
+ "GpRPBp": "Who can access members\u2019 shared links?",
+ "Gpbcs7": "Set due date",
+ "Gpl8g/": "Most relevant",
+ "Gq1zrQ": "Changed your mind?",
+ "GqY805": "{count, plural, one {Delete {count} item permanently?} other {Delete {count} items permanently?}}",
+ "GqeH/g": "Preview",
+ "Gqy59m": "Easily send, securely sign and safely store your most important agreements in one seamless workflow, without leaving Dropbox.",
+ "GrOPDo": "Rename selected file",
+ "GrQ0WV": "Joining date",
+ "GrRQ6k": "Your old security settings will be retained, but you won\u2019t be able to edit or update those settings after your plan expires.",
+ "GrRuNU": "Remove",
+ "GrjtS2": "Audio",
+ "GrzEGn": "Can\u2019t merge with deleted members under legal hold",
+ "Gs7ExQ": "Add as much or as little information as you want.",
+ "GsGfjl": "You have a {discount_percentage,number,::percent} discount on your plan",
+ "GsYWrv": "Your account will be merged into the {team_name} Dropbox account, where you\u2019ll have\na private area for your stuff. {team_name} admins can manage your files and Paper docs if they\nupgrade the account to {trademark_business}. {team_name} has disabled Smart Sync,\nso you\u2019ll be signed out of Dropbox and online-only files will be downloaded to your hard drive\nnext time you sign in.",
+ "Gswd9y": "Tasks",
+ "GtD4wV": "Move",
+ "GtEgoD": "Tell a story they\u2019ll remember",
+ "GtIXiK": "Last activity: {lastActivity}",
+ "GtnN8Q": "Live support",
+ "GuFukq": "This info helps us create the best Dropbox experience for you",
+ "GuPz9+": "Share method",
+ "Gv/wFX": "Attach",
+ "Gv9sd0": "Restore {filename}?",
+ "GvVIof": "{count, plural, one {{count} file} other {{count} files}}",
+ "GvWda5": "Please enter a licence key.",
+ "GvhVZe": "From {date}, we\u2019ll charge you {scheduled_total} per year on your PayPal account.",
+ "GvyTYC": "Enter your user code here:",
+ "Gw/y1C": "+ {overflowCount} more",
+ "GwU19k": "\u2013",
+ "GwYES8": "So-so",
+ "GweSkC": "Updating your billing information will cancel your scheduled plan downgrade. If you still wish to downgrade, you will need to schedule it again.",
+ "GxGFZR": "Corrupt file. Couldn't save as PDF",
+ "GxUUi9": "You\u2019ll get everything in {trademark}, with more features to make your work shine",
+ "GxZHMk": "{proSpaceShortFormTB} of storage space and:",
+ "Gxo9oX": "By the Secretary.",
+ "GxuR0v": "Your {team_name} account is full",
+ "GyXbnS": "Other shared folder",
+ "Gz5ABt": "Can view",
+ "GzIlL6": "Device approval exceptions",
+ "GzWfVx": "Text formatting doesn't look right",
+ "GzWou6": "Recommended for you",
+ "Gzwfsl": "Neither satisfied nor dissatisfied",
+ "H+alQe": "I agree to the Dropbox Terms",
+ "H/EWDP": "Change fill colour",
+ "H/HStg": "1 - Low",
+ "H/swjG": "Uncalibrated",
+ "H039rr": "To accept, you\u2019ll need to create a Dropbox account if you don\u2019t have one \u2013 this is for security reasons.",
+ "H0LN98": "{inviteCount, plural, =0 {Invite people} one {Invite {inviteCount,number} person} other {Invite {inviteCount,number} people}}",
+ "H0eBAl": "You renamed {single_item_name_prev} to {single_item_name_next}",
+ "H0iUxc": "Adam Montgomery, Senior Manager of Programming{br}Sundance Film Festival",
+ "H0vBqO": "Dropbox is out of date. Please refresh your browser.",
+ "H1ElMK": "Remove",
+ "H1M5yT": "{dropbox_paper} is a co-authoring workspace for your entire team. Now you can create, collaborate and provide feedback in the same doc at the same time.",
+ "H1PVRE": "Save space automatically",
+ "H1lq+q": "Manage",
+ "H1oavy": "Complete",
+ "H1vHwe": "Direct debit",
+ "H1ycIc": "Delete {team_name} files from this computer next time it comes online.",
+ "H2GbM6": "Active",
+ "H2IlNh": "Delete",
+ "H2QPye": "Neutral",
+ "H2ofu+": "Your Dropbox {plan} plan will be renewed on {date}. Your current {schedule} total is {recurring_total}.",
+ "H2wQDg": "Leave your feedback on Microsoft Office, Photoshop and AutoCAD files directly in Dropbox, without having to jump between apps.",
+ "H34pPA": "Support language: {supportLanguage}",
+ "H3NEmP": "Show columns",
+ "H3lmrv": "Import contacts",
+ "H421mj": "Background image for header section of plans page",
+ "H4k98t": "Couldn\u2019t retrieve files shared with you. Reload the page to try again.",
+ "H59ICk": "Save change",
+ "H5wjQY": "Approved (unable to edit approved versions)",
+ "H67Ftf": "You\u2019ve been successfully verified. Please proceed with your ticket.",
+ "H684JI": "Assign to a team member",
+ "H68Sgw": "Zoom",
+ "H6l0cK": "{filename} was deleted successfully.",
+ "H6xaCT": "Work Dropbox name",
+ "H7COCY": "File editing apps",
+ "H7SBVz": "Dismissed",
+ "H7UzHi": "You're on the list!",
+ "H7nsto": "This will become a user-managed group, and the person you choose below will be responsible for approving new members. Group members can leave whenever they like.",
+ "H8C+fg": "Codec",
+ "H8M0bZ": "Export removed.",
+ "H8MI4r": "What we recommend",
+ "H8TlMC": "It looks as though this team has already denied your request.",
+ "H8kVwY": "Edit",
+ "H8sj9w": "Terms",
+ "H8wHlD": "User management admin",
+ "H8xyuK": "Try free for {pro_trial_days} days",
+ "H98NkM": "\u00b7",
+ "H9Hs3T": "Non-team member",
+ "H9WoJS": "Can\u2019t change folder yet. Try again when syncing is complete.",
+ "H9Zp4a": "Your {trademark_business} trial is almost over.",
+ "H9aEgq": "Member restored",
+ "H9bzwx": "Access to \u201c{folder_name}\u201d is restricted.",
+ "H9rBQy": "Link accounts to sync private channel names.",
+ "H9rZ+V": "Search Google contacts",
+ "H9uRFU": "Paper is more than a doc \u2013 it\u2019s a workspace that brings creation and coordination together in one place. Write and edit, brainstorm, review designs, manage tasks or run meetings.",
+ "HA1+Cm": "Why are you deleting Vault?",
+ "HAAh4y": "File locking",
+ "HACouR": "From {transition_date}, the {plan_change} new {schedule} total will be {recurring_price}.",
+ "HAcA8Z": "Error 500",
+ "HAlJa9": "More about domain verification",
+ "HB7g+f": "(must exceed 15 GB)",
+ "HBbLM7": "Your free trial ended on {trial_end_date}. To keep using {trademark_business}, add your billing info.",
+ "HBov4l": "Can\u2019t copy file to Paper",
+ "HC8obw": "Choose members",
+ "HCPIUK": "Next",
+ "HCULl2": "Leave \u201c{group_name}\u201d?",
+ "HCfuYu": "{billing} billing",
+ "HDHR0n": "Remove member",
+ "HDI+C1": "Add sign-out URL",
+ "HDLXAq": "Cannot connect to Canvas. Contact your IT admin for help.",
+ "HDZWlz": "Click Agree to:",
+ "HDhelG": "A user is prompted to use Dropbox Rewind to restore legacy files",
+ "HEAnKS": "Speed up deployment with advanced membership options.",
+ "HEEzOS": "Other",
+ "HEuMg1": "PIN protection",
+ "HFHj7f": "Continue with your {basic_trademark} plan",
+ "HFIwYG": "Deleted files",
+ "HGK/k8": "Done",
+ "HGnEOI": "Undo recent move/copy/rename/delete",
+ "HH1Zxq": "Hold name",
+ "HHFG/g": "Folder name",
+ "HHHqnX": "Members of {team_name} shared workspace",
+ "HHSh3Y": "Name / Host / Alias",
+ "HHw5B1": "Cancel",
+ "HI573A": "Collapse sidebar",
+ "HIIRnD": "Expiry",
+ "HJycq7": "You\u2019ll find more tips and tricks in the \"Get started with Dropbox\" guide.",
+ "HK/4rZ": "Dropbox brings everything \u2013 traditional files, cloud content and web shortcuts \u2013 together in one place.",
+ "HK0Txc": "Copy invitation link",
+ "HKKwpB": "Enter your mobile phone number",
+ "HKLnt7": "Try Professional free",
+ "HL27OJ": "Page {index}",
+ "HL53xA": "Very helpful",
+ "HL8I1g": "Loading...",
+ "HLCXYg": "Started sharing",
+ "HLFmts": "Verification email sent.",
+ "HLKO0X": "Create, edit and organise G Suite files in Dropbox. Google Docs, Sheets and Slides are managed directly in Dropbox so you have one place for all of your stuff.",
+ "HLRJwR": "Members",
+ "HLjGpv": "Rotate clockwise button",
+ "HLknNq": "From {date}, we\u2019ll bill you once a {new_period_noun} for your {plan} plan. Your new {new_period_adj} total will be {new_amount}.",
+ "HLmZdz": "Interpretation.",
+ "HMW7Ne": "Switch to your personal account",
+ "HMXhhr": "Easily clear files from lost or stolen devices",
+ "HN1A6V": "Unlock files",
+ "HN4DNT": "Device no longer counts towards the limits",
+ "HNC9Lh": "View and share your videos with clients and collaborators without comments or distractions.",
+ "HNESzN": "Leave time-coded feedback",
+ "HNQAmH": "Token copied to clipboard",
+ "HNYKWv": "Sep",
+ "HNYPaQ": "Use account transfer to maintain ownership of company data as employees leave the team",
+ "HNr4Tz": "I\u2019ve had a major personal or professional life change since my initial purchase",
+ "HONi9s": "We sent a security code to {phone_number}.\n Enter it below to verify your phone number",
+ "HONz4t": "Members",
+ "HOb8Zp": "The following characters are not allowed: angle brackets \\ / : ? * \" |",
+ "HOeBKT": "Team member",
+ "HOpKHM": "{billing_cycle} \u2022 10 TB of space",
+ "HP1brc": "{numRemainingLicenses, plural, one {You have {numRemainingLicenses} licence available.} other {You have {numRemainingLicenses} licences available.}}",
+ "HPL0VF": "There was a problem completing this request",
+ "HPQGXc": "Asked to join {teamName}. Watch for your invitation at {receiverEmail}",
+ "HQ+1ks": "Successfully signed up for Dropbox.",
+ "HQ5Qz9": "People you\u2019ve removed from this list will still have access to anything that\u2019s already shared.",
+ "HQHg/u": "Members:",
+ "HQLtn1": "Folder updates in progress. Please try again later. Learn more",
+ "HQbgSZ": "Professional",
+ "HQpjCB": "There was an error checking whether this sign-in was approved.",
+ "HQyDBL": "Colour",
+ "HRXOjw": "opt",
+ "HSEIk+": "Share photos, family documents and more ",
+ "HSOuro": "HELP ARTICLES",
+ "HSPEq6": "Email sent. Once your email has been verified, reload the page to edit the file.",
+ "HTNS2w": "Get more space so you can send file requests.",
+ "HTfFxv": "Save or drag files and folders directly into your Dropbox desktop folder",
+ "HTy4qW": "Resend code",
+ "HUdX3O": "Advanced sharing features let you share files securely with contractors and clients.",
+ "HUib64": "Check the location",
+ "HVFLyu": "Get a quick view of your next meeting",
+ "HVbcWT": "Not happy",
+ "HWIOHC": "Give your team account a name",
+ "HWM1AQ": "{target_user} is not a contact on Zoom",
+ "HWM6Uw": "This email address is already taken. Sign in or reset your password",
+ "HWzWGh": "You don\u2019t have any closed file requests",
+ "HX2xZg": "Everything in {trademark}",
+ "HXCRYd": "Please enter a valid email address.",
+ "HXUg2y": "Send feedback about {fileName}",
+ "HXV3TA": "Order",
+ "HXZRg5": "Members can create, edit and comment on docs.",
+ "HXu34b": "If you needed to change the date range, create a new hold. Once a hold is active, the dates can\u2019t be changed.",
+ "HZAH7x": "Restore {display_name}\u2019s account",
+ "HZLxBg": "Preparing content. We\u2019ll email you when it\u2019s ready.",
+ "HZQHwv": "Enter your password to continue.",
+ "HZjsks": "Your subscription is on an extension period.",
+ "Ha0eqI": "Share",
+ "Ha0jO6": "This is where you can review customer information and sign in to customer accounts.",
+ "HaTVO+": "Powerful admin tools",
+ "Hb4Su9": "{count, plural, one {Get {count} more day at no cost} other {Get {count} more days at no cost}}",
+ "Hb7XPb": "Currently a team admin",
+ "Hb8EW5": "A maximum of 10 files can be added to a reply",
+ "HbDkss": "To change who can access the link, delete this link and create a new one.",
+ "HbIa1K": "{count, plural, one {Delete {count} item permanently?} other {Delete {count} items permanently?}}",
+ "HcGRtD": "Confirm",
+ "HcGUcR": "{count, plural, one {You rolled back {count} item in {folder_path}} other {You rolled back {count} items in {folder_path}}}",
+ "HcIX4g": "Failed to load modal.",
+ "HcLjiD": "Watermarking is available on PDFs and images.",
+ "HcOP1H": "Breadcrumb target",
+ "HcWcP1": "Try {trademark_professional} for {professional_storage_tb}",
+ "HcrzX8": "Change sync default",
+ "HdXJYa": "ISP",
+ "HdZiKF": "{actor_name} unarchived the {card_name} card with this file attached",
+ "HdahfL": "How it works",
+ "HdhXP9": "{count, plural, one {Couldn\u2019t move {count} item to {folderName}. Shared folders can\u2019t be moved to other shared folders.} other {Couldn\u2019t move {count} items to {folderName}. Shared folders can\u2019t be moved to other shared folders.}}",
+ "HdzKjx": "Create and use Google files from within Dropbox to have all of your spreadsheets stored in one place.",
+ "He0jGy": "You\u2019ll create a new, personal Dropbox account for your existing files and Paper docs.\nThis will give you two accounts \u2013 your {work_email} account for {team_name} work and your\n{personal_email} personal account for your existing files.",
+ "HeEyzc": "Get help from our chatbot",
+ "HeO+aZ": "Access your content from as many devices as you need",
+ "HfKKgw": "Step {step}",
+ "HfawA2": "After this invitation, you\u2019ll have no remaining licences.",
+ "HfqlAa": "Show viewer info on files",
+ "Hg3ZgC": "File is too large to be uploaded.",
+ "HgtbP8": "Spaces is a beta product from Dropbox",
+ "Hgzy7O": "All content starts as online only",
+ "Hh48DQ": "Select or create group",
+ "HhF+sV": "{app_name} is connected",
+ "HhKKvd": "Done",
+ "HiCMAW": "Legally required",
+ "HiF7mU": "Cancel",
+ "HigOCc": "Authentication managed by admin",
+ "HjCRjv": "OSX package file",
+ "HjO8Si": "Join and continue",
+ "HjYlKs": "Go to preview",
+ "Hjoc2x": "\u2318 + x",
+ "Hjykd1": "Sign in",
+ "HlErkT": "For now, everyone in your team will have access to these folders. Don\u2019t worry, it\u2019s easy to manage who sees what.",
+ "HmSzCT": "Syncing and uploads",
+ "HmX4I+": "View as",
+ "HnQxWy": "Uploads will be disabled 30 days after the deadline.",
+ "HnlRF6": "Please provide a rating",
+ "Ho1wvS": "Add a professional touch to shared files with custom elements, such as your logo and the name of your brand. Try it now by upgrading to Dropbox Professional.",
+ "HoIciT": "Get help using Dropbox for Salesforce Marketing Cloud. Or sign out of Dropbox.",
+ "HoOysE": "This opens the Dropbox desktop app by default (instead of Windows Explorer or macOS Finder) for all members. Members can override this setting individually.",
+ "HoaWzb": "Store and back up",
+ "HogqPZ": "Accept",
+ "HoreJj": "Preview on Dropbox",
+ "HoteAV": "Document crucial information and specific actions to take in the event of an emergency to protect your team, property and processes.",
+ "HpU0zC": "It\u2019s been over 15 minutes since you tried to sign in to Dropbox. If you still want to sign in, please go back to your browser and try again.",
+ "Hpq9jD": "File settings updated.",
+ "Hq9ZDW": "Reminder sent.",
+ "HqEpaM": "Remove user",
+ "HqqxDf": "Team and shared",
+ "HrYfiy": "Save attachments to Dropbox",
+ "Hrl6yI": "Members can\u2019t sign in with SSO",
+ "HrsBkO": "Assign a task",
+ "HsAedA": "Changes to selected files using {app_name} will be saved back to Dropbox. This app will have access to the username, email address and country for your account.",
+ "HsNFKS": "Please upload files under {size}",
+ "HsXino": "Remove imported contacts?",
+ "Hsu6/c": "Change sync default for {number_of_folders} folders",
+ "Ht+u+u": "New file default setting",
+ "HtRCek": "App permissions",
+ "HtoHur": "Downgrading to Basic?",
+ "HtojdY": "Administrator",
+ "HuBLn4": "Security and privacy",
+ "HuMd4z": "Let members route content through other emails",
+ "HuNwyG": "VAT ID: {id}",
+ "HuQz7C": "Store signed completed documents in your Dropbox account.",
+ "HuZ5CC": "Back",
+ "Huz4GZ": "Optional: turn off scanning",
+ "Hv/B/8": "Aperture",
+ "Hw0CHA": "New campaign",
+ "HwNzSA": "
Showcases and folders do similar things \u2013 they are ways of packaging (or \u201cbundling\u201d) files in your Dropbox account. You can then share this package with others.
There are three main differences between showcases and folders:
A folder is simply a list of the files within it, whereas a showcase allows you to curate the files on a branded page with visual previews, custom layouts and file captions
You can track activity on a showcase but not on a folder
A file can only exist in a single folder, whereas a file can be included in multiple showcases
There\u2019s also one important similarity: if you edit the files in a showcase or shared folder, recipients will always see the latest version of the file.
",
+ "HwUfO2": "The domain portion of the email address (the portion after the @: {domain}) is invalid.",
+ "HwbdrG": "Anyone in the {trademark_business} team with this link can view the file. Downloads disabled.",
+ "HxBVSR": "Restore access",
+ "HxJdqb": "Contact your channel partner",
+ "HxTR1s": "{count, plural, one {{count} image} other {{count} images}}",
+ "HxsND3": "An error occurred. Please contact your family manager for help.",
+ "HyLTmY": "We\u2019ll send an email to {email}. {link}.",
+ "HyWjj5": "Your security codes will be sent by text message",
+ "HzJQla": "How should we send the download link to your mobile device?",
+ "HzLiwF": "Document sidebar",
+ "Hzf41j": "1. Choose your plan",
+ "Hzl5eH": "This file request was closed while you were uploading. Contact {name} to re-enable the request.",
+ "HzvYM+": "View tickets",
+ "I+93e/": "We\u2019re always adding apps to App Centre.",
+ "I+AUF/": "Emergency and continuity plan",
+ "I+q7BE": "Switch to {tm_professional} trial",
+ "I+vIeJ": "Select all",
+ "I+y+FC": "File requests",
+ "I/3pPF": "Enough room for all of your photos, work presentations or whatever you need to store",
+ "I/B7j3": "You\u2019re upgrading to {trademark_business} {plan}. We\u2019ll charge you {prorated_price} now, which is pro rata for the current billing period. Your plan will be renewed on {date}. Your new {schedule} total will be {scheduled_total}.{upgrade_warning}",
+ "I/IF83": "To",
+ "I/JP41": "Retention period",
+ "I/QUfU": "Send files up to 2 GB with Dropbox Transfer",
+ "I/W9YH": "Shared folders owned by {team_name} will be moved automatically into that account.\n If you have a lot of shared folders, this could take a few hours.",
+ "I/ePp9": "Added the shared folder {folder_name}.",
+ "I/mK/6": "Tick the box if a task is complete. Otherwise assign a time today, this week or later to work on each task.",
+ "I0SkG7": "Couldn\u2018t find an answer in the Help Centre or community?",
+ "I1C9EB": "Go to Content Builder",
+ "I1MLmP": "Active member",
+ "I1RVgD": "User isn\u2019t eligible to join this team.",
+ "I1bz2Z": "Share {storage} of encrypted storage",
+ "I20Bop": "{count, plural, one {{count,number} file added} other {{count,number} files added}}",
+ "I2Qd6g": "You\u2019re ready to go!",
+ "I2Va9e": "Smart Sync gives you access to all Dropbox files on your computer without\n filling up your hard drive.To save hard drive space, right click on a file or\n folder, go to Smart Sync and choose Online only.",
+ "I2bHz3": "No more scattered files and endless email threads with clients. Capture project information, share deliverables and collect targeted feedback in one shared doc.",
+ "I2t6Ty": "Please enter a valid VAT number (e.g. {examples})",
+ "I3/Dwd": "1. Download the template",
+ "I3/v6g": "Secure your files \u2013 add passwords, set expiry dates and get download notifications",
+ "I3aRtX": "My campaigns",
+ "I3gWqn": "Do you want to send a reminder to {email} to accept your trusted contact invitation?",
+ "I3lqrq": "{current_plan_name} is for teams of 3 or more. If it\u2019s just you, try {professional_plan_name}. Then you won't pay for features you don\u2019t need.",
+ "I3zHF3": "Edit product",
+ "I4Xvx8": "Calendar and Contacts",
+ "I5e5o2": "{photo_count_description} and {video_count_description}",
+ "I5l08t": "A new folder will be created",
+ "I5lVCX": "This file can\u2019t be previewed. Previews are only available for files created in Sketch v.43 and later.",
+ "I5nk31": "These files have already been purged.",
+ "I5xM/O": "If you still want to cancel, please acknowledge the following:",
+ "I61oHi": "Billing",
+ "I6hPTR": "Get the Passwords app and start your 14-day trial",
+ "I6sc1F": "Make meetings worthwhile",
+ "I75joF": "Get started by freeing up space on your hard drive with Smart Sync",
+ "I7KA8j": "{count, plural, one {byte} other {bytes}}",
+ "I7Mm5h": "You\u2019re not being charged at the moment. Free trial will end on {date}",
+ "I7RuWD": "Unable to copy the link code. Please copy it manually",
+ "I7g4FQ": "Please enter an email address",
+ "I8F8pG": "This makes it easy to get back into your account if you ever forget your password.",
+ "I8qrCL": "Add files with a tap. Back up photos with automatic camera uploads",
+ "I9+jET": "Welcome!",
+ "I9B1GR": "Upgrade to get password protection, up to {premium_file_size_limit} transfers and expired transfer history.",
+ "I9CJF0": "See other plans",
+ "I9CTpA": "Are you sure you want to change plans?",
+ "I9Oejj": "Someone drags a file into Vault, enters a PIN to unlock it and sends an invitation to a trusted contact.",
+ "I9PBpI": "Jira",
+ "I9a0X1": "Classification type",
+ "I9eb8i": "search dropdown",
+ "IA7/9q": "Dropbox Migration Assistant",
+ "IA9q8v": "Your start date is after your end date.",
+ "IAY62Q": "Enable",
+ "IArsgq": "Access to Records.",
+ "IAtXOQ": "Invited",
+ "IB+IaQ": "Get visibility of your team\u2019s content, permissions and activity, so you can stay compliant and keep your company data secure.",
+ "IBCGt3": "Credit card. We accept {payment_methods}",
+ "IBl3g2": "App permissions",
+ "IBxTrC": "Dropbox account recovery",
+ "ICOWX5": "Protect files in a vault, with help from Dropbox",
+ "ID6eR4": "Cancel plan",
+ "IDWwQ/": "Yes! Please contact our sales team for more information.",
+ "IDb8MA": "Fewest times shared",
+ "IE4EnV": "Request a refund of your Dropbox Business subscription",
+ "IEMSw4": "Hold activated. Copying everything might take a while depending on the number of files.",
+ "IF7btL": "additional beta terms",
+ "IFRfsY": "Deleted by",
+ "IFVQvb": "OK. We\u2019ll let {displayName} know.",
+ "IFcepc": "No team members found. Contact your admin to add them.",
+ "IFv9MX": "Choose Smart Sync settings and enable Team Selective Sync",
+ "IG+GRI": "Let members seamlessly perform actions, such as PDF edits, signature requests and image adjustments, directly from Dropbox. Turning them off will hide them from your team.",
+ "IGdWDd": "Drag files here or choose folders",
+ "IGlwYu": "{count, plural, one {{count} file} other {{count} files}}",
+ "IGvssg": "Dropbox has sent a verification email to {email}. Check your inbox and click on the link in the email to finish updating your personal email. If you can't find it, check your spam folder or click the button to resend the email.",
+ "IGxfH9": "Members can invite people to the team",
+ "IHG5qz": "If you want to continue using it, why not add your billing information now and get it out of the way? It won\u2019t interrupt your free trial period, and you\u2019ll transition seamlessly at the end of the {trial_days} days.",
+ "IHLlRL": "Dropbox folder icons on a smartphone screen and a desktop screen to indicate Dropbox multi-device.",
+ "IHMN7c": "{value, plural, one {for {value,number} month} other {for {value,number} months}}",
+ "IHNq3h": "Smart Sync gives you access to all of your Dropbox files on your computer without filling up your hard drive.",
+ "IHOk/2": "Work account",
+ "IHhZ2t": "Block by default",
+ "II8D5D": "Management at the team level",
+ "IIKqY1": "You can\u2019t create a {dropbox_trademark} account using your company email address because one already exists. {trial_text} Please use a different email address above, or you can create an account to join the existing team.",
+ "IIbiVO": "Calendar and Contacts",
+ "IJn92r": "Simplify team administration",
+ "IK0bTU": "From {date}, we\u2019ll charge you {scheduled_total} per year on your card ending {last4}.",
+ "IKXfnc": "Retry",
+ "IKmkgl": "This list is limited to the last 10 active devices, so select 'Other' if your device is not shown.",
+ "ILPjiY": "Your accounts will stay separate, but you can easily switch between them and access both from any device.",
+ "ILQdl7": "Schedule a date and time",
+ "ILSqGs": "Want to see the latest version and edit?",
+ "ILTzDF": "{count, plural, one {{count} second} other {{count} seconds}}",
+ "ILfrx5": "A screen capture that shows all of your files and folders stored on Dropbox",
+ "ILzLh9": "Use existing PayPal account",
+ "INhk+Y": "How the system extension works",
+ "IO/mPH": "Invite more at {per_user}/user/month",
+ "IO2pKS": "Updating folders\u2026",
+ "IO4lT1": "{count, plural, one {Uploading {count} file} other {Uploading {count} files}}",
+ "IOiBbS": "Remove export",
+ "IOoQqM": "Unmanaged users who joined your team.",
+ "IOqYO1": "I've created the {record_type} record",
+ "IP8VLq": "If you\u2019re sure you want to download this file:",
+ "IPf/4X": "Sent to {recipient}.",
+ "IR9oLA": "You don\u2019t have permission to modify admin accounts",
+ "IR9yj4": "Off",
+ "IREq7n": "Developer & API",
+ "IRFEz7": "Please enter a valid expiry date.",
+ "IRPFmS": "You have {open} and {closed}",
+ "IRxSl1": "Sync & upload",
+ "IRyrtr": "Unshare file",
+ "IS3gY2": "See EVH details",
+ "IS7g2s": "Date of charge",
+ "ITG2x1": "You deleted {single_item_name} in {folder_path}",
+ "ITkBiv": "Bring all of your team\u2019s ideas and visuals together. Collect inspiration from apps such as Pinterest and YouTube, exchange ideas in real time, and get feedback.",
+ "ITkgMJ": "{name} shared {single_item_name}",
+ "IUBT/B": "{item_name} + {item_count}",
+ "IUj/kj": "Add admin permissions for {display_name}",
+ "IUsgJf": "Show",
+ "IVDDd0": "Teams with access",
+ "IVE86g": "Remove",
+ "IVdsoO": "Adding to your personal Dropbox...",
+ "IW4j/O": "Add members",
+ "IXOQ0a": "Includes Dropbox Pro and unlimited eSignatures with HelloSign Essentials.",
+ "IXvy9x": "Team folder",
+ "IYEBFs": "Only you can view",
+ "IYLgtU": "You\u2019re upgrading your plan to Dropbox {plan}. We\u2019ll charge you {prorated_price} now, which is pro rata for the current billing period. Starting on {date} and until you cancel, we\u2019ll bill you once a {schedule_noun}, and your new {schedule} total will be {scheduled_total}. If you cancel, previous charges won\u2019t be refunded unless it\u2019s legally required.",
+ "IYiHJp": "Team",
+ "IYl/O7": "Your team will be missing out on {space} of space, and you and your team members have each returned to your initial space quotas.",
+ "IYq3mi": "Internet Explorer 11",
+ "IZG77T": "1. Enable Dropbox within Canvas",
+ "IZc5xp": "For teams that need more security. Members will be required to create very complex passwords that might be more difficult to remember.",
+ "IZk7A9": "Purple",
+ "IZuGOl": "Allow",
+ "IZzyYw": "Shared with",
+ "Ia9tjc": "This folder is automatically shared with all members of {team_name}",
+ "IaA3O0": "You\u2019re about to sign in to the Dropbox desktop app with your {provider} account. Would you like to continue?",
+ "Iabjpp": "The Dropbox system extension allows features like Smart Sync to work.",
+ "Iaf9Ew": "Lets people download files from a showcase. Members can override this on showcases they create.",
+ "IbkyyT": "Get started",
+ "Ibl1ha": "Sign-in URL: {url}",
+ "Ic3QpQ": "Only the owner can move some of these folders to the {team_name} team space.",
+ "Ic4cWj": "Find receipt",
+ "IcXDEr": "{count, plural, one {{count} team folder selected} other {{count} team folders selected}}",
+ "Iccom6": "Your team no longer has full use of {trademark_business} features. To keep using {trademark_business}, contact your admin.",
+ "IdEbpd": "Error loading",
+ "IdZVvZ": "You can find your tenant ID in the Azure AD portal.",
+ "IeSMG5": "Basic ({basic_storage_gb})",
+ "IeZRcz": "Start a new doc in a channel and invite your team to add ideas.",
+ "Ieka0c": "Label type",
+ "IeqqoW": "Verify your account",
+ "Ieup/u": "Delete\u2026",
+ "IfIQnx": "Check out your team\u2019s files, and add your own projects.",
+ "IfPLvO": "Permanently deleted files",
+ "IfhxcJ": "Full management of the enterprise console and all teams",
+ "IfqARb": "Sharing is a premium experience with Showcase. Share files beautifully with your own branding, and track engagement with analytics for each file.",
+ "IgTsLe": "Cancel any time",
+ "Igglgy": "Still can\u2019t find what you\u2019re looking for?",
+ "IhNGMT": "Can I upgrade my existing {trademark_basic} or {trademark_plus} account? How does migration work?",
+ "Ihl6eV": "{numRemainingLicenses, plural, one {After this invitation, you\u2019ll have {numRemainingLicenses} licence remaining.} other {After this invitation, you\u2019ll have {numRemainingLicenses} licences remaining.}}",
+ "IidDKh": "When someone leaves a comment, you\u2019ll be notified \u2013 even if they forget to tag you. Messy email threads full of follow-up questions are a thing of the past.",
+ "IiiYVJ": "Labels",
+ "IjD7ox": "{name} ({email}) {br} invited you to edit this folder",
+ "IjYLVs": "Dropbox uses 256-bit AES for files at rest and SSL/TLS for data in transit, so your files are protected.",
+ "IjevGW": "Add groups to this team folder.",
+ "IkRpej": "Make enabling two-step verification optional for some members \u2013 even when it\u2019s required for the team.",
+ "IkpObN": "device removal failed",
+ "Il5prr": "Invoice details updated.",
+ "IlC3VH": "It\u2019s easy to create the team from your Dropbox trial again.",
+ "IlY8Vt": "Sharing permission",
+ "Ilgu81": "Sign in as user",
+ "ImAPkp": "Your changes will be applied to this folder and any folders inside it.",
+ "ImH82y": "Invitation enforcement",
+ "ImXGVq": "Add a backup phone number for security codes.",
+ "Imh9y6": "Yes. You can link to videos, music and many other types of file. And Paper supports previewing of all file types that you can preview in Dropbox, as well as many others. Find out more about how Paper works with YouTube videos, GIFs, Pinterest boards, Google Maps, SoundCloud clips and more.",
+ "Imk9XS": "Do you also need this on your computer?",
+ "ImyZr+": "Sent by",
+ "InJtLb": "Our Help Centre has you covered. Check out our {trademark_business} guide, too.",
+ "InjGFP": "Don't worry, {sharedFolderName} won't be deleted for anyone else. You can add it back to your account later if you want.",
+ "IoJAyh": "Extract to my Dropbox",
+ "IoL4sF": "deleted file",
+ "IoOBAj": "For files in team folders, restore from the content page.",
+ "IoV9+u": "All members will be required to install the Dropbox EMM app to access company files",
+ "IoYdTy": "Done. Access to the customer console and the partner portal is removed.",
+ "Ip712y": "(iOS)",
+ "IpS5u7": "Text my backup phone",
+ "Iq7/TN": "Remove from Dropbox",
+ "IqMdhu": "Drafts",
+ "IqV88I": "Upgrade",
+ "IqXJ96": "{durationTimeInYears, plural, one {{durationTimeInYears} year from creation} other {{durationTimeInYears} years after creation}}",
+ "Iqgiqi": "Features",
+ "IqlNq5": "An error occurred. Please refresh the page to try again.",
+ "Ir37mw": "About trusted contacts",
+ "IrhSVL": "XLSX, XLS, CSV and more",
+ "Irqpnj": "You're inviting {email} to {team} Dropbox and adding them to your plan.",
+ "IsJ4O/": "Invite with a link",
+ "ItRAik": "Yes, it\u2019s easy to make your files available, even for when you\u2019re offline! Simply right click on the file and choose Local from the Smart Sync menu. The full contents of the file will be synced to your computer\u2019s hard drive so you can work offline.",
+ "ItUH8r": "Paper",
+ "ItiG5w": "Remove {domain_name}",
+ "Itjym0": "Folder activity",
+ "Itku5N": "Dropbox community",
+ "ItwtZa": "Zip download failed.",
+ "IuNfus": "Your exported docs are ready",
+ "IuT4QP": "Manage folder permissions by group",
+ "Iuhu1I": "Cancel this invitation?",
+ "IuuTKL": "Create new hold",
+ "IvXUFf": "Licences used",
+ "IvzfWf": "Cancelling your Dropbox {trademark_plus} trial in the {billing_store} will not affect your {trademark_business} account.",
+ "IwIg3D": "The system extension is disabled for your team. Install the extension to allow features such as Smart Sync to work.",
+ "IwqHAa": "{count, plural, one {
and {count} more...
} other {
and {count} more...
}}",
+ "Ix5WTb": "Completed",
+ "IxHAnI": "Loading account details...",
+ "IxY+nX": "Watch again",
+ "IyXKYR": "Invoice details",
+ "IyiEVq": "Confirm purchase",
+ "Iymyiq": "Remove file link from message",
+ "Iyox7e": "Accounts & billing",
+ "IypK6Y": "Connect to Zoom App",
+ "IypUu0": "Or share directly",
+ "Iyx6hS": "{count, plural, one {Members of the file with this link and password can edit. Expires in {count} day.} other {Members of the file with this link and password can edit. Expires in {count} days.}}",
+ "IzGklK": "Can\u2019t open {folder_name}. Ask your admin for access.",
+ "Izdq5R": "Nicole D\u2019Antuono, VP of Employee Applications",
+ "IzlaFV": "Next: Share",
+ "IzrCX2": "Windows PC",
+ "Izv6d0": "Email sent to {email}! Please check your inbox.",
+ "J+0ZxM": "Could not complete connection \u2013 please try again later",
+ "J+IPZ5": "This member will have to change their password next time they sign in to Dropbox or link a new device.",
+ "J+cK0b": "Extract to {cdm_tmf_name} folder",
+ "J+eg6A": "Enterprise Mobility Management (EMM)",
+ "J+rPtr": "You can\u2019t edit or create file requests whilst you\u2019re over quota",
+ "J/0Ckc": "Now that you have Dropbox, get to know what it has to offer.",
+ "J/2gSB": "Page list",
+ "J/4DT7": "{count, plural, one {Can only send {count} invitation. Ask a team admin to add licences.} other {Can only send {count} invitations. Ask a team admin to add licences.}}",
+ "J/afHO": "Security & privacy",
+ "J/miRj": "Attach Dropbox files and folders to your emails.",
+ "J/uM6N": "for example, \u2018yellow USB key\u2019",
+ "J/vDSM": "Custom admin",
+ "J0LNeg": "We were unable to unlink the host. Please try again.",
+ "J0O4ka": "Try uploading the file again at ",
+ "J0fQfy": "\u201c{old_name}\u201d will become \u201c{new_name}\u201d. Your shortcuts and favourites should continue to work.",
+ "J0oyWv": "{price}/year{line_break}({tax_string})",
+ "J1LB29": "Team Selective Sync",
+ "J1Pw0k": "Connect your Canvas to Dropbox",
+ "J1aoBw": "Invitation only. Members of parent folders can\u2019t access.",
+ "J1cTH1": "To [{confirm_text}], first type \u201cPROD\u201d:",
+ "J2McI1": "Create an email address",
+ "J2kFzi": "On {date}, your plan will change to {trademark_business} {plan}. Your new {schedule} total will be {scheduled_total}.",
+ "J2nHW4": "Your legal holds subscription has ended. Download any held files before {end_date}. After that, all of your holds will be released, and you won\u2019t be able to access legal holds pages.",
+ "J2oXAz": "Security check",
+ "J3G7RO": "Make company managed",
+ "J3TQGR": "You protected your shared links with {links_with_expiration_date} and {links_with_password}",
+ "J3Wsth": "Email me when",
+ "J3Za6o": "{trademark} is free. Here\u2019s what you\u2019ll get:",
+ "J3qpA5": "Discard",
+ "J48vHl": "Firefox",
+ "J4Iou5": "Preview feedback survey",
+ "J4SgeL": "Transfer expired on {date_string,date,::yyyyMMdd}",
+ "J4nSFt": "You\u2019re about to unlink {member_name}\u2019s {device_model}. It will immediately stop syncing all sessions with their {team_name} Dropbox on this device.",
+ "J50R5r": "If you use more licences than you\u2019ve purchased, you\u2019ll be charged for the extras in your next billing cycle",
+ "J54snd": "Create new group",
+ "J5BuTc": "Files deleted",
+ "J5IeA4": "You purchased Dropbox {dropbox_plan} via the iOS app.",
+ "J5Qx8E": "MM/DD/YYYY",
+ "J5cx5Z": "Email sent successfully",
+ "J5qhzs": "Highest activity",
+ "J5xMEt": "Can I change my payment method later?",
+ "J6Utpo": "You rolled back {single_item_name} in {folder_path}",
+ "J6WPR4": "{count, plural, one {{count} licence} other {{count} licences}}",
+ "J6pSA8": "Pending email re-verification",
+ "J74SUV": "Upgrade to Advanced",
+ "J7DwR2": "Private group",
+ "J7IViB": "Standard, billed yearly",
+ "J7Q2k7": "Auto-PDF",
+ "J7UPY9": "Flip left",
+ "J7yt8I": "Upload details",
+ "J8/Ieo": "For teams",
+ "J85EWX": "All amounts shown are in {currency}.",
+ "J8TGXi": "You\u2019ve earned {bonus_space}!",
+ "J8bjH6": "Permanently deleted 1 item.",
+ "J8vXtB": "Pick the dates to include",
+ "J8zY2i": "On",
+ "J917V9": "{name} and {other_member_count} more",
+ "J98s/Q": "This account is an admin of the {team_name} Dropbox account.",
+ "J9ZdWw": "New shared folder",
+ "JAGh41": "People we think you work with have joined this team",
+ "JAKb9k": "Select a billing question",
+ "JAnIkC": "{count, plural, one {{count,number} account was already deleted, but you can still restore it: {emails}} other {{count,number} accounts were already deleted, but you can still restore them: {emails}}}",
+ "JB5J60": "With as much space as you need and team folders, your team can keep work projects in one place so you\u2019re always on the same page.",
+ "JBINyn": "Close",
+ "JBa1RC": "Cancel",
+ "JBic/M": "You\u2019ll be working with your team in no time. Now is a great time to move on to the next step.",
+ "JBylJC": "People within the company",
+ "JC1QAn": "By continuing, you agree to the",
+ "JC1XBf": "{maxRewindDays, plural, one {File recovery and version history ({maxRewindDays,number} day)} other {File recovery and version history ({maxRewindDays,number} days)}}",
+ "JCm3w7": "Choose a file",
+ "JD67qu": "Delete team?",
+ "JD6thv": "Ctrl + a",
+ "JDP9ok": "{team_group_name} can view",
+ "JDRaFD": "Today",
+ "JDZHJs": "Organise your workspace",
+ "JDlenX": "It\u2019s inappropriate.",
+ "JEBE2H": "1000-2499",
+ "JECTrw": "{count, plural, one {Send to {count} person?} other {Send to {count} people?}}",
+ "JEE1p9": "{width} x {height}",
+ "JERs0V": "Not currently owned",
+ "JEcbSN": "Video details",
+ "JEhA0m": "Ticket",
+ "JEkrtt": "{city}, {region}",
+ "JFibpn": "Unsubscribe",
+ "JFlgO7": "Content:",
+ "JHfvFk": "Notification.",
+ "JHqw26": "Bottom right",
+ "JI9VaJ": "Try these templates",
+ "JI9e/h": "Let them keep access to shared folders",
+ "JIHRo/": "Try checking your Internet connection",
+ "JILc60": "Your user code does not appear to be valid. Please confirm you have entered it correctly",
+ "JItU3G": "Request sent!",
+ "JJEiEL": "Next",
+ "JJdAvv": "Need different features",
+ "JK63j9": "Anyone with edit access can change these settings.",
+ "JKAvx2": "Choose a course",
+ "JKEEZK": "This message cannot be edited. {dropboxBrandDisplayName} costs {advertisedMonthlyPriceText}",
+ "JKI7es": "{count, plural, one {Invite {count} friend} other {Invite {count} friends}}",
+ "JKi2K/": "Find by name",
+ "JKxwQ7": "Cancel your trial",
+ "JL4EVD": "We couldn\u2019t reach your phone number. If this has happened before, click here.",
+ "JLLSeH": "Jot down ideas and coordinate projects in a new type of doc",
+ "JLWIvQ": "{count, plural, one {The {count} member other than you will be signed out of dropbox.com immediately and prompted to reset their password.} other {All {count} members except you will be signed out of dropbox.com immediately and prompted to reset their passwords.}}",
+ "JLWJ78": "Work remotely",
+ "JLWT/P": "Discover what\u2019s possible with apps on Dropbox",
+ "JM0/fV": "Paid business team required",
+ "JMLUbg": "Which domain would you like to add?",
+ "JMYbVk": "{index}. About you",
+ "JNMhbv": "For your security, Dropbox requires you to set a password to change your email address.",
+ "JNPl6M": "Account converted and 1 licence freed up",
+ "JO6LVK": "Shared by",
+ "JO8jkB": "Download Dropbox",
+ "JOloNw": "Dropbox needs to verify your email address {email} before you can register an API app. It\u2019s as simple as clicking the link in the verification email we send you.",
+ "JOp+zI": "Cannot select files from other account",
+ "JP4mOr": "Cartoon character embarrassed",
+ "JPFKUw": "Export {num_of_docs} docs",
+ "JPO0/I": "Try again",
+ "JPP1Le": "Report a problem",
+ "JPS3CZ": "I am cancelling because...",
+ "JPk+XA": "{count, plural, one {{count} member ({outside_team_string})} other {{count} members ({outside_team_string})}}",
+ "JPqK3V": "I agree to the Dropbox Terms",
+ "JPwjIB": "{value, plural, one {{value,number} byte} other {{value,number} bytes}}",
+ "JQTSO1": "You won\u2019t see future changes or have access to the content that you or others added.",
+ "JR4Wmb": "Remove",
+ "JRBRTW": "Step 2 of 2",
+ "JRFAZv": "help centre article about verifying your email address",
+ "JRcNRO": "Submitting",
+ "JRu22W": "{successful_count,number} of {total_count,number} moved to {target_team_name}",
+ "JS1K3G": "All of your alerts may already be acknowledged.",
+ "JS4aqp": "Uploaded {filename}",
+ "JSEHIF": "Store all of your work without worry",
+ "JSRS/f": "By industry",
+ "JSd+J1": "This folder is over its limit of {member_limit} members.",
+ "JTdDYP": "Request sent. Watch out for your invitation sent to {user_email}",
+ "JUKJQ/": "Learn about Dropbox folder types and discover best practices to keep your work organised with {trademark_business}.",
+ "JUNMrM": "Start your transfer",
+ "JUyfiA": "Two-step verification updated. Any existing sessions, devices and apps can still access your Dropbox.",
+ "JV1nME": "Hidden forever for you, but not deleted for anyone else.",
+ "JV9VMc": "Centralised billing",
+ "JVBVGT": "Do more with {trademark_businesss}",
+ "JVNKR4": "Do this week",
+ "JVgEKY": "upload to your Dropbox",
+ "JWEgC6": "{name} ({email}) {br} invited you to view this folder",
+ "JWIyED": "Most active days this week",
+ "JWQ334": "Members of {team_name}",
+ "JWcJZ7": "Anyone with the link",
+ "JX6DwB": "Restore this file to manage access",
+ "JXmFrv": "You need at least {min_num_users} {trademark_business} licences to support your entire team.",
+ "JXoSfW": "Link copied. Remember you\u2019ll need 1 licence for each member.",
+ "JY5LSc": "Show parent folders (descending)",
+ "JYBk8P": "Name",
+ "JYHRrI": "Releasing legal hold\u2026",
+ "JYfki4": "Issuer",
+ "JYmsWD": "Please enter at least one valid name or email address",
+ "JZEdSO": "Show more",
+ "JZlohh": "Add square",
+ "JZluRI": "Status",
+ "Ja6XYU": "Change or remove their access in link settings",
+ "Jap7oN": "This file is too big to preview",
+ "Jatj1V": "Your paid plan will end on {date}. You won\u2019t be charged again.",
+ "JbVexv": "Sent to {recipient}.",
+ "JbWl/w": "Enterprise admins can send invitations to newcomers or remove members who leave your organisation.",
+ "Jbjd+1": "Tell me more",
+ "JbmwKV": "Link calendar",
+ "Jc21ig": "Brand name and logo",
+ "JcQRa2": "Presentations",
+ "JcXWlj": "SAML NameID Format",
+ "JcarhR": "Bring products to market faster",
+ "Jccx0J": "Photo updated.",
+ "Jd/7Y/": "Find member by name",
+ "Jd2LFg": "Pin to {folder}",
+ "JdG0u/": "Pending approval",
+ "JdkQ4x": "Connected",
+ "Jdt7a7": "Cancel the call",
+ "JdzDdr": "Dropbox Transfer feature that lists notification and security customisation for files.",
+ "JeN9S+": "Need to send more than {file_size_limit}? Upgrade to the {premium_product_name} plan to send up to {premium_file_size_limit} per transfer for {plan_price}.",
+ "JeZy23": "Team admins",
+ "JefWBD": "You\u2019re switching your free {old_billing_schedule} {start_plan} to a {new_billing_schedule} {end_plan} trial. By switching your plan, your new {new_billing_schedule} total will be {recurring_total} after your free trial ends on {date}.",
+ "JefjfS": "Password protection",
+ "JejsPF": "Visit your personal account page.",
+ "Jf36zT": "By email",
+ "JfCj3L": "An email address must contain a single @",
+ "JfJSje": "Set to active",
+ "JfONLE": "\u2013 Your current plan \u2013",
+ "JfgcFN": "Close",
+ "JflzJz": "We\u2019ll charge your card ending in {last4}.",
+ "Jfm8Pe": "New Paper document",
+ "Jfn0Wa": "Post this note as a comment",
+ "JfoJFZ": "In the meantime, you can look for additional help via the links below.",
+ "Jfvav/": "Email",
+ "JgDsCG": "Popular",
+ "JgEBcc": "If you think this might not have been you, or even if you\u2019re still not sure, the best way to keep your account secure is to update your security settings straight away.",
+ "JgIvka": "Supported file types",
+ "Jh2qNK": "Work email address",
+ "JhDJcU": "Upgrade to add folder",
+ "JhgSLx": "Email",
+ "JhipKF": "Reopen file request",
+ "JhqchU": "Add colleagues quickly",
+ "Ji2DNY": "Stay on top of important tasks and deadlines. Coordinate cross-functional teams by setting milestones, assigning to-dos and managing approvals where everyone can find them.",
+ "JiHG/V": "Archive",
+ "JidWf/": "Add this file to a Paper doc to collect ideas and organise your thoughts.",
+ "Jj7ycG": "Download",
+ "JjMkmX": "Connect with a Dropbox partner",
+ "JjX/bt": "Skip for now",
+ "JjY1qD": "Save time by moving multiple files in one go.",
+ "JjiMmw": "
On your iPhone or iPad, tap Settings.
Tap your name.
Tap iTunes & App Store.
Tap your Apple ID at the top of the screen, then tap View Apple ID.
Tap Subscriptions (about halfway through the screen).
Tap Dropbox.
Tap Cancel subscription or Cancel trial.
Tap Confirm.
Your account will be downgraded to Dropbox Basic (free) at the end of your billing cycle.
You can find more information here about requesting a refund from Apple.
",
+ "JjwP/n": "{numRemainingLicenses, plural, one {After these invitations, you\u2019ll have {numRemainingLicenses} licence remaining.} other {After these invitations, you\u2019ll have {numRemainingLicenses} licences remaining.}}",
+ "JkEOPA": "I understand that I\u2019ll need to be invited by the team admin if I want to join the team again.",
+ "JkM87S": "Your {trademark_business} trial is almost over",
+ "JkRUmq": "Add billing info",
+ "JkU5zc": "View more earned space",
+ "JkfbDa": "User management",
+ "JlDI5I": "{plan_title} ({schedule})",
+ "JlF6JV": "Extract all",
+ "JlFag9": "Reload",
+ "JlQQTc": "Yes. You can change your payment method at any time.",
+ "Jlk66P": "Create a new group",
+ "Jm2Zmr": "Get more space",
+ "Jm8h9p": "Request approved",
+ "JmTRs1": "Moved by",
+ "Jmi3jE": "Connect applications to Dropbox",
+ "JnJK1Y": "Admins in {team_name} will no longer be able to sign in to your admin console. To grant access again, you will need to send them a new trusted team request.",
+ "JnNd2k": "Please re-enter your password to make {emailToBePrimary} your primary email. Doing so means you will use it to log in to your Dropbox account, and {currentPrimaryEmail} will become a secondary email.",
+ "JnNgZ9": "Sign in to join your team",
+ "JnWJpy": "{count, plural, one {Your account must have at least {count} licence, because your {trademark_business} plan comes with {count} licence by default.} other {Your account must have at least {count} licences, because your {trademark_business} plan comes with {count} licences by default.}}",
+ "Jnf299": "Fonts",
+ "JoJWle": "Your team settings don\u2019t allow sharing outside your team.",
+ "JoY3CJ": "Help trigger",
+ "Joo/Om": "Expired",
+ "JopplL": "Unsharing {file_name}\u2026",
+ "JowGoo": "Adding...",
+ "JpLg+t": "You\u2019re all set",
+ "JpVzlJ": "Delete\u2026",
+ "Jpogfm": "Most recent attempt",
+ "JpxJjX": "Note: Apple only accepts refund requests for purchases made within the last 90 days.",
+ "JpyR3P": "Connect the apps you use and tackle your everyday tasks with ease.",
+ "JpydDW": "Something went wrong",
+ "Jq+BGU": "Unsynced folders will sync to new computers. This could be an issue for users without much hard drive space or who haven\u2019t set their Smart Sync default to online only.",
+ "JqXtTP": "Running business operations",
+ "JrDCI8": "The email addresses don\u2019t match. Please try again.",
+ "JrFrfM": "Close",
+ "JrID4H": "{count, plural, one {You renamed {count} item} other {You renamed {count} items}}",
+ "JrOY5n": "Team",
+ "Js+HBd": "Changes are scheduled for {date}. Your new {schedule} total will be {total}.",
+ "Js1Gcw": "Couldn\u2019t share. If this folder has a lot of files, try sharing fewer files.",
+ "JsH2Ax": "Right-click on any file in your Dropbox folder and select 'Share'",
+ "JsiRXI": "Your subscription has expired",
+ "JtONmB": "Edit link created.",
+ "JtSfqF": "Manage and pay for all employees\u2019 accounts with a single bill.",
+ "Jtaa7H": "Acknowledge",
+ "JtjtB5": "Space used: {spaceUsage,number,::percent} of {space_quota}",
+ "JuA3If": "Save changes",
+ "JuFJib": "Get {trademark_business}",
+ "JuQNbM": "Everything you need for work, all in one place",
+ "JuduWh": "Close",
+ "JuuMAX": "Email me the link",
+ "Jv3Yc3": "{actor_name} added this file to Trello",
+ "JvfueH": "Cut selected file(s)",
+ "JwMP6F": "upload to the folder \u2018{folder}\u2019 in your personal Dropbox",
+ "Jwbrhq": "From",
+ "JwmPfI": "{count, plural, one {Moved {count} item to {dest}.} other {Moved {count} items to {dest}.}}",
+ "JxBPfw": "Successfully connected {service_name}",
+ "JxeFAh": "{displayName} can remove you as a trusted contact at any time",
+ "JxriCD": "{count, plural, one {You moved {count} item into this folder} other {You moved {count} items into this folder}}",
+ "JyvALs": "Processing...",
+ "JzEl6g": "Enter your email address",
+ "Jzp/g0": "Send and request electronic signatures on files",
+ "Jzzn4t": "View actual size",
+ "K+VjRY": "could not apply permissions",
+ "K/i5x+": "Password required",
+ "K0iMCC": "Contact Dropbox support",
+ "K0wo21": "Create report",
+ "K197gQ": "To get an app enabled for your team, please contact your admin.",
+ "K1E90F": "Call sales on {phone_number}",
+ "K1cSDo": "Choose background image",
+ "K1fpcu": "Your logo should be a single file.",
+ "K2L7zo": "Open Dropbox for mobile",
+ "K2PjtT": "Learn more about Dropbox space",
+ "K2RBLS": "Business",
+ "K2WP/Z": "Contact support",
+ "K2YdqW": "Unable to connect to our servers - refresh page",
+ "K2gcCi": "Google",
+ "K3HTLU": "If the BAA is Terminated Before the Agreement.",
+ "K3hd3n": "{total_users}x users",
+ "K3sKJc": "Copy",
+ "K42cqr": "{actor_name} shared this file in Zoom",
+ "K4DUr7": "Unlink {host}?",
+ "K4q33s": "{count, plural, one {You have {count} invitation remaining. Upgrade now to add as many members as you like to your team.} other {You have {count} invitations remaining. Upgrade now to add as many members as you like to your team.}}",
+ "K5+c+p": "All campaigns",
+ "K57Ot6": "Enter",
+ "K5gurn": "If you cancel your plan, your storage will drop from unlimited to 50 passwords, and you won\u2019t be able to use your account on more than 3 devices.",
+ "K5izMM": "Remind me later",
+ "K5v93L": "Change role",
+ "K6+Nod": "Once your transfers expire, you can find them here.",
+ "K67EWd": "BETA",
+ "K69xo9": "Try Dropbox Transfer",
+ "K6dbzR": "Linked workspaces",
+ "K79TJX": "There isn\u2019t a link for editing.",
+ "K7gpe8": "There was an error updating your plan.",
+ "K81Lqx": "You can\u2019t change to a country with a different currency. For help, please contact support.",
+ "K87LId": "Invitation sent.",
+ "K8B1pA": "\u201cA lot of the time when we deploy software, we first hear about the challenges. But during our phased deployment of {trademark_businesss}, we mostly just heard employees saying, \u2018Can I get that now?\u2019\u201d",
+ "K8qV0X": "Remove link created by {name}",
+ "K8siFg": "Type a file name and press enter (optional)",
+ "K8yeB2": "Fax from Dropbox",
+ "K9CwPn": "A member\u2019s credentials may have been stolen.",
+ "K9PgX4": "View all your file activity in one place",
+ "K9QB/G": "Couldn\u2019t save changes. Try again, or contact us for help.",
+ "K9VK1G": "Access Dropbox on your computer, phone or tablet",
+ "KANDIa": "This email is already taken Sign in or reset your password.",
+ "KAXwRH": "Password added",
+ "KAmRDp": "Warning",
+ "KB3mX1": "{actor_name} shared this file in Zoom",
+ "KBT48G": "Manage this policy",
+ "KBkWul": "Look up a credit card transaction",
+ "KBoyON": "Team members who can edit",
+ "KCFQgs": "Online only Smart Sync icon",
+ "KCLZbA": "Provide the 12-digit alphanumeric code located on the Dropbox line item on your bank or credit card statement",
+ "KCd6Mi": "You can only share with your team and people your admin has approved.",
+ "KDng7D": "Select a device",
+ "KEQdXJ": "Cancel",
+ "KEegJt": "Open with",
+ "KEh722": "Transfer to anyone, even if they don\u2019t have a Dropbox account",
+ "KEquRu": "To see files shared with you, you need to verify your email address.",
+ "KEvbU4": "Your team will be missing out on the additional space it\u2019s been using, and you and your team members have returned to your initial space quotas.",
+ "KFFcgE": "This transaction is associated with the card ending in {credit_card_last_four}",
+ "KFgJUh": "Your login is managed by your team admin or by a third party.",
+ "KGD0Zs": "Connect to Slack",
+ "KGDTWn": "Couldn\u2019t remove. Try again in case it was a one-off, or reload the page.",
+ "KGS5Y8": "Two-factor authentication (2FA)",
+ "KGW2Ni": "Windows Phone",
+ "KGWCGo": "Shared link",
+ "KGxm/W": "We send you an email the instant a new device or browser signs in to your Dropbox account. So check the date in the email and the time we sent it. If you weren\u2019t connecting to Dropbox at that time, that\u2019s another clue that this might have been someone else.",
+ "KHC+f0": "Current plan",
+ "KHF+Jy": "{trademark} is your best choice",
+ "KHnObD": "Invite team members to access and add to your shared 5 TB library",
+ "KI50Ut": "Step {stepNumber} of 3",
+ "KIC1WT": "Hello again! Let\u2019s connect this computer to the Dropbox desktop app so you can transfer files to your new PC easily.",
+ "KIFvZh": "Members of {parent_name} can view the folder name",
+ "KIGbLw": "Couldn\u2019t apply policy. Try again, or contact us for help.",
+ "KIU6pg": "Repeat",
+ "KIXusY": "Required by admin",
+ "KIYR8P": "Apps for project management",
+ "KJ6f6C": "Start by downloading Dropbox",
+ "KJEPKf": "In Optional mode, you can use an email template to tell users about SSO manually. View template",
+ "KJIj4x": "Due {date,date,::MMMMd}",
+ "KKSeLq": "Folders",
+ "KKoiKc": "Leading communications tools, such as Slack and Zoom, work directly from Dropbox. Set up a quick get-together \u2013 or even a virtual conference room \u2013 with just a few clicks.",
+ "KKpedX": "Select specific files",
+ "KL9RcB": "We\u2019ll send a reminder email to anyone who hasn\u2019t yet set up two-step verification. You can see who isn\u2019t using two-step verification on the members page.",
+ "KLKzmc": "{count, plural, one {Editing is locked for this file, and only the person who locked editing can make changes to it. Once you unlock editing, anyone else with access can also make changes.} other {Editing is locked for these files, and only the person who locked editing can make changes to them. Once you unlock editing, anyone else with access can also make changes.}}",
+ "KLMmft": "(show)",
+ "KLVfpZ": "Create doc",
+ "KLejvJ": "{count, plural, one {You shared this file with {entity} and {count} other} other {You shared this file with {entity} and {count} others}}",
+ "KLrM8q": "Refresh auth token?",
+ "KM5lP0": "Or invite with an email",
+ "KMVjkJ": "Purchase now",
+ "KMbzWs": "Date uploaded",
+ "KMcV0/": "Family shared folders cannot be added to the clipboard",
+ "KMdmiJ": "Up to 2 GB/file",
+ "KMtIDp": "Do you want to transfer this member\u2019s file content to another team member?",
+ "KN5iYH": "You edited just now",
+ "KNKh1o": "Wrong password \u2013 please try again",
+ "KNRQzR": "Enter a valid number of licences.",
+ "KNYHMT": "{count, plural, one {Using {used} of {allocated} storage} other {Using {used} of {allocated} storage}}",
+ "KNZDDC": "Dropbox feedback surveys",
+ "KNlxLe": "Add board members",
+ "KOp2Z9": "Creating...",
+ "KP0Yzf": "This email is already taken. ",
+ "KPPQZO": "Search by name or category",
+ "KPapIP": "Send for signature",
+ "KPjgco": "{actor_name} shared this file in Slack",
+ "KPsmbD": "
Automatically back up one computer \u2013 regardless of size \u2013 for half the price of Plus.
{backupPlanName} is $5.99/mo and lets you easily recover your files if things go wrong.
",
+ "KQ+sso": "Access the Content page",
+ "KQFSe4": "(up to {num})",
+ "KQHbPx": "Smart Sync update for Mac",
+ "KQOE+H": "Remove feature?",
+ "KQT2xh": "Image editing",
+ "KQwzZb": "Anyone in your {trademark_business} team with this link can view the file.",
+ "KRGNcn": "Moving members...",
+ "KRLDQF": "Loading the exports table",
+ "KRX5MA": "Due today",
+ "KRoKWN": "Call",
+ "KRoo+n": "Make your own template",
+ "KShn3Q": "Sign up for free with Google",
+ "KTM9I1": "Please enter your password",
+ "KTPma5": "Delete data automatically after a certain amount of time",
+ "KTUKSV": "{price} per year. Save {savings}",
+ "KUPk1O": "Order summary",
+ "KUi2WD": "Smart Sync icon",
+ "KUkJyi": "If you change from Dropbox {currentPlan} to Dropbox {plan}, we\u2019ll charge you {proratedPrice} now. From {date}, we\u2019ll bill you {scheduledTotal} per year. Charges will continue until you cancel, and previous charges won\u2019t be refunded unless it\u2019s legally required. {paymentInfo}",
+ "KUkt1D": "Report started. We'll email you when it's ready.",
+ "KUrLkH": "This setting doesn\u2019t affect links to shared content. You can adjust access for links with the Sharing links externally setting.",
+ "KUyXWm": "Certain files in this folder are unavailable. For more information, contact Dropbox support.",
+ "KV+oAR": "Your current plan details (trial ends on {trial_end_date})",
+ "KV4pWC": "Send, request or sign encrypted files",
+ "KVD2SP": "Open or edit with these apps",
+ "KVRyHc": "Try {trademark_business}",
+ "KVZaBF": "Failed to create task.",
+ "KW+Zge": "{plan_name} {downgraded_text}",
+ "KWRGOa": "Search App Centre",
+ "KXGWx6": "Export started. We\u2019ll email you when it\u2019s ready.",
+ "KXQpCo": "Each member of your team gets enough space to back up important information, regardless of file size.",
+ "KXgMVH": "To post your comment, sign in to Dropbox.",
+ "KYByIC": "Restore all files",
+ "KYHY0Z": "Name was invalid.",
+ "KYv8Ke": "Deadline on {date} at {time}",
+ "KZETkM": "Empty files cannot be uploaded.",
+ "KZNdp7": "The domain {input} is invalid",
+ "KZTpUR": "Clear all",
+ "KZq2LH": "{name} restored a previous version of {single_item_name} in {folder_path}",
+ "KZtaJC": "You can\u2019t move or copy files here from another Dropbox.",
+ "KaeLBh": "Dismiss suggestion",
+ "Kb1en/": "This file will be saved instantly to your {team_name} Dropbox and downloaded to all of the computers linked to your {team_name} account.",
+ "KbGi73": "Dropbox needs to verify your email address {email} before you can send gifts to your friends. It\u2019s as simple as clicking the link in the verification email we send you.",
+ "KbJSNk": "Unable to upload {filename}",
+ "KbOUHL": "or purchase now",
+ "KbdxtY": "If you want to wait a few days for your users to read the email, you can come back to this step later.",
+ "KbueII": "Set up Dropbox",
+ "KcIE68": "Keeping your requests open?",
+ "Kd1MNN": "General information",
+ "Kd7Pzk": "The icon used in this Prompt version",
+ "Kd8+qd": "It looks as though someone deleted this file",
+ "KdIB93": "Premium",
+ "Kdb5og": "Your account will be downgraded and your team will lose out on {space} of space, file recovery and advanced features such as Smart Sync.",
+ "KdoH+3": "Make sure you\u2019ve created the {record_type} record with the proper values. If it still doesn\u2019t work, please try a different verification method or contact support.",
+ "KecPBA": "Next",
+ "Kf+n3T": "Installs & integrations",
+ "Kf13Vw": "You can still choose which files your team can and can't access",
+ "KfK1+s": "Any team admins in the trusted team can access my admin console",
+ "KfLLjt": "Insights",
+ "Kfrd2f": "Currently viewing",
+ "KgByP8": "What can we do to make you consider using the product again?",
+ "Kgtej6": "Two-step verification",
+ "Kh0llv": "These browsers are currently signed in to your work Dropbox account.",
+ "KhLThn": "User-managed group",
+ "Ki2Z1X": "Pick as many as you like. We'll recommend a Dropbox plan that suits you.",
+ "Kj/rA+": "Resend verification",
+ "KjJiVt": "Download disabled",
+ "KjTrxx": "Start your Dropbox Business free trial",
+ "Kja738": "I wasn\u2019t satisfied with or had issues with the features",
+ "Kjxyo5": "No activity",
+ "KkVKxj": "Merge {team_name} Dropbox into yours",
+ "KkjU0R": "Delete permanently",
+ "KkuKkS": "Once you\u2019ve saved the {record_type} record, your domain is ready to be verified.",
+ "KlBJFl": "Support",
+ "KloWey": "Only your admin can customise these settings",
+ "KlxqP+": "Find out more.",
+ "Km/LLh": "Team folders let you share with your entire department or team.",
+ "KmMbqM": "Learn how to manage your Apple App Store subscription",
+ "KmONom": "When a lot went wrong, undo everything by going back to any point in the past.",
+ "KmXSRG": "Members of the file with the link can view",
+ "Kmr7w0": "View all transfers",
+ "Kn5Jdx": "User research report \u2192",
+ "KnGVHn": "Front of the team folder.",
+ "KnT2hh": "See when your transfer has been downloaded and how many times it\u2019s been viewed.",
+ "Knn7Tu": "Make your mark",
+ "KnpDbF": "Download content",
+ "KoLUW4": "Remove",
+ "KoZ/sb": "Got it",
+ "Kod2lh": "Explain what the request is for",
+ "KpImd7": "It's been quiet{br}New alerts will show up here",
+ "KpXQTV": "Create or delete accounts",
+ "KqmXy0": "Delete my Dropbox",
+ "KrfcyG": "Remove my Dropbox files from this device.",
+ "KrkSnt": "Customers can sign up for a waiting list on your items in the meantime",
+ "Krm+HX": "If you need help later on, click the question mark in the corner.",
+ "KsK3GS": "1.855.237.6726",
+ "KsqN07": "{numUsersMax, plural, one {Up to {numUsersMax,number} user} other {Up to {numUsersMax,number} users}}",
+ "Kswo/g": "Update access",
+ "Kt3C+o": "Edit",
+ "Kt9Ues": "Can\u2019t open this alert",
+ "KtD8FA": "Open in {app_name}",
+ "KtNGzK": "Get the most out of Dropbox",
+ "KtNVNl": "Showcase.",
+ "KtZq4r": "{name} added {item_name}",
+ "KuSs1z": "You\u2019ll be leaving {current_team_name} and joining the {team_name} account. Learn more",
+ "KuT2HD": "Send large files securely",
+ "Kud10T": "Everyone in this folder can see notes, tasks and pinned items",
+ "Kuf19u": "Nothing in your team\u2019s Dropbox meets the alert threshold.",
+ "KuiQtR": "Get immediate answers via chat or phone. You can even schedule a time for us to call you.",
+ "KuiYb1": "\u2013",
+ "Kv+v7O": "{filename} is shared with you, but you\u2019re not the owner. It\u2019ll be removed from your account, but not deleted for anyone else. Removing your access won\u2019t free up space.",
+ "Kv1q+Y": "Search the content of all of your files easily, including docs scanned with the Dropbox mobile app.",
+ "KvFh7N": "Learn more about account conversion",
+ "KvX2nA": "Thank you for your purchase!",
+ "KvygQC": "Renaming\u2026",
+ "Kw46PG": "Referrals",
+ "KwCXBA": "This person viewed via a link",
+ "KwIXAO": "On older version",
+ "KwJuTa": "Tell me more.",
+ "KwO1kp": "Reject",
+ "KwecgT": "Remove access to folder?",
+ "KwhW+R": "Dropbox needs to verify your email address {email} to finish updating your {team} email. It\u2019s as simple as clicking the link in the verification email we send you.",
+ "Kwsqq2": "Remove shared folder?",
+ "KwxWmK": "Allow late uploads",
+ "KxLzaS": "Deadline",
+ "KxU5xB": "Access all of your files and folders as you normally would on your desktop \u2013 whether they\u2019re online or synced locally to your device. No need to track down files on different drives \u2013 everything\u2019s right there.",
+ "KxyGh1": "This account\u2019s {plan} will be downgraded to Dropbox Basic on {date}.",
+ "KyJseU": "Ascending",
+ "KyRk6M": "We\u2019re having some trouble at the moment. Please try again later.",
+ "KysfOz": "Unreadable text",
+ "KzE60e": "BETA",
+ "KzbJRo": "Your account comes with a free Professional trial",
+ "KzqBY1": "{modifier} edited {time}",
+ "L+6Oix": "You\u2019re currently logged in as {email}.",
+ "L+GFdm": "We were unable to retrieve all of your shared folders",
+ "L+KFPk": "Failed to join the team.",
+ "L+nrMM": "Dropbox {plus} + {evh}",
+ "L+odzG": "Dropbox highlights feature that lists intelligent content suggestions for your files.",
+ "L+wWOg": "\u201c{filename}\u201d selected",
+ "L+ww/y": "Preview",
+ "L/3I1a": "\u2318 + c",
+ "L/leth": "On (stop sync)",
+ "L/rhbs": "Export name",
+ "L0PeUM": "The Dropbox team will review your document. It will only be used to help improve previews.",
+ "L0wJDD": "Enable or disable app integrations for your team",
+ "L18jYS": "Multiple accounts",
+ "L1B9Fg": "Add members to hold a copy of any file that they create or edit. We won\u2019t let them know that they\u2019ve been added to a hold.",
+ "L1Xwh2": "When you disband the team, you\u2019ll also end your {trademark_business} account. All members\u2019 accounts will be converted to individual Dropbox accounts.",
+ "L25jOg": "Become {displayName}'s trusted contact",
+ "L2DtUl": "A screen capture demonstrating the file preview and commenting capabilities within Dropbox. The user begins on the showcase tracking page and clicks on the number of comments for a particular file. The user sees a preview of the file and a thread of comments from their client, complimenting their work.",
+ "L2bZjZ": "Change email address",
+ "L2mXD3": "Total cost",
+ "L2sa5J": "from {src} to {dst}",
+ "L3AHro": "{actor_name} moved the {card_name} card with this file attached to another board",
+ "L3BzP5": "Invite to team",
+ "L3knW1": "Delete",
+ "L4Cl9R": "JCB",
+ "L4GiLe": "Access",
+ "L4Tupd": "Copy link",
+ "L4kFkD": "Couldn\u2019t find that domain. Please try again.",
+ "L5PBUc": "Sharing settings",
+ "L5RL4W": "This file can\u2019t be previewed.",
+ "L5UkRT": "No members found",
+ "L5VjXw": "Learn how to manage cookies in Firefox.",
+ "L5jE1S": "Severity",
+ "L5jgBG": "Paper icon",
+ "L5lWSy": "Sign in to your {team_name} Dropbox",
+ "L64bdq": "There was an error downloading your file.",
+ "L6U51Y": "You're not signed in to the Dropbox account that {vaultOwnerFname} invited.",
+ "L7+Fiv": "Get {trademark_plus}",
+ "L7+s23": "{count, plural, one {Invite member} other {Invite members}}",
+ "L7O+u9": "Allow Dropbox in Preferences",
+ "L7XWyH": "Already in your team",
+ "L8i8eH": "You\u2019re managing access for {member_name}",
+ "L9u5v1": "File name",
+ "LABgeq": "Connect",
+ "LAPTlQ": "Business Standard",
+ "LATJTO": "Sharing. Who shared content, when and with whom",
+ "LAVXPn": "Starred",
+ "LAZfR0": "Folder names can\u2019t contain \" \\ / :",
+ "LAdUq4": "I found {current_plan} too expensive for the value I received",
+ "LB7f0m": "Tap the \u22ef then tap 'Share' to send files from anywhere",
+ "LBOymk": "You edited {item_name}",
+ "LCXsWn": "Remind me later",
+ "LCkd3m": "Cancel all changes",
+ "LDLk8Q": "You\u2019re about to unlink your computer: {name}. It will stop syncing with your Dropbox immediately.",
+ "LDcGLP": "The domain portion of the email address (the portion after the @) is invalid.",
+ "LDj5Eu": "Could not ask to unlock. Please try again later.",
+ "LDjIzi": "Add logo",
+ "LDyvpN": "File",
+ "LF5bK0": "Strike up a conversation",
+ "LFVOg2": "Share file request",
+ "LFX+Vf": "Remove request",
+ "LGWy5v": "Invalid code.",
+ "LGaAn2": "Before you go, {user_fname}...",
+ "LGeX5c": "Allow",
+ "LGoRkl": "(trial ended)",
+ "LGwQ4n": "I\u2019m leaving because\u2026",
+ "LHGl+f": "Connect Dropbox to even more sales apps",
+ "LI+sTR": "Do the people I share a showcase with need a Dropbox account?",
+ "LIOBaH": "Something went wrong. Please refresh the page.",
+ "LIZiNv": "Security keys are a secure method to complete Dropbox two-step verification.",
+ "LIz/iR": "Don\u2019t worry about space with {dropboxPlus}",
+ "LJ+WGg": "\u2192",
+ "LJ26w7": "Return to tickets",
+ "LK+zfD": "More about file requests and our Privacy Policy.",
+ "LK6Iao": "Updated. You can double-check in the preview.",
+ "LKpkMA": "The content won\u2019t be protected from deletion. This action can\u2019t be undone.",
+ "LL9D7n": "Enough space to do their work",
+ "LLktNG": "Link settings:",
+ "LLm+kz": "Share",
+ "LLopws": "Rewind",
+ "LMTwdu": "On your phone or tablet",
+ "LNFEFg": "Files",
+ "LNhAmH": "There was a problem completing this request.",
+ "LNk7a9": "Edit title",
+ "LO1X8S": "Chat",
+ "LOP6Iv": "Space limit for all members",
+ "LOjZWa": "Cancel",
+ "LOke1K": "Try a different account",
+ "LP0+O5": "Simplify eSignatures",
+ "LPF3tp": "Getting the link...",
+ "LPpAbn": "We'll import your organisation contacts for you and other admins to use",
+ "LQXQ8X": "Plus",
+ "LQZIyx": "{teamAdminCount, plural, one {Admin: {adminList}} other {Admins: {adminList}}}",
+ "LQgYei": "Add a message (optional)",
+ "LQt5WS": "Lock vault",
+ "LQwViN": "{trademark_business} comes with as much space as you need, more ways to collaborate, increased security and file recovery",
+ "LQxqw1": "You have a folder that you can organise however you like. You can share files from here, or keep stuff here that you don\u2019t want to share with everyone.",
+ "LQzEeJ": "Cancel plan",
+ "LRX4vK": "I have opened the HTML file",
+ "LRdMKz": "Unable to copy the link. Please copy manually.",
+ "LRr3bv": "Email envelope",
+ "LSAd37": "Cancel {dropbox_trial_plan_name} trial?",
+ "LSKEjD": "You have no photos or videos",
+ "LSZhtx": "Export member data",
+ "LTAkB/": "",
+ "LTBK90": "Cancel",
+ "LTJsAc": "Prepare your document easily by placing fields to specify the sections that need to be signed, dated and more.",
+ "LTNHt/": "Bri Lobato, Content Strategist{br}MVMT",
+ "LThlyI": "{name} restored {single_item_name} in {folder_path}",
+ "LTl3E4": "Education",
+ "LU+v2Z": "Shared folders will move with their owner, so update the owner to someone else who\u2019s not moving.",
+ "LU34uD": "2. Import CSV",
+ "LUAF4K": "Sign-in blocked.",
+ "LUEaoA": "There\u2019s nothing in our records",
+ "LUaFwK": "Turn on classification to send feedback",
+ "LUjQMW": "To",
+ "LVfGVb": "No credit card needed",
+ "LViFNI": "Split into folders for each island",
+ "LW2miv": "Please enter a valid VAT number, e.g. {examples}.",
+ "LWc9mg": "Message on Zoom",
+ "LX7uHU": "Sync automatically to members\u2019 computers",
+ "LXUN2n": "Specific people",
+ "LXpX80": "Stress-free sharing",
+ "LXv2fU": "No members",
+ "LYHTOV": "Invitations couldn't be sent. Fix any issues, then try sending them again.",
+ "LYVKP8": "{count, plural, one {Failed to pin {count} item to {folder}.} other {Failed to pin {count} items to {folder}.}}",
+ "LZCYrq": "Invited (invalid)",
+ "LZGNnQ": "This can strain the network with a large-scale resync.",
+ "LZIDWA": "Get {free_months} months free!",
+ "La6UGX": "Cannot change role. Ask an enterprise admin to make this change.",
+ "La991r": "{TRADEMARK_VAULT} cannot be added to the clipboard",
+ "LakyAx": "To post your comment, create a free Dropbox account.",
+ "Laz2WV": "Submit",
+ "Lb5frQ": "Write these down and keep them safe.",
+ "Lb9moY": "Submit",
+ "LbLi52": "View all apps",
+ "Lbnt4R": "Chat now",
+ "LcZnrF": "Update billing info",
+ "LciHZa": "{price} per {duration}. {tax_string}",
+ "LcjDNb": "Close",
+ "LdD5qI": "You\u2019ll get an alert if a member makes too many unsuccessful sign-in attempts.",
+ "LdK+1y": "Today",
+ "LdiA8+": "There's been an error.",
+ "Le5Iez": "Name or email",
+ "LeBeJX": "{msg}",
+ "LfFmTA": "You shared this file in {meeting_name}",
+ "LfpmB5": "Standard",
+ "Lg46Rv": "Send copies to prevent unwanted edits",
+ "LgDDjs": "Both",
+ "LgDSr+": "Now it\u2019s easy to securely back up your files and photos, access them from any device and share them with others.",
+ "LgJ6ZM": "{count, plural, one {Restored {count} item, but can\u2019t sync. Your team no longer has full use of {trademark_business} features.} other {Restored {count} items, but can\u2019t sync. Your team no longer has full use of {trademark_business} features.}}",
+ "LgJiOW": "Continue",
+ "Lgnt6l": "Enter a valid email address.",
+ "Lgy3Fa": "Revoke access to {team_name}",
+ "Lh/4PQ": "Previous emails",
+ "Lh2Os0": "Prevent team admins from updating",
+ "Lh4By8": "Disabled open button",
+ "LhL/zj": "Delete folder?",
+ "LhLDTC": "{count, plural, one {Anyone with this link can view the file. Expires in {count} day. Downloads disabled.} other {Anyone with this link can view the file. Expires in {count} days. Downloads disabled.}}",
+ "LhSc7B": "Row actions",
+ "LhlWCW": "Please enter a password",
+ "LhuHW+": "In the desktop app, right-click a file in any shared folder to keep others from editing it at the same time.",
+ "LhuKam": "Card details",
+ "LjBZfZ": "{quota_used} of {quota} used",
+ "LjUC5w": "Assign by name or email",
+ "LjvT1Z": "Plan highlights",
+ "LkElGW": "Renew {trademark_business}",
+ "LkLzhI": "Log in to your other account",
+ "LlAXM+": "Downloads",
+ "LlbwQi": "You won\u2019t get an alert if a member deletes an unusually large amount of content.",
+ "LltYZa": "Are you sure you want to delete the secondary email {email}?",
+ "Lly4lc": "Please select your bank.",
+ "LmN8eC": "Search Google contacts",
+ "LmQdrE": "{num_left, plural, one {You can invite {num_left,number} more member, aged 13 and up.} other {You can invite {num_left,number} more members, aged 13 and up.}}",
+ "Lml2K0": "All of your transfers in one place",
+ "Ln0lsE": "Choose how members can use file editing apps in Dropbox.",
+ "LnlG+E": "Enter [*.]dropbox.com",
+ "LnyaPB": "{plus_space} of space",
+ "Lou/OW": "Advanced settings",
+ "Lp2zi8": "Now, enter the email address you would like to switch to (from {email}).",
+ "Lp9J2f": "Something went wrong while uploading this file. Check your connection to the Internet and try again.",
+ "LpGJcx": "You shared this file with {entity}",
+ "Lpz5Sz": "{count, plural, one {{count} week} other {{count} weeks}}",
+ "LqMhh0": "You can only see traffic and insights for your own files",
+ "Lr7iR2": "Do you have any discounts for {trademark_business} and {dropbox_enterprise}?",
+ "LrSVy3": "{count, plural, one {{count} outside your Dropbox team} other {{count} outside your Dropbox team}}",
+ "LrXo55": "If you\u2019re logged in to Dropbox as {email} on a desktop client or mobile app, click \u201cYes\u201d below.",
+ "LrbExT": "Country code",
+ "Lrg2vT": "Forget you ever worried about storage space. With Dropbox Smart Sync, you can see and access every file in your account and every folder that\u2019s been shared with you, directly from your desktop, without taking up your hard drive space.",
+ "Lrgdx4": "Are you sure you want to remove the shared folder {filename} from your team member folder? This folder will stay shared with any existing members. You can add it again later.",
+ "LrpqA7": "Unpin",
+ "LsgOOC": "Customer stories",
+ "LtLA7W": "All members",
+ "LtVgfK": "Transfer now",
+ "LtyAk2": "From",
+ "LuEFa+": "Only approved emails are automatically approved",
+ "LuJ3Bq": "{planStorage} of encrypted storage",
+ "Ludu27": "{count, plural, one {{name} shared this file with {entity} and {count} other} other {{name} shared this file with {entity} and {count} others}}",
+ "LuofqH": "Delete permanently",
+ "LuuYMu": "Tell us what you liked and didn\u2019t like about Dropbox Transfer.",
+ "LvAGFd": "They\u2019ll no longer have access to the enterprise console. As a team admin, they can still manage everything for their team only, such as changing security settings and removing other admins.",
+ "LvWNBV": "Disposition period",
+ "Lw0wKV": "Streamline workflows with reusable templates",
+ "Lw5S1r": "Sign in to a trusted team\u2019s admin console to manage settings.",
+ "LwKcf3": "Dismiss",
+ "LxW7Y4": "deleted shared folder",
+ "Lxm7P3": "Location",
+ "LyB3q5": "Back to {folder}",
+ "LyM3mw": "{name} gave view-only access to {entity}",
+ "LyPlzZ": "Enable Paper",
+ "LymIft": "Permitted Use.",
+ "LzBbwe": "Couldn\u2019t create report. Try again or contact us so we can help.",
+ "LzEh8h": "Enter the secret key below, or .",
+ "M+9FcI": "Invitees",
+ "M+cFlV": "Hello {user_first_name},",
+ "M/CNVZ": "Add filters +",
+ "M0CnHU": "Alert acknowledged.",
+ "M0ZojO": "{count, plural, one {{name} + {count} other} other {{name} + {count} others}}",
+ "M0egsH": "You can\u2019t edit or create file requests because your account has been disabled.",
+ "M0ts2g": "Locked files",
+ "M1AQ/e": "Allow {browserName} camera access in device settings",
+ "M1Mbfy": "{phrase_1} {phrase_2}",
+ "M1ui/4": "Done!{br}Account added to this computer",
+ "M25rlh": "Licence keys",
+ "M26rn4": "Grant emergency access to a family member or trusted contact",
+ "M270XN": "Mentioner",
+ "M2M2fz": "{count, plural, one {Anyone in your Dropbox team with the link can view this folder. Expires in {count} day.} other {Anyone in your Dropbox team with the link can view this folder. Expires in {count} days.}}",
+ "M2OB3I": "Present in Zoom from Dropbox",
+ "M2VGoP": "Calculating folder sizes...",
+ "M2xkJm": "Set expiry dates for file requests",
+ "M2zlxz": "This opens either Windows Explorer or macOS Finder by default (instead of the Dropbox desktop app) for all members. Members can override this setting individually.",
+ "M3McIW": "2 of 2",
+ "M3RENu": "Here\u2019s your member folder",
+ "M3lN6W": "Policy",
+ "M4FA7E": "Your free trial of {trademark_business} {plan} will end on {date}. For this plan, your {schedule} total will be {recurring_total}.",
+ "M4He3z": "{trademark_business} provides three plans to fit your team\u2019s needs. The {standard_display_name} plan gives your team {standard_plan_size} of shared storage. For teams needing more space, the {advanced_display_name} and {enterprise_display_name} plans provide as much space as you need.",
+ "M4SS1n": "Sign up with Google",
+ "M4bQJN": "Open in Slack",
+ "M4i5LM": "You\u2019ll keep your {user_name} folder",
+ "M4sXbA": "Names or email addresses",
+ "M5+eCf": "Multi-spot",
+ "M504OL": "\u201cOur users were accomplishing a lot of great work on Dropbox without any support. Deploying a central account allowed that great work to continue \u2013 uninterrupted \u2013 in the most secure way possible.\u201d",
+ "M54rVK": "Remove",
+ "M5Btl1": "This member\u2019s limit",
+ "M5GM60": "Send email to {email}",
+ "M5QAc6": "{count, plural, one {{count}submitter} other {{count}submitters}}",
+ "M5q+6R": "",
+ "M6BJCe": "Sign in to connect",
+ "M6G5UH": "I agree to the {trademark} agreement",
+ "M6Yj02": "Continue tour",
+ "M6hYmn": "{requester} sent you this request",
+ "M6sjmN": "Add your logo to shared files",
+ "M7I8En": "Create then copy link",
+ "M7c3jS": "VPN",
+ "M85BdF": "Loading\u2026",
+ "M8QAlp": "{team_name} will still keep team-owned folders",
+ "M8fQpg": "All groups",
+ "M94J6D": "Cancelling...",
+ "M9J/eL": "\u201cIncluded Functionality\u201d",
+ "M9T7Ct": "Disable two-step authentication icon",
+ "M9rQb1": "Buy more licences?",
+ "M9vy6c": "Too long",
+ "MADFmJ": "Once your team joins this organisation, enterprise admins can:",
+ "MADc7q": "File attached to Trello card.",
+ "MAKAZY": "{current_usage} (your space used)",
+ "MAKL0W": "After these invitations, you\u2019ll have no remaining licences.",
+ "MAsFOT": "Delete",
+ "MAy8Kw": "Please unlock your vault before attempting to add to this folder.",
+ "MB8Q3H": "Loading deleted files...",
+ "MBCQNX": "Remove your secondary email",
+ "MCBk12": "Paper is included free of charge with your Business plan but, if you haven\u2019t turned it on in the admin console yet, your team members won't have been able to try it. On {default_on_date}, we\u2019ll remove that restriction so your team can explore Paper on their own. A couple days after that, they\u2019ll get an email with some more info about Paper.",
+ "MCDKW4": "You\u2019re about to download a file from Dropbox.",
+ "MDLOPX": "{remainingLicenses}/{totalLicenses}",
+ "MDj68z": "Share quickly with your entire team",
+ "MESkKT": "Sign-in issues",
+ "MEciBR": "Connected on",
+ "MF+40x": "Download",
+ "MF/EZ0": "First name",
+ "MFNNdH": "Join the team successfully",
+ "MFUXPs": "Give Dropbox full access to your HelloSign account.",
+ "MFexR2": "Attachments",
+ "MFoUQg": "refresh the page",
+ "MFt6f7": "Late uploads will be marked as overdue",
+ "MFvTKh": "See expired transfers with {premium_product_name}",
+ "MGPz8l": "Restore {file_count} items\u2026",
+ "MGV4gx": "Close",
+ "MGzrj3": "While a member\u2019s account is being moved, they should take a break from working in Dropbox.",
+ "MH5OkG": "Unshare \u201c{content_name}\u201d?",
+ "MH6qlB": "Review summary before converting",
+ "MHHiSt": "Ignore {count} tasks",
+ "MHUAmd": "Unable to delete those files.",
+ "MHj1we": "Couldn\u2019t remove. Try again in case it was a one-off, or reload the page.",
+ "MHxxzk": "Can\u2019t move out of the team space",
+ "MI5amF": "Powerful sharing, collaboration tools and {quota} of space.",
+ "MI9Ua+": "Verify the {record_type} record",
+ "MIxRkf": "",
+ "MJ0g8h": "Bring files and cloud content together with the tools your team wants to use.",
+ "MJFtee": "File requests let partners, clients and vendors send files as large as 20 GB \u2013 even if they don\u2019t have an account",
+ "MJHLe9": "Once you\u2019ve given Dropbox camera access, {br}point it at the image below and wait.",
+ "MJV9YB": "Edit admin permissions",
+ "MJgs6m": "How often should we email you?",
+ "MK2EtW": "Streamline recruitment and onboarding",
+ "MK7bBv": "The folder \u201c{folder_name}\u201d has been deleted",
+ "MKEpc0": "You do not have permissions to rewind this folder.",
+ "MLCJEY": "Or",
+ "MLLXJ9": "{browser_name} on {os_name}",
+ "MLWfyM": "If you lose access to your primary security code source, we can send them\n to your backup mobile number instead.",
+ "MLktc7": "Folder overview added.",
+ "MLqiSW": "Folder",
+ "MNcs5F": "Got it",
+ "MO3yiv": "{numInvitees, plural, one {You need more licences for this invitation.} other {You need more licences for these invitations.}}",
+ "MOOgAN": "Do any of these help with billing and payments?",
+ "MP26Kz": "Install Dropbox on your mobile device",
+ "MP7zas": "Updated {time_ago} by {name}",
+ "MPFoRr": "Set a Dropbox password to continue",
+ "MPX3Ow": "{value, plural, one {{value,number} month} other {{value,number} months}}",
+ "MQDRWx": "Please enter a valid CPF number.",
+ "MQv1l8": "deleted disk image",
+ "MRsJ2V": "{professional_price} per month",
+ "MSF549": "Loading...",
+ "MSmoKs": "Upgrade soon to get more space",
+ "MSnjbs": "{value, plural, one {for {value,number} min} other {for {value,number} mins}}",
+ "MSsIup": "From mobile",
+ "MTUD+p": "Send code",
+ "MTeYED": "Let\u2019s continue the file-transfer process using the Dropbox app.",
+ "MUXVDO": "Thanks, we will be in touch",
+ "MUsgY7": "Dropbox needs to verify your email address {email} before you can add comments. It\u2019s as simple as clicking the link in the verification email we send you.",
+ "MV2ZvR": "Mike Day, CIO{br}University of Sydney",
+ "MVNTYK": "{count, plural, one {{count} hour} other {{count} hours}}",
+ "MVs5oP": "KB",
+ "MWDQlb": "Connect your team",
+ "MWP1yS": "You don\u2019t have any licences available.",
+ "MWcgKC": "Date",
+ "MWdLCv": "Please select one reason for cancelling",
+ "MWfAO9": "Delete link",
+ "MWhD7a": "Add a team",
+ "MX2YRH": "Participants:",
+ "MXGk5a": "{count, plural, one {This is a large transfer ({count} file)} other {This is a large transfer ({count} files)}}",
+ "MXShkW": "Request space",
+ "MXWf1w": "You can rename team folders in the admin console.",
+ "MXYa10": "Inclusion list",
+ "MXqCwG": "Learn more",
+ "MY92Te": "Make {name} an admin",
+ "MYByNv": "Other",
+ "MYnZ+3": "Select a card type",
+ "MZCMJM": "{count, plural, one {{count} file left} other {{count} files left}}",
+ "MZf7i5": "You\u2019re now downloading Dropbox desktop.",
+ "MZu4EM": "Sent to",
+ "MaBCmg": "Sync folders",
+ "MaCet6": "Team personalities",
+ "MaE11m": "Manage this request",
+ "MaUI+x": "At the moment, people are working on this file in {editor_with_lock_string}. You can see updates and edit there.",
+ "MbL/b4": "Cancel",
+ "MbMlLu": "Access invoices and receipts",
+ "MbSim3": "Team files",
+ "Mbuk28": "Couldn\u2019t create task.",
+ "Mc+U9E": "Upgrade",
+ "Mc2g5W": "Two-step verification reset for {user_display_name}",
+ "McRfR4": "Didn\u2019t work? ",
+ "McVRyL": "Dropbox {scheduled_plan}",
+ "McYFO5": "{count, plural, one {{count} person has access} other {{count} people have access}}",
+ "McdUt3": "With Smart Sync, large files won\u2019t take up all of your hard drive space. You\u2019ll be able to download and edit them on demand.",
+ "Mcwc+5": "Send fax",
+ "Md6TJX": "If you still want to change plans, please acknowledge the following:",
+ "MdAYrF": "Sorry, we weren\u2019t able to sign you in. Please enter your email and password to sign in.",
+ "MdEJfm": "Slide {slide_number}",
+ "MdJXo5": "Terms & Privacy",
+ "MdNuLw": "OK",
+ "Me0uB0": "User\u2019s access revoked. Can be unsuspended or permanently deleted.",
+ "Me0uFH": "{vacuuming_policy} days of version history and deletion recovery",
+ "Me8qX4": "Sharing externally",
+ "MeFKtq": "Importing {service_name} contacts",
+ "MeG6h+": "That's it for now. We'll suggest teams if we think they might be a good match.",
+ "MeeqZ2": "Link copied. We'll let you know when someone joins.",
+ "MehNLa": "Learn more",
+ "MepQOa": "Set up branding",
+ "MeqvVX": "Dimensions",
+ "Mf/Zpf": "Actions by Dropbox",
+ "MfWSLh": "upload to the folder \u2018{folder}\u2019 in your {team_name} Dropbox",
+ "MfdjkI": "Sending",
+ "Mflc9Z": "{count, plural, one {Pinned {count} item to {folder}.} other {Pinned {count} items to {folder}.}}",
+ "Mg+i5T": "Your admin manages these emails",
+ "Mg5hv3": "This email is pending \u2013 please try another one",
+ "MgR2x6": "Begin typing to search",
+ "MgS8Ue": "{team_name} owns and administers this Dropbox",
+ "Mh1yCB": "Files from computer",
+ "MhNU0E": "Copy to Paper",
+ "Mhdr6D": "Having problems? Please try again or visit our Help Centre.",
+ "Mhmrl5": "Choose at least 1 member",
+ "MhniSh": "You are editing details for all future invoices. To edit past invoices, click 'Edit' on the invoice item instead.",
+ "MiLg40": "The domain portion of the email address is invalid (the portion after the @)",
+ "MiRE07": "Any",
+ "MiYLIx": "Have you lost access to your email?",
+ "MkD8+F": "Select item",
+ "MkHN8W": "Request files",
+ "MkSFfQ": "You won\u2019t be charged now.",
+ "MktnwF": "Privacy & Terms",
+ "Ml403u": "Image showing files being transferred to a different Dropbox.",
+ "MlITPK": "Open alert details",
+ "MlThiV": "Unlimited legally binding signatures",
+ "MlTrBL": "URL copied",
+ "MmMgu9": "Paper app setting updated.",
+ "MmmPv/": "They can sign in to your admin console, view activity and adjust any settings such as security and sharing.",
+ "MmtCb5": "Actions",
+ "Mmu8mM": "Information",
+ "MmvP/Q": "How to prioritise your ad in relation to all other {campaignTypeName} ads.",
+ "MmwXT2": "Failed to lock editing.",
+ "Mng7Wf": "Notes",
+ "MnjJiE": "Creating link",
+ "Mo9Exx": "Prepare",
+ "Mofm1J": "You don\u2019t have access to this account.",
+ "MomaNB": "{name} is the owner",
+ "MpDbPK": "Choose your Dropbox folder for your signed document to be saved automatically and stored safely",
+ "Mq1nGs": "{Calendar} or after",
+ "Mq770g": "Submit code",
+ "MqCbgz": "Individual",
+ "MqOG6r": "No boards available",
+ "MqaiAM": "Cancel",
+ "MrEDaY": "Only you can view via this link.",
+ "Mran8D": "Download",
+ "MsPKYk": "See meetings you share with others",
+ "MsQTag": "Team ID",
+ "MsSJfa": "Hooray! Your team has now been upgraded",
+ "MskMEF": "Passwords must contain at least 6 characters",
+ "Mt43Vq": "Leaving group...",
+ "MtMb05": "Sign in as user icon",
+ "MtQlO7": "Start taking steps to get organised. Access your stuff and share easily, so you\u2019ll have more time to focus on the things that matter.",
+ "Mtd0dn": "\u201cWith Dropbox Paper, I could share the creative concept, test shots and Dion\u2019s designs with the global team at any hour of the day and get immediate sign-off. Everything we needed, from photos to budgets, was in one spot.\u201d",
+ "Mtpt6L": "Missing files and folders",
+ "MttbRU": "Store everything in a secure, private space",
+ "MuVG/K": "Secure and organise your most sensitive documents in the cloud so only you and your loved ones have access.",
+ "MuWhIJ": "Folder info",
+ "Muci4i": "Everything in Plus, shared link controls and {plan_space} storage.",
+ "MvJp1j": "Interested in Dropbox for your team?",
+ "MvbVSb": "Organise projects and attach files",
+ "MvobKd": "Fill in forms and eSign PDFs. Delete and rearrange pages. Convert to Microsoft Word, Excel and PowerPoint.",
+ "Mw4b3e": "Cancel",
+ "MwZy3n": "Email everyone who\u2019s unmanaged, asking them to join your team. You can send this email now, and again later as a reminder.",
+ "Mwm/ks": "Are you sure you want to remove your access to {filename}? It will no longer be viewable in your list of shared folders and you won\u2019t be able to re-add it to your Dropbox unless you\u2019re re-invited.",
+ "MxMIO5": "Keep all your files securely stored, up to date, and accessible from any device.",
+ "MxPNMY": "Getting insights...",
+ "MxYg96": "Changes aren\u2019t retroactive. People in your team who have already joined shared folders outside the team will stay in those shared folders. Review the sharing activity report for information on the shared folders that people in your team have joined.",
+ "MxejbW": "Can\u2019t upload file requests to a team folder. Try a different folder.",
+ "Mxewsd": "Couldn't copy, but it might be a one-off. Try reloading the page or ask us for help.",
+ "Mxyk0C": "Error loading your ticket",
+ "My4TKm": "Working in teams",
+ "MyGUjq": "To apply a custom space limit, you\u2019ll need to set a member space limit for your team first. View settings",
+ "MyWjDg": "Team connected",
+ "MybCcA": "Tiered admin roles",
+ "Mypxfp": "Identity provider sign-out URL",
+ "Myz/8P": "{new_amount} {tax_rate_text}",
+ "Mz7S25": "Add or upload files here",
+ "Mz9rP+": "The following modifications include:",
+ "MzFQGT": "Protect and monitor your team\u2019s content",
+ "MzSzG7": "Continue",
+ "Mziuid": "Remember that only admins will be able to sign in with a password and we\u2019ll send members an email explaining how to sign in. Preview email",
+ "N+9tRd": "Please try sending your files again.",
+ "N+LihQ": "Your account will be merged into the {team_name} Dropbox account, where you\u2019ll have\na private area for your stuff. {team_name} admins will be able to manage your files and Paper docs. {team_name}\nhasn\u2019t enabled Smart Sync, so new files will be downloaded to your hard drive.",
+ "N/UwFI": "Details",
+ "N/XfAJ": "Note: If you just want to stop using Smart Sync, you can set files to local instead.",
+ "N/wIcm": "What is Dropbox Plus?",
+ "N0ElEH": "Suggested location: {folder}",
+ "N0UlEH": "Request cancelled",
+ "N0ZK+y": "You don\u2019t have access to this content.",
+ "N0m/ev": "Thanks for letting us know!",
+ "N0sqGP": "Let us help you keep your family\u2019s digital life organised. Keep Google Docs, passwords, videos, PDFs and more \u2013 no matter what you need to store.",
+ "N17iij": "Set clear product direction",
+ "N1Rr3E": "Disconnect account",
+ "N1WvGk": "Show me:",
+ "N24IeC": "A personal customer story and their experience with Dropbox",
+ "N2Sbn0": "Last edited by {createdUserName} ({creatingUserEmail}) on {creationTime}",
+ "N2hH/9": "Could not find the selected team. Please refresh the page and try again.",
+ "N2rRRj": "Members",
+ "N2zSVO": "Edit permissions",
+ "N3BbNY": "or log in with Dropbox credentials",
+ "N3E0i0": "Thanks for verifying your email address: {email}. Now you can invite members to your team.",
+ "N3Jnns": "To",
+ "N3NvXm": "Updating\u2026",
+ "N3ZFxq": "We\u2019re sorry you\u2019re thinking of leaving. Would you mind telling us why? We might be able to help.",
+ "N3qfwO": "Security keys",
+ "N3yfmI": "Connect apps to Dropbox",
+ "N42N8g": "They\u2019ve asked to join your team to collaborate with their colleagues.",
+ "N42rGO": "Removing you from {sharedFolderName}\u2026",
+ "N4ec+j": "To add this folder, remove some files or ask your admin for more space.",
+ "N4rDe0": "{count, plural, one {Copy {count} item to\u2026} other {Copy {count} items to\u2026}}",
+ "N4y79U": "Learn more",
+ "N5+K9w": "Cannot upload empty folder.",
+ "N5Byoz": "Dropbox Preview",
+ "N5ZbKv": "You changed the file settings",
+ "N5jcZx": "{name} added this file",
+ "N66FnB": "Shows alert again",
+ "N6BsJQ": "Invitation message",
+ "N6QhAL": "Licences that have not been used out of those you\u2019ve purchased",
+ "N6T0iv": "Start a product spec",
+ "N6VYNm": "Discard this policy?",
+ "N6nSN1": "Click 'Open with' and select Vimeo to play video files.",
+ "N6rIy+": "Automatically add people with an {listOfDomains} email who ask to join",
+ "N7+DBL": "If you continue, you won\u2019t be able to access this file any more.",
+ "N86Xdn": "This helps us suggest better ways to use Dropbox.",
+ "N8UTfi": "Your team is part of an organisation",
+ "N8asgh": "Show older history",
+ "N8dODn": "Dropbox Spaces",
+ "N8ovVA": "Add to Dropbox",
+ "N8zxbH": "Turn off Paper",
+ "N95PRm": "Cancel",
+ "N9K17w": "and {extra} more",
+ "N9Moi6": "in {location}",
+ "N9Z2ZF": "Help with sharing",
+ "N9mrM1": "Make owner",
+ "NAES7J": "View next slide",
+ "NBGO8l": "Who can view, download or edit a showcase?",
+ "NBq5Ly": "Are you sure you want to permanently delete the {folder_name} team folder? This can\u2019t be undone.",
+ "NBtBZk": "{days, plural, one {Retention: {days} day since last activity} other {Retention: {days} days since last activity}}",
+ "NCBimA": "Cancel request",
+ "NCPpB8": "{price} per month",
+ "NCQATi": "Couldn\u2019t remove members. Try removing them again.",
+ "NCTASm": "Cannot unapprove an active campaign",
+ "NCTtwj": "Confirmation",
+ "NCUEyp": "Doc scanner overview",
+ "NCYx6w": "Compare all features",
+ "NCdpWv": "Verification email sent successfully.",
+ "NCmJZQ": "Changes are being made to your account.",
+ "NCnmwu": "deleted image",
+ "ND8Am/": "Add from Dropbox",
+ "NDGMY8": "They'll no longer be able to do things like manage, delete or access team folders automatically.",
+ "NDHu7t": "Only you will have access to this folder unless you share it.",
+ "NE2IZo": "Discover",
+ "NEH57K": "Deleting link to {name}...",
+ "NFDAf6": "Explore plan options",
+ "NFN/LH": "Connect apps",
+ "NFUNt+": "Why did you select this rating?",
+ "NFa8tv": "Do later",
+ "NFcU7V": "To close a request, click \u2018Edit\u2019 on your request and choose \u2018Close request\u2019.",
+ "NFdReE": "\u201cSecretary\u201d",
+ "NG4N9K": "Delete invitation",
+ "NG5gR6": "Dropbox Paper is more than a doc \u2013 it\u2019s a co-editing tool that brings creation and coordination together in one place.",
+ "NGE4jh": "Couldn\u2019t cancel request. Try refreshing the page.",
+ "NGvrFm": "What type of question do you have?",
+ "NHPru6": "Settings for \u201c{file_or_folder_name}\u201d",
+ "NHrOTw": "Which members should be able to override the default space limits?",
+ "NI05xo": "Did you mean {suggested_email}?",
+ "NI7W3i": "{count, plural, one {{familyPlan} includes the same features as Dropbox {currentPlan} (your current plan) for {count} member.} other {{familyPlan} includes the same features as Dropbox {currentPlan} (your current plan) for up to {count} members.}}",
+ "NIcDB+": "Or text me the link",
+ "NIm51y": "Show sidebar",
+ "NItAlv": "Get the secure file sharing and storage solution that employees love and IT admins trust.",
+ "NJ58AN": "Learn more about our customers",
+ "NJfRuf": "Add admin role",
+ "NKCi3N": "Fired",
+ "NKLNkw": "Heads up \u2013 {DROPBOX_VAULT} isn\u2019t available for {BUSINESS} customers. If you combine accounts, your vault will become a regular folder that\u2019s managed by your admin.",
+ "NKOHGK": "Choose this if you can edit your website\u2019s homepage",
+ "NKrFJv": "Check retention policies",
+ "NL8ygk": "Subject",
+ "NLObc3": "Do you want to delete content from this member\u2019s devices next time they come online?",
+ "NM+/2b": "deleted link",
+ "NM+qbp": "You added this file to Trello",
+ "NM3Ph0": "A secure, distributed infrastructure \u2013 plus admin tools for control and visibility \u2013 keeps your company\u2019s data safe on Dropbox.",
+ "NMGaUE": "Choose how to get your security codes.",
+ "NMgI0K": "News",
+ "NMwC0C": "Use this to configure network control. Contact your Dropbox account team for help.",
+ "NNIdHn": "Information technology",
+ "NNMtrd": "You\u2019re logged in to your personal account,",
+ "NNi2D+": "Hide",
+ "NO+O12": "It looks as though you have already added that file...",
+ "NONzBb": "All devices will be removed and disconnected",
+ "NP+tHg": "Unapprove campaign",
+ "NP3TWl": "That person isn\u2019t a member of this hold",
+ "NP7zf1": "{count, plural, one {Members invited. You can invite {count} more member before you need to upgrade to Dropbox Business. Upgrade now.} other {Members invited. You can invite {count} more members before you need to upgrade to Dropbox Business. Upgrade now.}}",
+ "NPbRsP": "Value / Answer / Destination",
+ "NPxYv8": "Create a to-do and assign it @someone",
+ "NQ2nV+": "on desktop",
+ "NQBN29": "I found {current_plan} too expensive",
+ "NQS3dU": "Delete all\u2026",
+ "NQmRjS": "Cancel",
+ "NQu9yB": "Enter a new email address for your personal Dropbox.",
+ "NQz5Zf": "You edited {time}",
+ "NREZaY": "Save",
+ "NSIXOx": "We couldn\u2019t complete this operation. Please refresh the page and try again.",
+ "NSgn8u": "Their team\u2019s content will be moved into your team\u2019s account",
+ "NSh6z9": "Can\u2019t merge into another team",
+ "NSzzON": "Cannot change role. That team no longer has full use of {trademark_business} features.",
+ "NT9CTo": "We\u2019ll replace this folder\u2019s current policy.",
+ "NTVGSt": "Keep your devices safe and under control.",
+ "NToeR9": "Lecturers",
+ "NUBTGs": "Restoring files...",
+ "NUJ457": "We\u2019ve transferred your files to the {team_name} Dropbox account. All of your private files are still private.",
+ "NUbwLd": "To free up hard drive space, right-click on a file or folder, go to Smart Sync and choose Online only.",
+ "NUcf5C": "Works with {collaborator} a lot",
+ "NVFZOB": "Next page",
+ "NVQ5BV": "Keep tabs on them from this page",
+ "NVoAWy": "Over invitation limit",
+ "NVqTLL": "{num_invites}/{max_invites} invitation left",
+ "NW1XKf": "Contact sales",
+ "NWHfg0": "Start date",
+ "NWSH7+": "Your trial will end on {trial_end}. If you downgrade, your team will lose the additional space it\u2019s been using, and your active team members will return to their initial space quota.{br}{br}If you want to keep using {trademark_business}, it only takes a few minutes to add your billing information.",
+ "NWUTmz": "Please verify your account email address so we can share files.",
+ "NWoZK3": "1",
+ "NWv/3R": "\u2318",
+ "NXVe8W": "Close modal",
+ "NXXPcB": "Learn more",
+ "NXudQj": "Add people outside of your team who members can share files and folders with.",
+ "NY7/41": "Invited {email}",
+ "NYpPqO": "Settings",
+ "NYuVLU": "Contact support to change plan",
+ "NYv8Vp": "Rename",
+ "NZHWyW": "Back up computers{br}automatically",
+ "NZVpaY": "for 1 year",
+ "NZo2jD": "Your team has been deactivated. If you would like to manage your subscription, please renew your account.",
+ "NZzEL+": "A browser security setting may be the problem. In your browser, go to Preferences > Privacy and untick the 'Prevent cross-site tracking' option. Then refresh the page.",
+ "Naoobk": "You restored a previous version of {single_item_name}",
+ "NbJYeD": "You won\u2019t be charged now for adding new licences. If you don\u2019t cancel before your {trademark_business} trial ends, your new total cost of {recurring_amount_including_tax} {per_period_text} will be applied on {next_billing_date_string}.",
+ "NcWgmD": "Media / Entertainment",
+ "NcthYc": "left arrow",
+ "Ncw9cm": "Redeemed",
+ "Nd85dl": "Starred",
+ "Ne60JG": "Try it now",
+ "NeW8sZ": "You moved {item_name}",
+ "NeccKf": "Unarchive",
+ "Nexiwd": "{firstName} will be notified that you downloaded these files",
+ "NeyT92": "Can\u2019t show content because it is password protected.",
+ "NfgkYn": "You don\u2019t have any notifications yet.",
+ "NfzmC+": "personal",
+ "Ng8c6M": "{count, plural, one {{count} closed ticket} other {{count} closed tickets}}",
+ "NgTcxb": "Actions such as move, edit, rename or restore.",
+ "Nghsi/": "{value, plural, one {for {value,number} hr} other {for {value,number} hrs}}",
+ "NgjtUN": "Copy link",
+ "NhIjmX": "Sign out link",
+ "NhIxxD": "Make a copy",
+ "NhUbjO": "when billed yearly",
+ "Nhp2g3": "The tour teaches you the Dropbox basics.",
+ "NhtmWc": "Continue",
+ "NiMCaD": "You do not have access to update files in this folder.",
+ "Nihsyw": "since {monthAbbreviation} {year}",
+ "NiwHhT": "Link code copied to clipboard",
+ "NjAmgH": "Move tabs view to the left",
+ "Njd630": "Descending",
+ "NjmLLk": "Upgrade to {trademark_plus}",
+ "NkSgcX": "Basic",
+ "NkhP8O": "{count} comments",
+ "NkyguJ": "Make {name} a manager?",
+ "NljqhE": "With {space} of space and team folders, your team can keep work projects in one place, so you\u2019re always on the same page.",
+ "Nlpjot": "Start brainstorming",
+ "NmIVk8": "Dropbox keyboard shortcuts",
+ "NmN5oD": "Link URL",
+ "NmWNM0": "Your Dropbox account has over {max_files,number} files.",
+ "NmXa3c": "{folderCount, plural, one {{folderCount,number} folder} other {{folderCount,number} folders}}",
+ "NnFH3B": "You\u2019ve selected the {choice} plan, effective {date} for {total}{tax_string}{billing_schedule}.",
+ "NnancA": "To the extent required by law, Dropbox will make its internal practices, books and records concerning the use and disclosure of PHI received from the Customer, or created or received by Dropbox on behalf of the Customer, available to the Secretary for the purpose of the Secretary determining compliance with this HIPAA BAA.",
+ "Nnbt/j": "1 session",
+ "NncM6z": "Cancel",
+ "NoCg9B": "{count, plural, one {Try Professional free for {count,number} day} other {Try Professional free for {count,number} days}}",
+ "NoSBXU": "Sixth highest activity",
+ "NoV3Co": "Share",
+ "NoXMQk": "{count, plural, one {Base package ({count} user)} other {Base package ({count} users)}}",
+ "Nob0wT": "See and adjust their settings in one place",
+ "Np4B00": "This download is empty",
+ "NpB8sp": "{intended_recipient} was given access, but you\u2019re signed in as {user_email} and {user2_email}.",
+ "NpPBjp": "Leaving \u201c{group_name}\u201d will cause you to lose access to folders that have been shared with the group.It might take a little while to remove you from all of the group\u2019s shared folders.Are you sure you want to leave the group?",
+ "NpqbWT": "Uninvite",
+ "NpsjeY": "upload processing error",
+ "NqCAew": "You won\u2019t get an alert if a member makes too many unsuccessful sign-in attempts.",
+ "NqCfwG": "Renamed 1 item.",
+ "NqYdzS": "Moving folders",
+ "NrJSjr": "Congratulations!",
+ "Ns68t5": "or purchase {trademark_business} now.",
+ "NsQt0k": "+ extended version history",
+ "Nsg834": "{count, plural, one {Wrong PIN. Please try again. {count} attempt left.} other {Wrong PIN. Please try again. {count} attempts left.}}",
+ "NtKu8x": "Now add your personal Dropbox",
+ "Ntdwnu": "Invite members",
+ "NtvEm+": "Loading prices...",
+ "Nu/rnN": "The Dropbox mobile app makes it easy to upload photos and browse files on the go.",
+ "Nu71w8": "Exception list",
+ "NuExA/": "Access vault",
+ "Nujd0t": "Invoice ID",
+ "NupPFJ": "White",
+ "Nv5y/t": "{name} turned on commenting for {entity}",
+ "Nv8qgA": "Type notes, lists, to-dos and links here",
+ "NvAM7e": "We\u2019ll send a security code to this phone number whenever you sign in to the Dropbox website or link a new device.",
+ "NvBP0X": "You are about to follow {folderName}.",
+ "NvTnE8": "Upcoming invoice",
+ "NvnIZx": "This is not an invoice. No additional payment is required.",
+ "NvnYTR": "System extension installed. Your team will be able to use Smart Sync soon.",
+ "NwET3R": "New campaign name",
+ "NwgHCI": "This setup takes about 5 minutes.",
+ "Nwm5fv": "You\u2019ve lost access to this feature.",
+ "NwqsgR": "You\u2019ll create a new, personal Dropbox account for your existing files and Paper docs.\nThis will give you two accounts \u2013 your {work_email} account for {team_name} work and a new\npersonal account for your existing files.\n{team_name} has disabled Smart Sync, so you\u2019ll be signed out of Dropbox and online-only files will be\ndownloaded to your hard drive next time you sign in.",
+ "Nx+GgG": "The copies of any files held for these members were released",
+ "Nx/CjN": "Unable to communicate with the parent window",
+ "Nx5qLe": "Is this related to a cancellation?",
+ "NxT6xK": "You can add your business address to your account. Email us.",
+ "NxbWQm": "Unknown error.",
+ "NxypHv": "Allowed",
+ "NySkqb": "Continue",
+ "NyU163": "User management admin",
+ "NzS/z7": "Margins",
+ "O+09zl": "Also remove the {folder} folder from my Dropbox.",
+ "O+4GQg": "Continue with {advanced_plan}",
+ "O/A0V6": "Notarise",
+ "O/qGMq": "EXPORTS",
+ "O0BGWD": "There are no pending requests.",
+ "O0cs6d": "Re-add shared folder",
+ "O0fS0p": "{trademark_plus}",
+ "O10Rri": "From date",
+ "O1327M": "You don\u2019t have permission to share with this person.",
+ "O155EY": "Set up whether or not you would like to archive or remove synced labels when a task is completed.",
+ "O1Os1s": "Got it",
+ "O1Rhla": "Team Space",
+ "O1TK29": "Add identity provider sign-out URL",
+ "O1WB5s": "You\u2019re already adding this extension in a different tab or window.",
+ "O1dqUh": "Unlimited storage space",
+ "O1pSr5": "Turn on capture for all users?",
+ "O2P4yU": "3 sessions",
+ "O2aovx": "Link for viewing",
+ "O2g73l": "Invite people, remove members and customise your work Dropbox here.",
+ "O2x34C": "\u2013",
+ "O3imHf": "Click 'Open with' and select airSlate PDFFiller to open PDFs.",
+ "O3t22Y": "{count, plural, one {Pasting {count} item...} other {Pasting {count} items...}}",
+ "O4CWz2": "You don\u2019t have permission to share this folder",
+ "O4kD9g": "The Customer may immediately terminate this HIPAA BAA and the Agreement with ten days written notice to Dropbox if Dropbox has materially breached this HIPAA BAA and this Breach is not reasonably capable of being cured.",
+ "O4leSN": "This folder has been unshared successfully.",
+ "O4sXJn": "Refresh",
+ "O4zHuE": "Set up your team",
+ "O519Y0": "When ready, share video files without comments or distractions.",
+ "O5Qcg3": "Advanced user management",
+ "O5SEBi": "Abandon changes?",
+ "O5uhol": "Editing",
+ "O61MZm": "Smart Sync will be enabled for your team soon.{br}{br}\n Choose how new files will be downloaded to your team\u2019s computers once Smart Sync has been enabled.\n Members will be able to change this setting.",
+ "O7/lCv": "Due to browser limitations, OSX package files cannot be uploaded using drag and drop. Please try using the \u201cUpload\u2026\u201c dialogue.",
+ "O7A3yo": "Update email address",
+ "O7BCIr": "You\u2019ve asked for too many SMS messages. Please try again in a few minutes.",
+ "O7CH0I": "Move undone.",
+ "O7CY5l": "File name, path and type",
+ "O8AXV+": "Add more licences",
+ "O8HeNC": "Team members will be allowed to connect to all apps by default.",
+ "O8I0Gn": "Change admin permissions",
+ "O8Naoq": "Processing requests...",
+ "O95qsf": "Find answers quickly. Create a repository of how-to articles and troubleshooting information so everyone can easily search for and access what they need.",
+ "O99+Er": "Remote wipe",
+ "O9Jkty": "Done",
+ "O9dNgg": "Recent searches",
+ "OA+88i": "Team admin",
+ "OADU7S": "Delete\u2026",
+ "OB88jc": "Dropbox Passwords",
+ "OBuYzb": "Works on multiple platforms",
+ "OC4T38": "Tidy up",
+ "OCOC9k": "Continue to Dropbox",
+ "OCb7Mh": "We need to rename your Dropbox folder",
+ "OCdQsd": "Add members to \u201c{group_name}\u201d",
+ "OD1MtT": "Members shown here can see these files",
+ "ODdavd": "Dropbox core features",
+ "OEENLu": "Choose this if you can edit your website\u2019s DNS records",
+ "OEFgbn": "We don\u2019t recognise that email address",
+ "OEKMzc": "Welcome to our beta experience",
+ "OEKxnB": "Email customer support",
+ "OExDRE": "Cancel",
+ "OF0915": "Sign in to Dropbox to continue",
+ "OFKXCT": "Please enter all characters of your user code",
+ "OFYmCJ": "Overview",
+ "OFgJ+q": "Viewer info",
+ "OG4MbM": "{count} videos. {duration} total, {size}",
+ "OGP7zL": "Or continue to website",
+ "OGgkeh": "Who should manage this group?",
+ "OGx/sB": "Manage sharing permissions",
+ "OHbXbJ": "deleted file",
+ "OHjjej": "{index} of {total}",
+ "OIN73X": "Create a report of active mobile app logins split by regular and EMM app usage.",
+ "OIhm4f": "To keep your vault secure, you have to wait 48 hours after resetting your Dropbox password to reset your vault PIN.",
+ "OJ+o7N": "Request closed. People can no longer upload files.",
+ "OJ7q+4": "Admin \u2022 {team_name}",
+ "OJ9Y5C": "Personal",
+ "OJBfwL": "Device still counts towards the limits until an admin removes the device",
+ "OJDO+R": "Second highest activity",
+ "OLMpMV": "Send email",
+ "OLVDIw": "Next: Organise",
+ "OLtEJk": "Your stuff is safe",
+ "OM+iN6": "While licences are available, members can join via this link until {expiration_date_time}.",
+ "OMQnle": "Can\u2019t add a {record_type} record?",
+ "ON/b0t": "{count, plural, one {{name} deleted {count} item in {folder_path}} other {{name} deleted {count} items in {folder_path}}}",
+ "ON/qTD": "Completed {date,date,::MMMMdyyyy}",
+ "ON2oaH": "Bottom left",
+ "ONHPlw": "Paper doc",
+ "ONJQst": "Open Gmail",
+ "ONLlhD": "Your team will lose {trademark_business} on {trial_end}",
+ "ONU27Q": "sRGB",
+ "ONiz97": "People with access to {fileName}",
+ "ONtN0I": "Continue as {real_name}",
+ "ONvAGg": "The account will be disconnected from the team and converted to an individual account",
+ "OOXAdE": "Take your teamwork to the next level. Get {space} of space for all of your content.\n Powerful sharing features make it easy to create, share and work together.",
+ "OOeNI+": "Try {plan} for {space} of storage",
+ "OOlP8f": "Select the types of files",
+ "OP+/xy": "Access all of your files from your desktop, without taking up all of your hard drive space.",
+ "OP5B1a": "Bring together colleagues and work projects{br}in one centrally managed place",
+ "OPZM3Q": "Could not reach service",
+ "OPfmxc": "On your computer, go to: {url}",
+ "OPn00e": "Sign out button",
+ "OQ+zMT": "Please enter your first name",
+ "OQCtBW": "Close",
+ "OQQdKv": "Get started",
+ "OQRgv6": "{count, plural, one {You need {count} more licence to import everyone in the CSV. Contact your Dropbox representative to buy more licences.} other {You need {count} more licences to import everyone in the CSV. Contact your Dropbox representative to buy more licences.}}",
+ "OQUTbS": "Free up your hard drive space with Smart Sync",
+ "OQqht6": "Here are a few people you already work with that could help you get started.",
+ "OR7k9Y": "Link creator email",
+ "OR8NN3": "Want {trademark_business} back?",
+ "ORB1Kv": "See other plans",
+ "ORTRPA": "Leave team and log out",
+ "ORosDx": "You work with more than just words. So does Paper",
+ "ORvNm9": "Paste selected file(s) into the current folder",
+ "OSMZBg": "Can I buy more Dropbox storage space?",
+ "OSqOkI": "Please enter the cardholder name.",
+ "OTHFTR": "{name} will be notified that you\u2019ve signed in to {assume_name}\u2019s account.",
+ "OTPvT6": "Contacts",
+ "OU6O6t": "There was an error completing this action.",
+ "OULVEB": "reload this page",
+ "OUUNz7": "I agree to the Dropbox Terms and the Automatic Renewal Terms above",
+ "OUuuss": "Monitor activity",
+ "OUyDaO": "{dropbox_trial_plan_name} trial",
+ "OVUDyw": "We were unable to process your payment. Double-check the payment info and try again. If that doesn't work, try another payment method or contact your bank",
+ "OWOu9T": "{userFirstName} can edit, delete, comment and add the files to their Dropbox",
+ "OWyiUl": "Put files in your Dropbox folder",
+ "OX5PaW": "Easily create shared spaces for photos, videos, docs and more",
+ "OXWpDh": "Margins",
+ "OXfp6E": "There was an error adding the billing period.",
+ "OXjubu": "The Google Directory integration is turned off.",
+ "OYPjNT": "Keep stuff here that you don\u2019t want to share with everyone.",
+ "OYVZbq": "This transfer is large ({size})",
+ "OYxS0q": "Add new",
+ "OZMzfd": "Do you have any discounts for {trademark_business} and Dropbox {enterprise_plan_name}?",
+ "Oa/2oK": "Describe briefly what this Prompt campaign is for.",
+ "OaAlGW": "View the guide",
+ "OaXqC3": "{maxRewindDays}-day history",
+ "Ob69jI": "Recruitment doc",
+ "ObIEGE": "Choose files or just drag stuff here",
+ "Obnnr1": "Choose any file as a preview image, or add more files",
+ "OcwzuU": "Your {team} Dropbox uses single sign-on. If you change your email address you may not be able to sign in.",
+ "OdBFOF": "Join the team automatically (default)",
+ "OdSVd7": "Other people",
+ "OdkQ53": "Do you permit these modifications to be made to your account?",
+ "Oe2LfB": "An administrator at {teamName} has given\n these apps access to your {teamName} Dropbox account.",
+ "Oe5koB": "Choose what to include. You will receive zip files with the content according to your selection:",
+ "OeOpuZ": "We'll send a link to:",
+ "OefYpa": "Renaming\u2026",
+ "Oepnv4": "IT",
+ "OeqZRS": "Loading",
+ "Of11Oh": "Upgrade plan",
+ "OfWQLS": "Reset password icon",
+ "Ofo1Y4": "This account\u2019s {plan} plan will be renewed on {date}. {billing_summary}",
+ "OfxyEk": "Undo",
+ "OgIvny": "Extension added.",
+ "OgNBqT": "Zoom to fit",
+ "OgSWgf": "We\u2019ll keep track of anyone you invite and add them to your next billing cycle",
+ "Ogftr0": "Choose if your members often access files offline. Local files download to members\u2019 hard drives.",
+ "OgxCD1": "If you can\u2019t find an answer, please submit the help request form below.",
+ "Oh0wdv": "You can share files and folders with anyone you like, including people without Dropbox accounts for file storage. Simply send them a shared link to the file or folder via email, chat or text.",
+ "OhBKpA": "Get a quick view of your next meeting",
+ "OhU3GK": "Only {name} will be able to unshare this folder or change the folder settings.",
+ "Oheq5u": "Need to send more than {file_size_limit}? Upgrade to the {premium_product_name} plan to send up to {premium_file_size_limit} per transfer for as little as {plan_price}.",
+ "Oi1tCv": "Tell us what you liked and didn\u2019t like about Dropbox Markup.",
+ "OiaK8U": "{price}/user/month",
+ "OjPwUp": "That doesn\u2019t look right. Please double check that it\u2019s been typed correctly.",
+ "OjQiV/": "
If you\u2019re a team admin and you\u2019re currently subscribed to a Dropbox Business plan, you can cancel your Dropbox Business account and downgrade to a free Dropbox Basic plan immediately without the assistance of an agent.
If you\u2019re a team member, please contact your team admin.
",
+ "Ok6IAW": "Create new label named",
+ "OksEV/": "Creating report. We\u2019ll email you when it\u2019s ready.",
+ "OkuYQL": "Team members can suggest other colleagues to invite",
+ "OlAriH": "Here\u2019s your unique email address",
+ "OlLOeA": ".",
+ "OlZHQn": "This link allows editing. Now copy and share it.{br}{copiedUrlDisplay}",
+ "Olh9S5": "An idea for improving App Centre",
+ "OliUn4": "Add email addresses of required signatories and click 'Send'.",
+ "OlmKiV": "{count, plural, one {and {count} more\u2026} other {and {count} more\u2026}}",
+ "Om3b8J": "{remainder, plural, =0{{adminName}} one{{adminName} + {remainder} more} few{{adminName} + {remainder} more} other{{adminName} + {remainder} more}}",
+ "OmDyAr": "Adjust individual settings or manage content as if you were an admin in that team.",
+ "OmxUNA": "Viewed {timeAgo} on mobile",
+ "On2XZ7": "Item",
+ "OnylHi": "{current_plan_space} of space",
+ "OocP1o": "Invite friends and family to Dropbox!",
+ "OosHNs": "Use at least 8 characters, and make sure it's four bars strong",
+ "OpkK4e": "You and your family will be downgraded to {dropbox_basic} and you\u2019ll lose access to the plan\u2019s storage and features, and the Family Room folder.",
+ "Opr8C4": "blue",
+ "OrpLrY": "{count, plural, one {Anyone with this link can view the folder. Expires in {count} day. Downloads disabled.} other {Anyone with this link can view the folder. Expires in {count} days. Downloads disabled.}}",
+ "OrtsOb": "Locked on",
+ "Os0dR9": "Back",
+ "OsnO9g": "Loading user information",
+ "OtHWaT": "Members can share with anyone",
+ "OtHjAe": "Remove trusted contact?",
+ "OtZGgm": "{count, plural, one {Some invitations have been sent. Fix any issues, then try the last {count} again.} other {Some invitations have been sent. Fix any issues, then try the last {count} again.}}",
+ "Otbtb3": "Name of your brand",
+ "Otf/f5": "Open PDFs",
+ "Otg1Lv": "Your Dropbox account space",
+ "Our+01": "We were unable to invalidate the remote web session. Please try again.",
+ "OvA3wS": "Open in app",
+ "OvEApa": "Creating edit link...",
+ "OvXIzH": "Existing transfers created by people in your team will no longer work.",
+ "OvqzYc": "Trusted by over 600 million users and 500,000 teams",
+ "OwA6SJ": "{count, plural, one {{count} item} other {{count} items}}",
+ "OwM/TA": "Save and continue",
+ "OwOF5Q": "Unknown",
+ "OwbJue": "Zoom integration",
+ "OwjUWl": "Auto-PDF",
+ "Owrqe1": "Dropbox needs to verify your email address {email} before you can open or create this document type. It\u2019s as simple as clicking the link in the verification email we send you.",
+ "OwyHDD": "Your team is losing the additional space it\u2019s been using, and you and your team members have returned to your initial space quotas.",
+ "Ox/AiR": "It looks as though the account for {email} is no longer active. You can still invite them to your team using a different email address.",
+ "Ox2/TQ": "Deleted Paper template",
+ "Ox5dUX": "Centrally organised",
+ "OxD4LC": "How to use Dropbox in Outlook",
+ "OxDNvg": "Email address",
+ "OxPMei": "New PIN can\u2019t be the same as the current PIN",
+ "OxYdku": "Paper is a free product from Dropbox",
+ "OxnC7Q": "Cancel {trademark_business} and disband my team",
+ "OyZpYC": "Update billing information",
+ "OzYUpO": "Empower your product team from prototype to launch \u2013 plan product roadmaps, define requirements and track milestones \u2013 all in one place.",
+ "P+XAua": "Name",
+ "P+eLkO": "Member already exists in the group.",
+ "P/IvMW": "Settings",
+ "P/dkL3": "{count, plural, one {As a member of the parent folder listed below, {member_name} can still access \u201c{content_name}\u201d.} other {As a member of the parent folders listed below, {member_name} can still access \u201c{content_name}\u201d.}}",
+ "P/uBH5": "About us",
+ "P04P4t": "details input",
+ "P09UfX": "Create an account",
+ "P0gVhK": "You shared this file with {entity}",
+ "P1B38C": "Your billing instrument owner has left the team.",
+ "P1K02u": "Marketing",
+ "P1PU7P": "Forgotten password?",
+ "P1VH2B": "Ask to join",
+ "P20fk8": "Rename \u201c{team_folder_name}\u201d team folder",
+ "P24vQI": "Upgrade to {trademark_business} Advanced to unlock SSO",
+ "P28eHo": "Last recovery time",
+ "P2LnMx": "Transfer created",
+ "P2YFKh": "From",
+ "P2lPuL": "Personal photo",
+ "P32cOy": "",
+ "P3A6lo": "Task assigned to {assignee}",
+ "P3TVFG": "{count, plural, one {You no longer have access to {filename} and {count} more item. You can\u2019t make any changes to them, but you can hide them from your view. Hiding folders won\u2019t free up space.} other {You no longer have access to {filename} and {count} more items. You can\u2019t make any changes to them, but you can hide them from your view. Hiding folders won\u2019t free up space.}}",
+ "P4Qlll": "Existing",
+ "P50ARm": "I already have a personal Dropbox. ",
+ "P5UC5r": "Working individually",
+ "P63UMO": "{width} x {height}",
+ "P6CB9z": "You selected",
+ "P6MDB7": "On, return not detected",
+ "P6bMr9": "Dropbox will notify the Customer promptly following the discovery of a Breach resulting in the unauthorised use or disclosure of PHI in violation of this HIPAA BAA, including a Breach of Unsecured PHI or a Security Incident (as defined in HIPAA) (subject to Section 4.3 below): (a) in the most expedient time possible under the circumstances; (b) consistent with the legitimate needs of applicable law enforcement and applicable laws; and (c) after taking any measures necessary to determine the scope of the Breach and to restore the reasonable integrity of the Services. Dropbox will use commercially reasonable efforts to mitigate any further harmful effects to the extent practicable.",
+ "P6oJRK": "We do this if you\u2019re inactive for 20 minutes to keep your vault extra secure.",
+ "P6qA0B": "Delete link",
+ "P6xthG": "Sign in to link your personal Dropbox",
+ "P7HZjI": "{teamUserQuotaUsed} by you",
+ "P7deO/": "Reset password",
+ "P7oHCQ": "Copy\u2026",
+ "P7t+8/": "Make a copy",
+ "P7zSWW": "Files extracted.",
+ "P83QkT": "Turned off download notifications for this transfer",
+ "P8HBHs": "Checking CSV for errors\u2026",
+ "P8Mgv7": "Set a deadline",
+ "P8lC1N": "Easily send large files to your clients and collaborators for a low monthly price \u2013 only pay for what you need.",
+ "P9Va6D": "Couldn't send invitation. You don't have enough licences.",
+ "P9d3A/": "Add your company logo to files and folders that team members share.",
+ "P9kJMW": "You\u2019ll get everything in Basic, plus more space and features to meet your needs",
+ "PA/fB/": "We were unable to send the email. Please try again.",
+ "PAl3R1": "recommended",
+ "PAlobr": "Get app",
+ "PAub6K": "Mixed state",
+ "PAwgIQ": "Select from your contacts",
+ "PBNiJg": "Share link",
+ "PBlZQX": "FAMILY ROOM FOLDER",
+ "PBtB8Z": "Third highest activity",
+ "PCBt4J": "{count, plural, one {{count} member folder needs attention} other {{count} member folders need attention}}",
+ "PDAM7o": "Names or email addresses",
+ "PDcSBk": "Team credit",
+ "PDf7V0": "to view your team settings.",
+ "PDtG7K": "Something went wrong. We\u2019re working on it.",
+ "PEHHTL": "Member won\u2019t have access to team-owned folders, and any file transfers they created will be deleted",
+ "PEIYLr": "Document watermarking",
+ "PEgSVc": "Invalid code. Check the clock on your phone: it must be accurate to the minute.",
+ "PEwYAD": "Links with no password",
+ "PF5/Db": "up arrow image",
+ "PF5dGC": "How many people are part of your company or organisation?",
+ "PFG0iF": "The easiest way to sell and deliver content to your audience, wherever they are.",
+ "PFIGmO": "Title",
+ "PFKBNP": "To keep {trademark_business}, add your billing info now.",
+ "PFbaDU": "Let\u2019s create your new personal account",
+ "PFhg9W": "DOC, DOCX, TXT and more",
+ "PG/NFZ": "Password",
+ "PG3Gmt": "Let members customise branded sharing settings for their own files and folders.",
+ "PGzdyw": "Description",
+ "PH6K5f": "{count, plural, one {{count,number} email isn\u2019t formatted quite right: {emails}} other {{count,number} emails aren\u2019t formatted quite right: {emails}}}",
+ "PHH9jg": "It shows shared links, files and folders that have been shared directly outside your team:",
+ "PHRYz8": "Your changes weren\u2019t saved because you and {user} are editing at the same time.",
+ "PHXhTB": "Profile picture",
+ "PHaeBQ": "Get a better view with our mobile app",
+ "PHsPd8": "Open",
+ "PIl5L5": "Logo added.",
+ "PItzXQ": "Dropbox password",
+ "PJ4sk8": "Get Rewind",
+ "PJ73DL": "Document password modal",
+ "PJQlMg": "Organise and track work from start to finish. Help your team stay updated on who\u2019s doing what and when with timelines, to-do lists and task assignments.",
+ "PJd4si": "Please choose a time in the future.",
+ "PJfssY": "Premium features and advanced sharing tools that help you impress clients and streamline work.",
+ "PKNU0b": "ICC profile",
+ "PL4zXJ": "Edit their files and folders",
+ "PL5ta5": "Restore",
+ "PLAAYq": "Drop your files to {upload_action}",
+ "PLJiGa": "Something went wrong while previewing this file.",
+ "PM6K+P": "Can\u2019t save changes.",
+ "PMHVpC": "Settings",
+ "PMI4xl": "Ask to unlock",
+ "PMSOip": "There was an error changing the plan.",
+ "PMavJn": "Contact us",
+ "PMd9/i": "Content and accident protection",
+ "PMfwbr": "Attach a folder to a card in Trello",
+ "PMobl1": "{name} moved this file",
+ "PMr1lK": "Paper and Slack logo",
+ "PNPChM": "View audit log",
+ "PNVJtD": "Date shared",
+ "PO7S4L": "{count, plural, one {{count} member} other {{count} members}}",
+ "POdy2v": "Other",
+ "POg1eB": "Save",
+ "POz5Yg": "Failed to send message: unknown error.",
+ "PPhTnI": "To see your ticket details, first verify your email address. How to verify your email address",
+ "PPnGE0": "Share folder with {user_name}?",
+ "PQsul4": "All of your Dropbox accounts, just a click away",
+ "PQvHLQ": "Fired, red-eye reduction",
+ "PR4jc3": "View photos",
+ "PR6SPH": "Show examples",
+ "PRhWnv": "Set up your team space in the admin console",
+ "PRuNTW": "View in Trello",
+ "PRyQrc": "{count, plural, one {{count,number} hour} other {{count,number} hours}}",
+ "PSIegi": "Markup",
+ "PSJxt4": "Add more files",
+ "PSKrse": "Markup is available on PDFs and images.",
+ "PSWfh4": "On, fired",
+ "PSu1/X": "Accept request to manage this Dropbox team?",
+ "PT+cad": "{count, plural, one {{count} {default_plural_text}} other {{count} {default_plural_text}}}",
+ "PTGTT4": "Adding to your {team_name} Dropbox...",
+ "PU73E/": "Reject the request",
+ "PUEF0A": "To the extent Dropbox uses agents and subcontractors in its performance of obligations hereunder, Dropbox will remain responsible for their performance as if performed by Dropbox itself under the Agreement.",
+ "PUOr+m": "Try {plan} for {space} of storage and premium features",
+ "PUQ8kA": "Couldn\u2019t save watermark. Refresh the page to try again.",
+ "PVls0A": "Cancel",
+ "PVsh9/": "Backup phone number (optional)",
+ "PVw1P4": "This person isn\u2019t in your team",
+ "PWMYmg": "{count} accounts connected",
+ "PWjyhd": "People can view, download and comment",
+ "PWwIFP": "Single sign-on",
+ "PX5Hq1": "Deleted {time_ago} by you",
+ "PXBiMo": "Email this person",
+ "PXwJ3O": "These settings will apply to all folders in \u201c{folder_name}\u201d.",
+ "PY5aIV": "{megabyteSpace} ({gigabyteSpace})",
+ "PYAOBV": "Cancelling your trial changes your account back to a {dropbox_current_plan_name} account.",
+ "PYQBlc": "To edit this overview, ask the folder admin for access",
+ "PYSHWA": "Show files",
+ "PYWplI": "{count, plural, one {Email {count} unmanaged user?} other {Email {count} unmanaged users?}}",
+ "PZ+1D/": "URI scheme must be http or https",
+ "PZ65LR": "Your family manager can invite up to 5 other members, aged 13 and over.",
+ "PZQCFo": "Everyone at {team_name} can view folder name",
+ "PZQMga": "{name} rewound {item_name} to {rollback_date}",
+ "PZwVZ3": "{count, plural, one {Moved {count} item to {team_name}} other {Moved {count} items to {team_name}}}",
+ "Pa7KCD": "{count, plural, one {Members of the file with this link can view. Expires in {count} day.} other {Members of the file with this link can view. Expires in {count} days.}}",
+ "PaAO0M": "Already invited",
+ "PaR0U3": "Skip",
+ "Pb48Th": "I hereby authorise Dropbox International Unlimited Company and its payment service provider, Adyen Client Management, to collect payments from my account via direct debit. At the same time, I instruct my bank to honour the direct debits drawn on my account. Notice: within eight weeks of the debit date, I am entitled to claim a refund of the debited amount. In this case, the terms and conditions agreed with my bank shall apply.",
+ "Pbu/yd": "You\u2019ll be charged for these licences in your next billing cycle",
+ "PcJCVL": "Google Slides",
+ "PcQnIr": "Click 'Open with' and select Vimeo to play video files.",
+ "Pd9zcR": "Learn more with our deployment guide.",
+ "PdDoem": "Move files later",
+ "PdfJvT": "Continue verification",
+ "Pdlwuk": "You can create groups here",
+ "PeWyMD": "Keep everything that\u2019s important to you and your family shareable and safe in one place. Back up files in the cloud, share photos and videos, and more.",
+ "Pet0Vl": "Type",
+ "PfRcC6": "Don\u2019t leave",
+ "PfY41V": "Sorry, an error occurred while retrieving the file.",
+ "PfYbeE": "Account team",
+ "Pfi713": "Admin permission successfully changed",
+ "Pfilk1": "{count, plural, one {Anyone in your Dropbox team with the link and password can view this folder. Expires in {count} day.} other {Anyone in your Dropbox team with the link and password can view this folder. Expires in {count} days.}}",
+ "PgwsPn": "Select an account photo so your friends and colleagues can recognise you around Dropbox.",
+ "PhGbr0": "{count, plural, one {Day} other {Days}}",
+ "PhLzOH": "Category",
+ "PhMkNO": "You have selected multiple files.{line_break}Your photo should be a single file.",
+ "PhOzXb": "Craft guidelines that help everyone create written and visual materials.",
+ "PhUVTN": "Could not create Paper document.",
+ "Pht6fV": "views",
+ "Pi4HRg": "Deleted by {createdUserName} on {creationTime}",
+ "PimhQE": "Completed {date,date,::MMMMd}",
+ "Piygsl": "Do any of these help with storage space?",
+ "PjHKY9": "Up to six members per plan",
+ "PjwOeo": "Close",
+ "PkNdPW": "Processing too many exports at once. Wait for some to finish before creating more.",
+ "PlqqHg": "Have you removed the malicious software from\n {infected_host_name}?",
+ "Plr17F": "Call us",
+ "PmBwPB": "{count, plural, one {{creator_name} sent you {count} item} other {{creator_name} sent you {count} items}}",
+ "PmbScl": "Your Canvas domain",
+ "Pn29Sj": "Hi {user_first_name}! Please verify your email address",
+ "Pn2AMk": "Loading",
+ "PnswIO": "Loading... Your {discount_promo,number,::percent .##} discount.",
+ "PoJI4y": "Price",
+ "PoOvq2": "All events",
+ "PoY43K": "Manually added contacts cleared.",
+ "PogbwQ": "You can work with PDFs and eSign documents with the Nitro for Dropbox extension. No account needed.",
+ "PpN/KN": "Total",
+ "PpNqNP": "Neither satisfied nor dissatisfied",
+ "PpOldx": "Upgrade requests",
+ "PpcUgB": "per licence/year",
+ "PpsiBa": "Surname cannot be longer then 100 characters.",
+ "PpzSQx": "Switching your trial...",
+ "PqIIiR": "View and make changes to your Dropbox content while using these apps outside Dropbox. If you don\u2019t recognise an app, disconnect it.",
+ "PqLAde": "Anyone with this link and password can view the file. Downloads disabled.",
+ "PqiX1h": "Step {index} of 3",
+ "Pr7xk0": "Send reminder",
+ "PrrLa1": "Shared folders you can no longer access",
+ "PrwN21": "Or go to my account",
+ "PrxZ9I": "For which account do you have problems or questions?",
+ "PsDrag": "This group has no members.",
+ "PstX9C": "Cannot find this file.",
+ "PtdLen": "Try different keywords",
+ "PuHPAx": "Accept multi-team admin access?",
+ "PuMMVk": "Share with your family",
+ "PuT77r": "Invite a friend",
+ "PunJ70": "Is this menu helpful?",
+ "Pusc3p": "Start a new team",
+ "Pv4PZq": "Colleagues can find the team",
+ "PwDZzA": "DELETED PAPER TEMPLATE",
+ "PwcTOv": "You\u2019ve been invited to join this family, but you\u2019re already a member of another family. To join, first you will need to leave the other family.",
+ "PwhU88": "Microsoft Office integration",
+ "PwlbGl": "Cancel merge",
+ "PwpLyS": "Switch plan",
+ "Px7V46": "You can cancel or downgrade at any time",
+ "Pxv2Bf": "Close",
+ "Pyjh81": "B",
+ "Pyr6tE": "Reminder sent",
+ "Pz9qz8": "This report will list the details of what\u2019s held, but won\u2019t contain the actual content. If you want to download specific content, create an export",
+ "PzRQP6": "Connect to {app_name}",
+ "PzqQsu": "Add a teammate\u2019s email address",
+ "Q+i9bs": "Removing EVH is permanent",
+ "Q+qYME": "If you did not ask for these changes to be made and suspect someone has gained access to your account, visit our ",
+ "Q/Ystp": "Will I be charged again for the gift after the year expires?",
+ "Q/uvgN": "Review request",
+ "Q09uEI": "No",
+ "Q0Jny+": "Protect company files with extra security",
+ "Q0vYf2": "Admin console and audit log",
+ "Q2RYcj": "Start your free trial",
+ "Q2mX2B": "Shared files ({fileSize})",
+ "Q3/5pg": "File name",
+ "Q3DtWa": "Payments are secured using SSL and client-side encryption.",
+ "Q3N5qr": "",
+ "Q3Sq7i": "To",
+ "Q3c2/b": "Jobs",
+ "Q3xYBV": "Only approved emails are automatically approved",
+ "Q4+hCS": "Identity provider sign-out URL isn\u2019t valid. Double check the URL and try again.",
+ "Q4Jjko": "I agree to the Dropbox Terms{br}\n and the Automatic Renewal Terms above",
+ "Q4fCNj": "Online-only files may appear to take up hard drive space.",
+ "Q4wsJE": "{count, plural, one {Restore any files deleted in the last day} other {Restore any files deleted in the last {count} days}}",
+ "Q5/ZUe": "Advanced",
+ "Q52O3K": "Selected items will be made online only. To download them, you\u2019ll need Internet connection.",
+ "Q5JoRg": "This app is already in the list of exceptions. Select Manage this app to make changes to its permissions.",
+ "Q5eGXD": "American Express",
+ "Q5icG3": "For now, everyone in your team will have access to these folders. Don\u2019t worry, it\u2019s easy to manage who sees what.",
+ "Q6HGJm": "Joined",
+ "Q7DkIp": "{count, plural, one {Drop your file to {upload_action}} other {Drop your files to {upload_action}}}",
+ "Q7c02m": "* You can only use the offer if you received it from Dropbox. Dropbox reserves the right to cancel, suspend and/or modify the offer for any reason, including for fraud, technical limitations and failures, or causes that impact the integrity of the offer.",
+ "Q7sWP+": "{count, plural, one {Expired {count} day ago} other {Expired {count} days ago}}",
+ "Q8GyzK": "Not now",
+ "Q8gucb": "Invalid phone number",
+ "Q8t9EL": "Settings",
+ "Q9UABZ": "Open link settings",
+ "Q9ZhL4": "You\u2019re not a member of any groups yet. You can join groups from the All groups section below.{br}You can also start a new group by clicking Create group.",
+ "Q9nbQ+": "security page.",
+ "Q9yFCX": "Your file request is now closed.",
+ "Q9yFMv": "Amount",
+ "QAFIzo": "Move tabs view to the right",
+ "QAKF9I": "Family",
+ "QANSaH": "Sorry, we were unable to show some recent items. The team has been notified",
+ "QB/fps": "Are you sure you want to remove admin permissions from {display_name}?",
+ "QB9ZqK": "The folder was unshared.",
+ "QBOH+K": "Smart Sync",
+ "QBUU3e": "Are you sure you want to delete {item_count} items from your Dropbox?",
+ "QBoKiR": "Deleted by {createdUserName} ({creatingUserEmail}) on {creationTime}",
+ "QBzB1q": "From {conversion_date}, we\u2019ll bill you once a {period_noun} for your Dropbox {professional} plan. Your new {period_adj} total will be {price}.",
+ "QC6PMi": "Legal",
+ "QCmzb1": "Shared workspace",
+ "QCqfQH": "PDF editing",
+ "QCr4LO": "Choose a trial plan",
+ "QCtVKy": "Zoom out",
+ "QCwOVh": "{count, plural, one {Anyone in your Dropbox team with the link can view this file. Expires in {count} day. Downloads disabled.} other {Anyone in your Dropbox team with the link can view this file. Expires in {count} days. Downloads disabled.}}",
+ "QDTGvc": "Download the Dropbox desktop app",
+ "QDkSaP": "{dropbox_family} will be cancelled, and active members of your {family_plan} plan will have their accounts downgraded to {dropbox_basic}",
+ "QE7mDk": "Switch trial",
+ "QECDJM": "I agree to the Dropbox Terms. Find out more about how we use and protect your data in our Privacy Policy.",
+ "QEa1gY": "Create your account",
+ "QF0Dlm": "Microsoft Office add-in",
+ "QGOArL": "Approve version",
+ "QGQo+Q": "When a lot goes wrong, Dropbox Rewind can help your team get everything back to how it was before the accident.",
+ "QGU+kc": "The merge will be completed soon",
+ "QGz6Gm": "{count, plural, one {Deleted {succesfully_deleted_files} of {count} items.} other {Deleted {succesfully_deleted_files} of {count} items.}}",
+ "QHAr8J": "You have up to 30 days to restore a deleted file.",
+ "QHORxg": "Elias Eldayrie, Vice President & CIO",
+ "QHQwQ/": "Keep plan",
+ "QHYG8r": "OK",
+ "QI5Jkq": "People with the password for this link",
+ "QIUR0U": "Don't worry, {sharedFileName} won't be deleted for anyone else. You won't be able to access it any more though.",
+ "QIbtY6": "Store and sync your passwords across devices with Dropbox Passwords.",
+ "QIf0Bk": "How do I find a billing receipt or invoice?",
+ "QIghg/": "Unshared \u2018{name}\u2019",
+ "QInyO5": "or",
+ "QJ3PjI": "Cancel trial",
+ "QJaWZs": "From Dropbox",
+ "QJkpjq": "Scheduled for future use",
+ "QK0rMM": "Let\u2019s create your new personal account.",
+ "QKAyXv": "",
+ "QKJdcZ": "Link copied. Use to invite 1 member.",
+ "QKJi9T": "When ticked, the user will be unable to dismiss the campaign and recycling will be disabled.",
+ "QKMF0j": "{name} moved {single_item_name} from {src_folder} to {dst_folder}",
+ "QKnjtl": "Allow by default",
+ "QL3zAp": "Web previews and comments",
+ "QL8I71": "{msg} or upload from computer",
+ "QLEWi3": "Send notifications",
+ "QLVg1B": "Cannot access",
+ "QLZhTq": "{business_standard_vacuuming_policy_max_days} days",
+ "QLcuON": "",
+ "QM5sCp": "Collaborate on team projects in Trello with Dropbox content.",
+ "QMTnUm": "Just people in my team with the link",
+ "QMuCDg": "Product thumbnail",
+ "QN4s/5": "Gain additional visibility and protection",
+ "QNNzfl": "Held members",
+ "QNTZp/": "Loading",
+ "QO2JjD": "Release this hold?",
+ "QOI9ju": "Manually added contacts",
+ "QOTha4": "Free 120-day file version history",
+ "QOZlS1": "With Paper\u2019s task management tools, you can assign to-dos, add due dates and mention people \u2013 from within the doc itself.",
+ "QOh2za": "Manage who can share, view and download files",
+ "QOlCGp": "You can download this export until {formatted_date}.",
+ "QPBzI3": "Personal",
+ "QPM2jQ": "Preview files",
+ "QPY6hX": "Illustration of a new account being added to the {DROPBOX_PASSWORDS} app",
+ "QPe1/g": "Paid users can expect a response within 24 to 48 hours.",
+ "QPvsZL": "Save to my member folder",
+ "QPyt8N": "With Dropbox Paper, members can share docs, give and get feedback on files, and track to-dos all in one place.",
+ "QQB/VR": "\u2013",
+ "QQHder": "Unlimited API access to security and productivity platform partners",
+ "QQJY5U": "Premium features and advanced sharing tools help you impress clients and streamline the working day.",
+ "QQfi/J": "There are no groups for you to join. You can start a new group by clicking ",
+ "QQgkMv": "Add a custom message (optional)",
+ "QQm6yI": "Make {name} the owner of this folder?",
+ "QQvyOj": "Are you sure?",
+ "QRAYYQ": "Confirm delivery",
+ "QRPh7O": "Team folder",
+ "QRWsYu": "From {date}, we\u2019ll charge you {scheduled_total} per month on your card ending {last4}.",
+ "QRXxfG": "Acknowledge",
+ "QRlbRH": "Upcoming team merge",
+ "QSImcV": "Clear filters",
+ "QSVPhT": "Unable to load versions",
+ "QSj8+6": "Phone support in business hours",
+ "QSlOA6": "Version history",
+ "QSlcsR": "Rotate anticlockwise button",
+ "QSmx0y": "Go to Settings on dropbox.com to unlink these accounts everywhere.",
+ "QSvGAQ": "New email address saved",
+ "QTX6zS": "Make sure everyone you work with has access to the files and storage they need",
+ "QTr5O6": "{planStorage}",
+ "QUAohd": "Prevent members who are not in your team from receiving and sending Dropbox traffic. Only applies to a configured corporate network.",
+ "QUUuyN": "Enable team Selective Sync to continue merging",
+ "QUs54P": "We were unable to unresolve the thread.",
+ "QUsVjS": "Account will be deleted",
+ "QVHrOU": "Bill yearly",
+ "QVI2zd": "Start bulleted list",
+ "QVORtW": "Off completely",
+ "QVdgUv": "Pending member",
+ "QVj3sy": "{display_name} is now an enterprise admin.",
+ "QVjnVd": "Thanks for verifying your email address: {email}.",
+ "QVvFym": "Team activity log only",
+ "QWAFI+": "Get answers, learn and engage with other Dropbox users (and super users!)",
+ "QWhp+G": "(contact your team admin to change your email)",
+ "QWtUGc": "The link to your meeting will be visible to anyone with access to the calendar event.",
+ "QWvX1/": "Error updating PIN. Please try again later.",
+ "QXPGhu": "when billed yearly",
+ "QXT2dB": "This person is approved",
+ "QY3Zfn": "Secure your vault with a PIN",
+ "QYDt5S": "Your personal Dropbox account is full",
+ "QZd7Sg": "Restore any new files removed from your Dropbox",
+ "QZz6ut": "Chat",
+ "QaHMKS": "Primary email can\u2019t be changed.",
+ "QaisyL": "Cancel your {trademark_business} subscription.",
+ "Qayhb5": "Upload files",
+ "QbLfj8": "An error occurred while removing yourself as a trusted contact. Please try again.",
+ "QbYVHA": "Use this form to report content that violates Dropbox\u2019s \nAcceptable Use Policy",
+ "QbcW7e": "Access to \u201c{folder_name}\u201d is restricted, but you can access it from the admin console.",
+ "QbgeuN": "Approved",
+ "QbnF94": "{count, plural, one {Team invitation} other {Team invitations}}",
+ "Qd1iC2": "Sharing...",
+ "QdCD99": "Didn\u2019t get the email? Check your spam folder or send it again",
+ "QdQO3I": "{trademark_business} helps your team move projects forwards",
+ "QdcEW4": "or sign in",
+ "QdqCA4": "What kind of issue is it?",
+ "QeGZf9": "Return to Dropbox",
+ "QeLVwl": "Doc activity (weekly digest)",
+ "QebzyJ": "{price} (taxes included)",
+ "QeeRqA": "Share a folder with friends or colleagues",
+ "QeqSyk": "Request files",
+ "Qf/aom": "Create tasks from any website in Chrome.",
+ "QfE1kh": "Device type",
+ "QfMy5I": "No link created yet.",
+ "QfV9Qu": "Product roadmap \u2192",
+ "Qfg7UG": "Add",
+ "QgOPIi": "See meetings that you and {target_user} are in. Connect your calendar.",
+ "QgQyq4": "Billed now: {total_price}",
+ "Qgrh1X": "How important is it for you to present work in a customised way and track engagement with it?",
+ "Qhqnwc": "Work smarter, together. Your team can get organised, work together easily and launch great ideas.",
+ "QhuFUl": "Download icon",
+ "QiUuMZ": "Include a link to a screenshot or video",
+ "QicwA5": "OK",
+ "QjM4fw": "{count, plural, one {\u201c{folder_name}\u201d has been restored, but {num} item in it was moved previously} other {\u201c{folder_name}\u201d has been restored, but {num} items in it were moved previously}}",
+ "QjVv7s": "Trusted by over 600 million users and 500,000 teams",
+ "QjjcQS": "Choose one",
+ "QkQq/G": "Don\u2019t let storage limits break your rhythm. Upgrade your Dropbox account with up to {space} of space \u2013 and keep your best work flowing.",
+ "QkckEF": "How releasing a hold works",
+ "Qkn8FU": "Alert name",
+ "QknGmV": "Cancel",
+ "Ql/5jY": "Something went wrong. Please try again in a few seconds.",
+ "QljYPN": "One year file version history for {evh_price} per {billing_period}",
+ "Qm6QbN": "Email",
+ "QmGbjb": "We accept payments with Visa, Mastercard, American Express and Discover credit cards. Contact sales if you\u2019d like to pay by bank transfer or cheque.",
+ "QmfUEx": "Please enter a value for {field}",
+ "QmiUAu": "Upload complete",
+ "QnFif0": "Town or city",
+ "QnVNDq": "This lets members share Paper docs with people who aren\u2019t in the team Dropbox account.",
+ "Qo7TLX": "The domain portion of the email address (the portion after the @: {domain}) is invalid.",
+ "QoelR9": "Your Dropbox {plus} plan was activated with a licence key. The plan will be renewed on {date}.",
+ "Qoycwr": "Anyone with the link and password can view this file",
+ "QpBLtT": "Join now",
+ "QpcX0N": "Reconnect to {service_name}",
+ "Qq0CoB": "Preparing copyright infringement form...",
+ "Qq0yqO": "Create a new shortcut",
+ "Qq4R12": "Attempted to zip too much data.",
+ "QqEjOt": "If you need to expand your crew, you can add members to or remove members from the Family plan at any time.",
+ "QqM+VH": "Some synced",
+ "QqMVX5": "[{browserName}]",
+ "QqPUpX": "Last modified",
+ "QqRUVY": "Manage what matters most",
+ "Qqj2Ud": "Success",
+ "Qqu4KQ": "API announcements",
+ "QrSEbK": "Anyone in the {trademark_business} team with this link and password can edit the file.",
+ "Qry3+4": "Unable to start your free trial",
+ "QsGUxK": "{count, plural, one {{filename} and {count} more item} other {{filename} and {count} more items}}",
+ "QsUaqW": "Permissions at upload modal",
+ "Qsf4fi": "Next: Support",
+ "Qsr6Cf": "Sharing files and folders externally",
+ "QsxVTO": "Add names or emails",
+ "Qsypjo": "Enter your phone number and a Dropbox support agent will call you in a moment.",
+ "Qt557N": "We found more members than we can display. Can\u2019t see who you\u2019re looking for? Try narrowing your search.",
+ "Qt6AC+": "User-managed groups",
+ "QtMxTg": "Currently a member",
+ "QtZepk": "You don\u2019t have permission to view those items. Please note that restoring will reinstate access according to its original members, including any members of child content. \u2018{folder_name}\u2019 will remain confidential to you, but will be accessible by other users.",
+ "Qttf1W": "Enterprise admin \u2022 {federation_name}",
+ "Qu/WwJ": "{numMembersSelected, plural, one {Moving {numMembersSelected,number} member. They\u2019ll still have access to old team content during the move.} other {Moving {numMembersSelected,number} members. They\u2019ll still have access to old team content during the move.}}",
+ "Qu8OJk": "Ask the owner to help with permanently deleting this",
+ "QuF1r9": "Reject this trusted team request?",
+ "QuQ7YS": "Tuesday",
+ "Qur/dB": "Turn off alerts for ",
+ "QvHwoh": "Confirm device management",
+ "QvtGLm": "Prevent members from linking a second account to their work computer",
+ "QwgX4d": "Enter password",
+ "Qws4v2": "Slack",
+ "Qx62nh": "You don\u2019t have access to this content. You\u2019re signed in as {user_email}.",
+ "QxhBw0": "Verify your work email address to continue",
+ "Qy2Jzq": "Add EVH",
+ "QyBXZK": "Work email",
+ "QyG9QK": "Display (and play) just about anything",
+ "Qypn9P": "Already in another team",
+ "Qyr5v5": "BETA",
+ "Qyx8hc": "Please note that changing your VAT registration number could impact your applicable tax rate.",
+ "Qz0E7O": "Can\u2019t add multiple folders with the same name",
+ "QzGAkL": "Compile from source",
+ "QzZtHq": "Protect your team\u2019s account with an additional layer of security when signing in.",
+ "QzdFgx": "Smart Sync lets you see all of your files on your desktop, even if they live in the cloud, saving you hard drive space on your device.",
+ "QzdV3+": "If you know how these files were deleted please explain how this happened.",
+ "Qze7Tm": "Size",
+ "QzlDRn": "People have asked to join your team so they can collaborate better with their colleagues.",
+ "R+2P3o": "Strict",
+ "R+6yXm": "Resolution",
+ "R+Gy+p": "Share with everyone",
+ "R+KGZD": "We\u2019ve transferred your files to the {team_name} {trademark_business} account.",
+ "R+LgCJ": "Paper is more than a doc \u2013 it\u2019s a workspace that brings creation and coordination together in one place. Write and edit, brainstorm, review designs, manage tasks or run meetings.",
+ "R+M5w+": "To choose the file or folder above, hover over it and tick the box.",
+ "R+SS5M": "Manage pending members",
+ "R+WDqi": "Number of recipients cannot be greater than {number_recipients}.",
+ "R+Xwq8": "First, confirm whether you requested account recovery from the following device.",
+ "R+dgVL": "Add pin\u2026",
+ "R+hfxt": "Set a default Canvas domain for your team.{line_break}This doesn\u2019t affect members who have already connected to Canvas.",
+ "R+pCV2": "Members can use two-step verification if they like",
+ "R+vupz": "None added",
+ "R/5cRy": "Enable or disable Paper, and set limits for how widely Paper docs can be shared",
+ "R/67N/": "Show more",
+ "R/8tw+": "Sent to {recipient_first} and {recipient_second}.",
+ "R/Hjn0": "Close",
+ "R0+QsP": "Full text search",
+ "R07Z49": "Without {dropbox_family}, you\u2019ll lose access to the following:",
+ "R09PM5": "Looks as though you don\u2019t have a personal Dropbox yet",
+ "R0XF3O": "All time",
+ "R0oZTr": "Admin console",
+ "R0w1A3": "Disconnect Google Directory?",
+ "R2FTNc": "Secure this link with a password and expiry date.",
+ "R2Qyo+": "Apple",
+ "R2grIx": "Create new auto-PDF folder",
+ "R3+d7G": "For larger teams",
+ "R34dhb": "Please cancel it and come back after your billing period ends on {interval_end} to delete your account.",
+ "R3SV35": "Modified",
+ "R42wB6": "Dropbox has sent a verification email to {email}. Check your inbox and click on the link in the email to finish updating your email. If you can't find it, check your spam folder or click the button to resend the email.",
+ "R4GEyC": "An unknown error has occurred. Please try again.",
+ "R4GZH4": "Add a message to the owner (optional)",
+ "R4Pf9k": "Your files haven\u2019t finished uploading. Leaving this page now will cancel your upload.",
+ "R4UY/G": "Brand name and logo",
+ "R4WsHg": "From {default_on_date}, your team will have access to Paper. If you\u2019d like to control access to Paper, or adjust your team\u2019s default sharing settings for Paper docs, please change your settings before this date.",
+ "R4XFxQ": "Not enough space",
+ "R4Y3Ce": "Manage sharing",
+ "R5K/kC": "Choose your plan",
+ "R5WaKU": "You\u2019ve lost access to powerful features such as the admin console, password control and Smart Sync. Add your billing info now and you can pick up right where you left off.",
+ "R6lJ2P": "Export cancelled.",
+ "R6x4nu": "Let anyone access files, even without an account",
+ "R6yEmk": "{count, plural, one {{count} invitation sent} other {{count} invitations sent}}",
+ "R7F8Tb": "in {location}",
+ "R7g2cG": "Our business needed {trademark_business} temporarily",
+ "R7ga+z": "Anyone with the link can access the Paper doc",
+ "R7o5JO": "Priority chat support",
+ "R7vhZP": "{start_date,date,::MMM d, yyyy} - {end_date,date,::MMM d, yyyy}",
+ "R80X5p": "Upload course files or assignments straight from Dropbox to Canvas.",
+ "R82HW0": "Meet deadlines and exceed expectations",
+ "R8VlRr": "View and edit your DWG files online.",
+ "R8sDaj": "Sorry, you cannot change your billing schedule at the moment.",
+ "R9pvCD": "Compose",
+ "RADzE5": "You\u2019re changing to a {trademark_business} {plan} plan. Starting from {date}, your new {schedule} total will be {recurring_total}.",
+ "RATWg4": "Comments, @mentions, to-dos",
+ "RATxW1": "{count, plural, one {{plural_prefix_text} {count} {plural_suffix_text}} other {{plural_prefix_text} {count} {plural_suffix_text}}}",
+ "RAqfLK": "Current plan",
+ "RAxZa6": "This email address is already taken. Please sign in.",
+ "RB9i4M": "Let {name} keep a copy of this shared folder",
+ "RBkBP9": "You\u2019ve successfully cancelled your trial.",
+ "RBrgq4": "Video editing",
+ "RBsGH7": "Manage plan",
+ "RBt0eG": "Having issues? Get the latest version of the Dropbox app",
+ "RBvabN": "Deleted",
+ "RC0wAo": "Or find out more about {shortBackupPlanName}",
+ "RC3LTC": "People with the link can view",
+ "RC9i/z": "Dropbox needs to verify your email address {email} to create file requests. It\u2019s as simple as clicking the link in the verification email we send you.",
+ "RCSlHE": "Help Centre.",
+ "RCT5HJ": "Version: {version}",
+ "RCcQp5": "How does sharing and collaboration work with {dropbox_business}?",
+ "RCr4JC": "Please note: changing your billing location or VAT registration number could impact your applicable tax rate.",
+ "RCz/Wx": "Your shared folders will appear here so they\u2019re easy to find.",
+ "RDgI92": "It looks as though one of your linked computers has been infected. The good news is that the files in your Dropbox account will be OK. Dropbox can recover your files to a version that existed before they were locked by malicious software on {infection_date} at {infection_time}. It\u2019s free and only takes one click.",
+ "RE8PUL": "Basic for individuals",
+ "REGNQJ": "With Dropbox Family, everyone in your household can store and share photos, videos and important files safely in one place.",
+ "REpPAG": "{role_name} admin",
+ "RF+x3N": "Please enter a valid town/city.",
+ "RF6abt": "Password changed. Now lock it securely",
+ "RFM0Ul": "Manage app settings",
+ "RFqM0k": "Make files local",
+ "RFtAL9": "We\u2019ll charge your IBAN ending in {last4}.",
+ "RGQmf+": "Disable security key?",
+ "RGrX71": "starting with at least 3 users",
+ "RGrmcJ": "Make enterprise admin",
+ "RH49yN": "Please enter a valid credit card number.",
+ "RHtmRP": "{count, plural, one {Members of the folder with this link can view. Expires in {count} day.} other {Members of the folder with this link can view. Expires in {count} days.}}",
+ "RIQ5N0": "Upload",
+ "RIYXok": "Dropbox needs to verify your email address {email} before you can create or join a team. It\u2019s as simple as clicking the link in the verification email we send you.",
+ "RIa54Y": "Create time",
+ "RIkGs9": "No manager",
+ "RIq3O6": "Set",
+ "RIsaOb": "Members",
+ "RIxWSs": "alt",
+ "RJFA/X": "Export member data",
+ "RJItHZ": "sign in",
+ "RJpwvc": "We don't keep logs when the alert is off",
+ "RJyLzm": "After disposal, it takes 30 days for data to be fully removed from the system.",
+ "RKCybX": "Paper docs become .paper files",
+ "RKNm9q": "Enable",
+ "RKQ7Il": "Export download modal",
+ "RKQq1d": "This Section 4.3 serves as notice to the Customer that Dropbox periodically receives unsuccessful attempts for unauthorised access, use, disclosure, modification or destruction of information or interference with the general operation of Dropbox\u2019s information systems and the Services. Even if the events described in the preceding sentence are defined as a Security Incident under HIPAA, Dropbox will not provide further notice regarding these unsuccessful attempts.",
+ "RLhmhA": "Get started",
+ "RLihov": "{count, plural, one {{name} restored a previous version of {count} item in {folder_path}} other {{name} restored a previous version of {count} items in {folder_path}}}",
+ "RLlVEd": "Add watermark text",
+ "RLrbhp": "Words",
+ "RLvDFV": "Look up a credit/debit card purchase",
+ "RM83kY": "Add active members",
+ "RMHJiu": "and your new yearly total is {recurring_amount_including_tax}. Watch out for an email with all of the details.",
+ "RMQzK3": "Invitations sent. Everyone who accepts can access team folders.",
+ "RMV6vY": "Reset",
+ "RMbdDw": "Accept",
+ "RMr3Rn": "Inbox",
+ "RNIIJ0": "You\u2019ve added your billing period.",
+ "RNXXOq": "Codec",
+ "RNZDjn": "We\u2019ve sent an email to",
+ "ROQR/p": "{userCount, plural, one {{userCount,number} user} other {{userCount,number} users}}",
+ "ROrHST": "Add an account photo",
+ "ROx260": "{count, plural, one {Are you sure you want to decline this user?} other {Are you sure you want to decline these {num} users?}}",
+ "RQAh9Y": "Link sent to {email}",
+ "RQGLnS": "Sharing modal",
+ "RQS9wP": "Are you sure you want to cancel?",
+ "RRDlqA": "To continue downloading:",
+ "RRq+Xt": "Resend invitation",
+ "RRsCYn": "Access granted to {requester_email}",
+ "RRzFUx": "Only 1 person",
+ "RS7Y15": "You can now access your recovered files on dropbox.com. These files are also\n ready to be synced to your previously infected computer. For your security, you\u2019ll\n need to sign in when you access Dropbox on your desktop. Once you sign in, Dropbox will\n start syncing.",
+ "RS9CyP": "Submit",
+ "RSBaM6": "This folder can only be shared as a link.",
+ "RSCt5X": "Dropbox Smart Sync is a feature that helps save space on your hard drive by removing stale files and folders and storing them in the cloud. With Smart Sync, you can see and access everything in your Dropbox account on your desktop without taking up space on your computer\u2019s hard drive.{br}{br}Computer backup applies to entire folders on your PC or Mac. When you enable computer backup, files saved in folders like Desktop, Documents and Downloads are automatically and continuously synced to your Dropbox account so you don\u2019t have to drag them manually.",
+ "RT/xET": "Make your best work even better",
+ "RTABMd": "To enable this feature, visit Connected apps to configure Zoom account settings.",
+ "RTJ45B": "{name} viewed",
+ "RTYhNQ": "Team:",
+ "RTj2SO": "PowerPoint for the web",
+ "RTw4E4": "Member exceptions",
+ "RTyAtF": "Send emails with Gmail",
+ "RUFbPq": "Preview previous file",
+ "RUfn8Z": "Close",
+ "RUgoHP": "Team invited to join your organisation",
+ "RUruMp": "You no longer have {DROPBOX_PLUS}, so we need to downgrade your vault to a folder. Your vault files will be temporarily unavailable whilst we do that.",
+ "RVB4pC": "As you use Dropbox, suggested items will automatically show up here.",
+ "RVsdJD": "Something went wrong while uploading this file.",
+ "RW3b5j": "Which files would you like to add?",
+ "RW4ijB": "Folder",
+ "RWBqrY": "Only invited users will be blocked from using Dropbox on all platforms and redirected to join your team or change their email address.",
+ "RWJNyh": "{month}/{year}",
+ "RWPiID": "{trial_duration}-day free trial",
+ "RWZvu5": "Dropbox protects your files, privacy and account with multiple layers of security.",
+ "RWgL9m": "There may be a better plan for you",
+ "RWqDb6": "Choose a language",
+ "RXXpSX": "Connect and stay in touch with shared folders and links",
+ "RXj8Bq": "Dropbox Terms",
+ "RXkdjb": "We were unable to fetch active web sessions.",
+ "RYmWhc": "Your Dropbox team requires at least a moderate-strength password.",
+ "RYs+Yi": "Cancel a Dropbox {trademark_plus} or {trademark_professional} subscription",
+ "RZHCuI": "Getting the link. Copy and share it once it\u2019s ready.",
+ "Ra6Ctb": "{count, plural, one {Remove {count,number} app?} other {Remove {count,number} apps?}}",
+ "RaCxiO": "Aspect ratio",
+ "RaRzqa": "Keep data where it belongs",
+ "RaZY+d": "Notifications menu, with new notifications",
+ "Raqf73": "Voided",
+ "RbBPNi": "Your members and groups will join the primary team, and their admin console settings will take effect, including settings such as security, sharing and billing.",
+ "RbYdAI": "Smart workspace",
+ "RbZfmq": "Priority email, live chat and phone support",
+ "Rby65Y": "File is too large to save as PDF",
+ "Rc5nlR": "Manage the visibility, access and download permissions of every file, folder and link you share.",
+ "RcIoOn": "Partial deployment",
+ "RcR701": "This is the Members page in the admin console. It\u2019s where you manage your team. You can add and remove people, grant admin permissions, search for people and more.",
+ "RcjcSl": "Unarchive version",
+ "RctVV0": "Set PIN",
+ "Rd9YHn": "Manage connected apps",
+ "RdDxZE": "Add a secondary to help{br}people share with you",
+ "Rdb7ib": "They\u2019ll no longer have access to the enterprise console. As a user management admin, they can add or remove members from their team only. They can also do some basic tasks, such as managing groups.",
+ "RdeC/o": "Medium",
+ "RdlSe7": "PayPal",
+ "Rdz77s": "{count, plural, one {You deleted {count} item in {folder_path}} other {You deleted {count} items in {folder_path}}}",
+ "Rdz8hB": "That request is invalid. Try to follow the link from your email again.",
+ "Re3hez": "Limit the amount of space each member has in their Dropbox.",
+ "Re3uD/": "{name} deleted {single_item_name} in {folder_path}",
+ "ReNt2T": "Helpful",
+ "ReONYO": "Ask to join",
+ "ReoMSn": "Closed",
+ "ReyNxC": "Can view",
+ "Rf0QDJ": "Hover over any file and select 'Share'",
+ "RfH/4s": "You\u2019ll be able to do more without switching apps.",
+ "RfauHr": "View ignored tasks",
+ "Rfyu6S": "Deleted link to \u201c{name}\u201d",
+ "RgAHdC": "To edit, ask your admin.",
+ "RgLuHS": "Continue in view-only mode",
+ "RgnO+i": "Open",
+ "RgopQo": "Install app?",
+ "RgtRv/": "Switch to {name}",
+ "Rgvubb": "No active file requests.",
+ "Rhqv2C": "Your shared files will appear here so they\u2019re easy to find.",
+ "RhsEPz": "Refunds",
+ "Ri/wwU": "Allow external sharing",
+ "Ri3zPH": "Invite more of your colleagues to help grow the team.",
+ "Ri97f5": "Smart Sync works seamlessly on Windows and Mac, even if you\u2019re not on the latest version. It\u2019s already part of your Dropbox \u2013 ready to work whenever you are.",
+ "RiAumD": "One central place for you and your family to easily share and access content in a secure folder.",
+ "RiEcIb": "deleted audio",
+ "Riu+zT": "Select previous file (hold Shift to select range)",
+ "RjCW/L": "Give access to a trusted contact",
+ "RjRbTN": "Let Paper do your busywork",
+ "RjUH4W": "Change logo",
+ "RjbzMT": "Dropbox needs to verify your email address {email} to share links. It\u2019s as simple as clicking the link in the verification email we send you.",
+ "RkgWqF": "First name cannot be longer then 100 characters.",
+ "Rki/+z": "From medical records to financial documents \u2013 secure them all in Vault.",
+ "RlIoMy": "Work on files without installing additional apps. Microsoft Office allows you to open and edit files in your web browser directly from Dropbox.",
+ "Rlky5O": "We require credit card information for the trial to prevent fraud. But, if you cancel before the trial period is over, there won\u2019t be any charges.",
+ "RltDbS": "Google Play/Apple App Store",
+ "Rm2z60": "Local: files default to living on your hard drive. Ideal if you often access files offline.",
+ "Rm9SCY": "Opacity slider",
+ "RmCmf6": "Buy now",
+ "RmO5Km": "Back",
+ "RmXnr0": "We were unable to subscribe to the file.",
+ "RmtTw7": "Sort in ascending order",
+ "RnTqG5": "You\u2019ll lose access to your Family Room folder",
+ "Rny2OZ": "{email}",
+ "RoEapW": "{deletor} deleted {ago}",
+ "Roz1Nq": "Loading members/groups",
+ "RpSxvD": "Files from {linked_folder} will be displayed in Content Builder but may not be the\n latest versions from Dropbox. You\u2019ll be able to add a different team folder.",
+ "Rpr02R": "Move members to another team",
+ "RqGmkZ": "Submitting...",
+ "RqKZIV": "Previous month",
+ "Rqcuqt": "Try adding those files again or removing them",
+ "Rr/bvY": "Two-step verification is an optional but highly recommended security feature. You can change your two-step verification settings at any time in your security settings.",
+ "RrHdWl": "Search by ID, name, owner or stormcrow",
+ "RrWeUF": "Copy link",
+ "RrXbnE": "Any policies or legal holds from the secondary team will be moved over to your data governance area.",
+ "Rsg09m": "Everyone in your team has their own member folder. Keep stuff here that you don\u2019t want to share with everyone.",
+ "RsjaeV": "Add folders",
+ "Rsr+6S": "Sorry, we couldn\u2019t find any results for {search}. Check the spelling or try using a more general term.",
+ "Rt6gCQ": "{count, plural, one {Anyone with the link and password can view this folder. Expires in {count} day.} other {Anyone with the link and password can view this folder. Expires in {count} days.}}",
+ "RtTNKt": "The {card_name} card with this file attached was moved to {list_name}",
+ "RtkW2p": "You can\u2019t edit this file at the moment",
+ "RtqVTJ": "You\u2019ve lost {space} of space and access to powerful features such as the admin console, extended version history and Smart Sync. Add your billing info now and you can pick up right where you left off",
+ "RuIGvv": "Dropbox will send any applicable Breach notifications to the Customer email address set forth above, or any other email address appropriately associated with the Customer\u2019s account with Dropbox, as updated from time to time by the Customer. The Customer, and not Dropbox, is responsible for determining whether its End Users are authorised to create, receive, maintain or transmit PHI within the Services and Dropbox is not obligated to do so.",
+ "RuKlo2": "See plan details",
+ "Ruu9sN": "You cannot change plans at the current time.",
+ "Rv3nXX": "{count, plural, one {Send invitation} other {Send invitations}}",
+ "Rvv7NR": "Dropbox Paper template",
+ "Rvwa32": "Help Centre",
+ "RwG3qN": "Copy link",
+ "RwO5iU": "Invite someone else to the team",
+ "RwPv2b": "{count, plural, one {Anyone with this link and the password can view the file. Expires in {count} day.} other {Anyone with this link and the password can view the file. Expires in {count} days.}}",
+ "RwsOX3": "Add an image or text watermark to save",
+ "RxLLwO": "This ad may appear again",
+ "RxvBVG": "PayPal",
+ "RyDLAo": "Arrow indicating where the files will be going.",
+ "Ryivld": "We were unable to restore those files.",
+ "RzIjPM": "3",
+ "RzLhyR": "Allow members to protect their files with watermarks",
+ "Rzcq8W": "and {display_name}",
+ "RzdbXv": "Sorry, something went wrong.",
+ "RzhnRl": "Extension-less",
+ "S+JnfP": "Please tick the box to continue",
+ "S+RxKh": "More about links",
+ "S+bZuY": "All unmanaged users will be blocked from using Dropbox on all platforms and redirected to join your team or change their email address.",
+ "S+fFwb": "{count, plural, one {Can\u2019t move shared folder to the {team_name} team space} other {Can\u2019t move shared folders to the {team_name} team space}}",
+ "S/5ZTL": "Sync across only 3 devices",
+ "S/79Yf": "Watermark",
+ "S/FwI+": "{count, plural, one {Are you sure you want to save {count} file to your Dropbox?} other {Are you sure you want to save {count} files to your Dropbox?}}",
+ "S/fgza": "Amount of data",
+ "S/vWTW": "Add them to exception list",
+ "S/wqoS": "Work with your content, tools and team members directly from Dropbox. That way, everything you need is in one place. And it\u2019s easy to access from any device \u2013 or location!",
+ "S10oOs": "Block by default",
+ "S1iayX": "Work offline",
+ "S2Z3jq": "Can I buy more storage space on a {trademark_family} plan?",
+ "S35+WY": "After you approve the request for {email}, we\u2019ll let them know they can finish joining your team. You can also add them to all the right groups and folders.",
+ "S3O2H+": "You've successfully upgraded to {planName}",
+ "S3TdXl": "Remote account wipe",
+ "S3llhu": "or",
+ "S3u9PE": "You have reached the limit of {max_aliases} secondary emails. To add other secondary emails, please remove at least one existing secondary email.",
+ "S4jAu3": "Make sure your work represents you well. Add your branding to the files you share, so everything feels professionally packaged and uniquely you.",
+ "S4kv4M": "Directory",
+ "S4oKeO": "Invitation sent and task assigned to {email}",
+ "S55F+L": "You\u2019ve almost finished",
+ "S5TT9D": "Clear all",
+ "S5UJEB": "Save to personal Dropbox",
+ "S5q7Tt": "You\u2019ve changed your plan.",
+ "S5xVx+": "More about creating a hold",
+ "S6RuBm": "Before you can sign in, you\u2019ll need to verify your account with Google {email}",
+ "S6U6LS": "2 TB (2,048 GB) of storage space",
+ "S6cb1J": "Do you want to archive this document?",
+ "S6stj+": "More",
+ "S7DI6M": "Some members aren\u2019t active. Remove them and try again.",
+ "S7Wy/F": "From {date}, we\u2019ll charge you {scheduled_total} per month on your PayPal account.",
+ "S7nPs7": "Team members have {emailDomain} email addresses",
+ "S8ZkUV": "Licence(s)",
+ "S993Bf": "Never miss an update",
+ "S9JHgb": "Share to Slack",
+ "S9ME5X": "Notifications",
+ "S9RuM9": "The report will be saved as a CSV in a folder called {trademark_business} reports. We\u2019ll email you when the report is ready.",
+ "S9YeQC": "your plan will be {action} to {display_name}. Your",
+ "S9e9jZ": "A user shares a pdf for an electronic signature within Dropbox",
+ "S9fk75": "Member space",
+ "SA0j0t": "Customer console onboarding image",
+ "SAJ9yo": "It looks as though you\u2019re trying to move a lot of stuff. {dropbox_plus} has a limit of {plus_space_quota}. Upgrade to {dropbox_professional} and get:",
+ "SARaai": "Keep sensitive info safe",
+ "SB4hpe": "We weren\u2019t able to load your folders",
+ "SBKVU9": "Requested to join",
+ "SBMB8D": "Get Dropbox for desktop",
+ "SBbBDV": "The CSV report lists the files with labels, the info types found and the sharing status of each file. We\u2019ll save the report in your Dropbox Business Reports folder.",
+ "SBd6K4": "Getting ready to download\u2026",
+ "SBqqR9": "/user/month",
+ "SCO1xs": "\u201cDropbox makes it easy for me to share important info with family members who live far away.\u201d",
+ "SCfqIn": "Discover",
+ "SCuIH+": ".{extension} files can\u2019t be previewed.",
+ "SDLkWB": "Contact us",
+ "SDQykS": "Team",
+ "SDefbW": "Dropbox Professional makes it easy to safeguard your IP and disaster-proof your data. You get enterprise-grade file encryption and a suite of security tools for your business.",
+ "SDnwm9": "To the Notification Email.",
+ "SEGMnR": "Team folders let everyone store and share files from one place \u2013 and access it all from their computers, phones and tablets.",
+ "SEGoS7": "Create tasks from messages in Slack.",
+ "SEmu5Q": "Unassign",
+ "SF86Bp": "Assign yourself or someone else a task for this folder",
+ "SFNqkk": "Emergency access so a trusted contact can get access to your records",
+ "SFVfx8": "Start a creative brief",
+ "SGX3zm": "You\u2019ll be charged {prorated_price} for the new plan, pro rata for the current billing period. {scheduled}",
+ "SGvdAo": "Background",
+ "SH3WXS": "upside down arrow image",
+ "SH7HST": "Show deleted files",
+ "SHDDoj": "Colour profile",
+ "SHImCI": "Preview latest saved version",
+ "SHYorf": "Upload files to the team space",
+ "SI8Kt7": "Remove {firstFilename}?",
+ "SIGEzu": "For easy access to this folder in the future, add it to your Dropbox.",
+ "SJ7MeI": "See all templates",
+ "SJT7fQ": "Added {time}",
+ "SJZJ7k": "Change team name",
+ "SJj85M": "New policy",
+ "SJkFun": "Added",
+ "SJogkc": "Close",
+ "SJxssD": "Search Dropbox",
+ "SK4S5K": "{price} per month. {tax_string}",
+ "SKdL1D": "Request sent to {team_name}.",
+ "SLI4O1": "Host and share videos to receive time-coded feedback.",
+ "SLVXB4": "Send file request",
+ "SLjbBS": "Place a hold on",
+ "SLwrSx": "{count, plural, one {Show {count} more folder} other {Show {count} more folders}}",
+ "SMByRE": "This hold is updating at the moment. You can work with it again once it has finished updating.",
+ "SMqFsd": "This file is too big to preview. {br} The maximum file size for .{extension} is {limit}",
+ "SN+mbU": "Send files of up to 100 GB with Dropbox Transfer",
+ "SN7A0T": "You\u2019ll be charged {prorated_price} {changed_items} pro rata for the current billing period. {scheduled}",
+ "SNI53v": "Cancel your {trademark_business} trial",
+ "SNLY2j": "No transactions",
+ "SNgw31": "On, did not fire",
+ "SNh3/9": "Advanced sharing and collaboration tools",
+ "SNzgsQ": "Continue",
+ "SOCI4B": "Continue with Basic",
+ "SOQEL7": "Is this regarding a cancellation request?",
+ "SOgCWH": "Disk image",
+ "SOpAJh": "Delete permanently",
+ "SQ3qcg": "Details (optional)",
+ "SQA+Mo": "Access your files everywhere with Dropbox mobile for Android, BlackBerry, iPad and iPhone.",
+ "SQcOVf": "Great! Now click the installer to finish.",
+ "SQjTuQ": "These folders will start as synced.",
+ "SQjmGk": "Create folder",
+ "SRbRT1": "How do I recover older versions of files?",
+ "SRnMNM": "
Can\u2019t preview .{extension} files. {br}Upgrade to {trademark_professional} to preview more file types.
",
+ "SS1NPa": "People can only view and download the files",
+ "SSH6sa": "Save hard drive space, work between multiple accounts and get to Dropbox files \u2013 directly from your computer.",
+ "SSL+1C": "INFO ABOUT WHERE YOU WORK",
+ "SShqdB": "If you already use Dropbox, moving to a Business account is easy! All of your content will stay the same \u2013 your files will stay where they are, and all of your settings (such as shared folder relationships and linked devices) will remain the same. For admins, all of your team members who already use Dropbox will have the same experience, and anyone without an existing Dropbox account will be prompted to sign up when you send them an invitation. For {trademark_plus} users who switch to {dropbox_business}, any remaining credits will be returned as a pro rata refund to the original payment method.",
+ "SSoF5o": "Get {pro_space_limit} of storage",
+ "SSwbgo": "Sent an email to {email}",
+ "STF3mD": "Members must sign in with SSO",
+ "STHKpw": "Add digital watermarks, passwords or expiry dates to any work you share. Undo file edits or deletions for {policyMaxDays} days. And remotely wipe your entire Dropbox account from a lost device.",
+ "STI9Ug": "Create custom watermarks",
+ "STKnSY": "{trademark_business} comes with {space} of included storage, more ways to collaborate, increased security and file recovery",
+ "STjdKQ": "\u201cPaper is great for imagining what the final article is going to look like. You can send out a list of to-dos, introduce all sorts of multimedia and leave comments for your colleagues to interact with.\u201d",
+ "SU0PaB": "Checking...",
+ "SUWtT7": "Excess devices",
+ "SUZrjY": "Default doc access",
+ "SV0nya": "Can edit",
+ "SVbyI1": "Looks good",
+ "SVdO8G": "Search for a file or folder",
+ "SVhp8o": "Learn more",
+ "SWZynj": "{browser} on {os}",
+ "SWzz6j": "or\u00a0create an account",
+ "SX0gpY": "{num_invites, plural, one {Invited {num_invites,number} person.} other {Invited {num_invites,number} people.}}",
+ "SXaFWG": "Something went wrong. Please reload the add-in.",
+ "SYbWri": "Please enter a valid phone number",
+ "SZVADm": "Anyone in your Dropbox team with the link can view this folder",
+ "SZXvtO": "View activity",
+ "SZdV1H": "Something went wrong. We can't finish the request.",
+ "Saaz+0": "To verify your identity over",
+ "SacRuI": "Note: Styling and location may vary between platforms.",
+ "Sb6jZU": "Any members who currently have too many active sessions will be signed out.",
+ "SbQVGA": "On, red-eye reduction, return detected",
+ "SbSEOF": "View, invite and remove members",
+ "SbW8wI": "Once you accept the request, your team admins can:",
+ "SbyBRb": "All cards",
+ "ScAfDE": "Download anyway",
+ "ScHZUX": "New sensitivity",
+ "ScUJYX": "Boost your productivity instantly",
+ "ScWMex": "{count, plural, one {Anyone with this link and password can view the file. Expires in {count} day.} other {Anyone with this link and password can view the file. Expires in {count} days.}}",
+ "ScaqMP": "You\u2019ll get an alert if a member tries to sign in from a high-risk country.",
+ "Sdxtk3": "I am switching to {dropbox_business}",
+ "Se5SXB": "{count, plural, one {Couldn\u2019t move {count} item to {folderName}.} other {Couldn\u2019t move {count} items to {folderName}.}}",
+ "SeZEPb": "Add key",
+ "SeuQjt": "{count, plural, one {Only you can view via the link. Expires in {count} day. Downloads disabled.} other {Only you can view via the link. Expires in {count} days. Downloads disabled.}}",
+ "SfV3t6": "One last step: download the desktop app to always have the latest version of your team\u2019s files.",
+ "SfW7kw": "Add groups",
+ "SfbIwa": "Buy licences",
+ "Sg+zDr": "Accept",
+ "Sg3xXQ": "No members found. Try different keywords.",
+ "SgCadx": "This file was added to Trello",
+ "SghIdi": "Reply",
+ "SgtygT": "Sign in with Google",
+ "Shs64t": "",
+ "SiHS/3": "No new membership requests",
+ "SixISH": "Change your name",
+ "Sizjus": "Dropbox {family}",
+ "Sj1bQZ": "Best-in-class sync technology",
+ "Sj1y5h": "Get {backupPlanName} instead and save up to 50%",
+ "Sj7Fsz": "Add a message (optional)",
+ "SjHYD2": "Mechanical/electrical/civil engineering",
+ "Sjw+xU": "Domain verification",
+ "SkBm5l": "{professional_space} of space",
+ "SkC4xu": "{num_users} members",
+ "SkEAyw": "Add to starred",
+ "SkY8H3": "{count, plural, one {Anyone in your Dropbox team with this link can view the folder. Expires in {count} day. Downloads disabled.} other {Anyone in your Dropbox team with this link can view the folder. Expires in {count} days. Downloads disabled.}}",
+ "Skb3fo": "Satisfied",
+ "Skk4UJ": "Please submit your information and a {trademark_business} representative will get in touch with you",
+ "Skyz8c": "{date} by {user_name} ({user_email})",
+ "SlJd+g": "Get {family}",
+ "Sm/x22": "Delete permanently",
+ "Sm4Xwy": "{msg_title} {msg}",
+ "Sm6zFg": "Number",
+ "SmCgDq": "{phone_number}",
+ "SmCwEC": "The Dropbox interface for adding and previewing watermarks on photos.",
+ "SmOO0P": "Limit who your members can invite to files and folders. Bear in mind that this setting doesn\u2019t affect existing access.",
+ "SmX0MS": "View in Slack",
+ "Smwtj6": "Invite and add",
+ "SnIjdP": "Only people invited",
+ "SnK+yr": "\u201cSecurity Rule\u201d",
+ "SncnVq": "{max_licenses, plural, one {Give family members access to the plan\u2019s storage space and premium features. You can invite up to {max_licenses} person aged {min_invite_age} and up.} other {Give family members access to the plan\u2019s storage space and premium features. You can invite up to {max_licenses} people aged {min_invite_age} and up.}}",
+ "SniDIk": "Switch plan",
+ "So49Gl": "Content manager",
+ "SoVWmf": "Save settings?",
+ "Soaval": "Name edit",
+ "SoqB00": "Notify users before turning on capture?",
+ "SotrIz": "Once they\u2019re a part of your team, you\u2019ll be able to manage their account and any files that they can access.",
+ "Sp0MBY": "Select files through Dropbox",
+ "SpEp+7": "Connect Dropbox to even more marketing apps",
+ "SpufE2": "Show {num} more",
+ "SqFq86": "Get your point across.",
+ "SqX3wN": "Selective Sync icon",
+ "SqtGTY": "Move folders to the shared team workspace",
+ "SqvHOe": "A space for your own stuff",
+ "Sr+rcm": "{number, plural, one {Viewed {number,number} week ago} other {Viewed {number,number} weeks ago}}",
+ "SrKRAg": "Your account",
+ "SrMyRy": "The Dropbox app",
+ "SrPda7": "Multi-spot",
+ "SrWM1R": "Everything in {standard}",
+ "SrWnn5": "View in admin console",
+ "Ss2uFe": "{standard_display_name} provides teams with {standard_plan_size} of storage, and simple sharing and collaboration tools. For teams needing more storage and security, {advanced_display_name} provides as much space as your team needs in addition to sophisticated admin, audit, integration and security features. Learn more about our plans here.",
+ "SsBV6X": "{price}/family/month (includes GST)",
+ "SshUAX": "Ticket",
+ "StOcW+": "Collapse settings",
+ "StgmB7": "Cancel",
+ "StgsuQ": "Set who can use Dropbox Rewind to recover files after something goes wrong",
+ "Su+31W": "Create custom presentations with logos and graphics",
+ "SuGuM2": "Add groups?",
+ "SuJYT4": "Do even more with the Dropbox integration on {app_name}.",
+ "Sub6Ir": "Syncing",
+ "Sv3zTo": "Google Play Store",
+ "SvDOs1": "Other inappropriate content",
+ "SvL2Xy": "You\u2019re good to go!",
+ "SvRe20": "Choose a trial plan",
+ "SvgwMG": "People we think you work with have joined these teams",
+ "SvnKud": "Choose a file",
+ "SvzB1e": "Connect apps to Dropbox",
+ "Swr7Tl": "or purchase now",
+ "Swwdqr": "All activities in {label}",
+ "Sx3SWG": "Quick access to files you\u2019ve been working on.",
+ "SxB65W": "{count, plural, one {Sending {num_members} invitation\u2026} other {Sending {num_members} invitations\u2026}}",
+ "SxckoX": "Standard trial {ios}",
+ "Sxzug0": "in {boardname} \\u2022 {listname}",
+ "SyDx/S": "Send, receive and sign",
+ "SyMkQD": "Cannot leave the team",
+ "SyQ6jw": "Personal",
+ "SzFFuz": "Designit",
+ "SzVUpr": "Add",
+ "SzftTr": "Folder hierarchy",
+ "T+8k3O": "Sorry, unable to find the parent page.",
+ "T+q7I1": "Return to Dropbox Home",
+ "T/2/qx": "Manage access",
+ "T/2pGm": "{count, plural, one {Anyone with the link and password can view this file. Expires in {count} day. Downloads disabled.} other {Anyone with the link and password can view this file. Expires in {count} days. Downloads disabled.}}",
+ "T/CxU4": "year",
+ "T/KgJj": "Version history",
+ "T/SuSS": "{author_name} added {ago}",
+ "T/eyGq": "Invitation requests from current members",
+ "T/k9wV": "As a team admin, they can manage everything for their team only, such as changing security settings and removing other admins.",
+ "T03O4f": "For more help",
+ "T0orvz": "{name} locked this file",
+ "T105WH": "{numberOfEmails, plural, one {Invited {numberOfEmails,number} person} other {Invited {numberOfEmails,number} people}}",
+ "T1IRKv": "Getting the link...",
+ "T1hxp2": "Members of the containing shared folder with the link can view this file",
+ "T1qovW": "The location you see in the email is based on the IP address. This means that the location isn\u2019t exact, and in some cases it could be pretty inaccurate. However, if the location is more than a few counties or even countries away, that\u2019s a clue that this might not have been you.",
+ "T1sfFi": "or ",
+ "T2OHow": "Stuff you add here is automatically shared with your team. You can adjust permissions for each folder to control who sees what.",
+ "T2REvL": "Helpful tools",
+ "T2Uxhd": "Already invited by another team",
+ "T2wYhx": "{teamAdminCount, plural, one {Team admin: {adminList}} other {Team admins: {adminList}}}",
+ "T32Wc8": "This may take a while",
+ "T3GDqs": "Saving to Dropbox",
+ "T3YUYa": "Cannot upload folders in this browser",
+ "T3s8+k": "Managers",
+ "T4/637": "Other",
+ "T45O2I": "Save",
+ "T49I/A": "{count, plural, one {{name} rolled back {count} item} other {{name} rolled back {count} items}}",
+ "T5+cEx": "Set your password",
+ "T58u0R": "Check out our support page for more info.",
+ "T59HGQ": "Verify your primary email first",
+ "T59NfR": "Remote device wipe",
+ "T5X/jN": "Let people see who viewed their files, and track traffic and insights too",
+ "T5XQyu": "More about tickets",
+ "T5g6Zg": "Wiki",
+ "T5oHt8": "Members are allowed by default to link personal and work Dropbox accounts and use both on the same computer. If you turn this setting off, members can still link their accounts but can only use one account on their computer.",
+ "T5vgV/": "Content",
+ "T6igfz": "Verify {domain}",
+ "T6lrWZ": "Manage your team\u2019s activity, control who can access and share team files, and quickly restore deleted or past versions.",
+ "T75j+Z": "Company size",
+ "T7C/l9": "This raises the chance of a leak of sensitive personal data.",
+ "T7G1s5": "Show plans",
+ "T7RNQf": "Integrated cloud content",
+ "T7fm6v": "Update",
+ "T7tcC/": "Exit search",
+ "T82eqZ": "Go back",
+ "T84o0D": "Attach files and compose emails with Outlook",
+ "T8BfJ2": "Zoom in",
+ "T8hlRT": "You\u2019re with a group of 3 people or more. You want to work smarter, get organised and launch great ideas together.",
+ "T8q3ix": "Connect with Zoom",
+ "T91B2R": "Copy link",
+ "T9LYYC": "Do any of these help with syncing?",
+ "TAFOT4": "People at {team_name} can view until {date}",
+ "TAK0SD": "{numYears, plural, one {Get {discount,number,::percent .##} off {numYears,number} year of {dropbox_plan}*. This offer expires on {expiration_date}.} other {Get {discount,number,::percent .##} off {numYears,number} years of {dropbox_plan}*. This offer expires on {expiration_date}.}}",
+ "TAukDw": "Restored {filename}.",
+ "TBIxin": "Chat with support",
+ "TBdFWm": "The migration could not be cancelled. Please try again later.",
+ "TBruvE": "Due date",
+ "TC/bJ5": "Your Canvas is linked to another domain.",
+ "TCJe4K": "You\u2019re a member of this team folder",
+ "TCTlqi": "Copy to\u2026",
+ "TCn38D": "Forgotten password?",
+ "TCtfV0": "7 minutes",
+ "TD+XWC": "Sign in to a different account",
+ "TD/6ba": "Show off all your great work",
+ "TD8wZv": "Sync affected computer",
+ "TDBkMJ": "Top photo and video articles",
+ "TDhZyM": "Your subscription from Apple is no longer active.",
+ "TDjJYR": "HR template",
+ "TE3/Vi": "Deleted member folder",
+ "TE5+kn": "Change my email address",
+ "TE5rLR": "Email:",
+ "TEavO5": "See features",
+ "TEdz5F": "Sign up for a new account",
+ "TEfNGd": "Preview a shared folder",
+ "TF7OpG": "See other plans",
+ "TFC4CE": "N/A",
+ "TFE1fe": "Team files",
+ "TFeNOo": "Share",
+ "TFhSer": "Failed to open {app_name}",
+ "TFnOYM": "Change PayPal account",
+ "TG+M8C": "Learn more",
+ "TG07o6": "This doesn\u2019t set a default file browser for your team. Members can set this individually.",
+ "TGEyA+": "To add this folder, you\u2019ll need more space in your Dropbox.",
+ "TGhLSw": "{email} (pending)",
+ "TGiMOD": "Will you need more than 2 GB of space?",
+ "THAbub": "{count, plural, one {Deleted {count} item.} other {Deleted {count} items.}}",
+ "THdx1D": "{count, plural, one {Anyone with the link can view this folder. Expires in {count} day.} other {Anyone with the link can view this folder. Expires in {count} days.}}",
+ "THqYB0": "To share this file with others, copy and paste this link:",
+ "TI+0AZ": "This lets members share with people who aren\u2019t in the team Dropbox account.",
+ "TIFdVv": "{username} locked editing for this file. You can still view the file and keep up to date on changes here.",
+ "TIUrJt": "Show less",
+ "TIW3Pz": "Change to auto-PDF folder",
+ "TIt80k": "You haven\u2019t linked any devices to your work Dropbox account. Install Dropbox to sync your devices.",
+ "TJ1wmh": "Safely store select docs, photos and videos",
+ "TJIDl1": "Member already invited",
+ "TJfgIg": "Watermarking",
+ "TJrsig": "{familiar_name}, you have an exclusive offer.",
+ "TK2QnS": "We'll recommend the best plans based on your choices",
+ "TKRX3z": "{count, plural, one {{name} moved {count} item into {dst_folder}} other {{name} moved {count} items into {dst_folder}}}",
+ "TKjS0r": "Policy deleted.",
+ "TL22S6": "Join",
+ "TMe0HK": "Add a name",
+ "TNAqZX": "Can edit",
+ "TNjy/M": "Identity provider sign-in URL",
+ "TNlF9o": "Missing files article",
+ "TO0BYf": "Select an account",
+ "TOHYFj": "Original date",
+ "TOuFP4": "Go to Activity log",
+ "TPGiG9": "Save hard drive space automatically",
+ "TPm6sk": "Successfully verified {subdomain_name} since you\u2019ve already verified {primary_domain_name}",
+ "TQEQ2l": "See who\u2019s viewed or edited a file, and who it\u2019s been shared with on Slack.",
+ "TQFLz/": "Active",
+ "TQZHJp": "Advanced",
+ "TQh9Oq": "{count, plural, one {{count} month} other {{count} months}}",
+ "TQmLgY": "Anyone in your {trademark_business} team with this link and password can edit the file. Downloads disabled.",
+ "TRKomw": "@mention someone",
+ "TSbTsY": "{value} degrees",
+ "TShGoq": "Transfer up to {premium_send_size_limit}",
+ "TSuGNL": "You\u2019re about to cancel {trademark_business} and disband the {team_name} Dropbox team",
+ "TTRG/c": "{price} (includes GST)",
+ "TTs4GC": "What is file recovery?",
+ "TU1rgQ": "Anyone with the link and password can view this file. Downloads disabled.",
+ "TURZT1": "{count, plural, one {{name} moved {count} item from {src_folder} to {dst_folder}} other {{name} moved {count} items from {src_folder} to {dst_folder}}}",
+ "TUs4hQ": "Restored files",
+ "TV7RnI": "To open this file, you need to verify your email.",
+ "TV9R9r": "Request declined",
+ "TVFEI9": "{filename} can\u2019t be opened.",
+ "TVO3K4": "Warning icon",
+ "TWEi2h": "Merge secondary team into yours?",
+ "TWZWgd": "View members",
+ "TWpgyj": "{count, plural, one {Successfully restored {count} item.} other {Successfully restored {count} items.}}",
+ "TX2HFO": "Send files without using Dropbox storage space",
+ "TXA8UM": "Only members with a link can access the Paper doc. External sharing is disabled.",
+ "TXLkCC": "Meeting notes",
+ "TXNmX4": "You recently reset your Dropbox password or email address. Please wait 24 hours and try again.",
+ "TXi4wU": "Hold activated. We\u2019ll start collecting files straight away.",
+ "TYVys/": "{name} shared {item_name}",
+ "TYc4E/": "Choose which admin roles can access the Content page to manage your team\u2019s content. More about admin roles",
+ "TYsEYZ": "Include an image on the splash screen that is shown when your team shares files or folders.",
+ "TZ3tZj": "Get Dropbox for personal use",
+ "TZ9C0Q": "Tasks marked as complete here will have their status changed to 'Done' in Jira automatically.",
+ "TZD+x6": "Upgrade to add folder",
+ "TZEb0Z": "Yes. Moving to a Business account is easy! All of your content will stay the same \u2013 your files will stay where they are and all of your settings (such as shared folder relationships and linked devices) will remain the same. For admins, all of your team members who already use Dropbox will have the same experience, and anyone without an existing Dropbox account will be prompted to sign up when you send them an invitation. ",
+ "TZJDRY": "Send with link",
+ "TZiR1V": "Renewal date",
+ "TZiYnT": "From {date}, we\u2019ll charge you {scheduled_total} per year on your iDEAL account.",
+ "Ta7Twa": "Below are some articles with information on common account downgrade and deletion questions. Please see if one of these articles addresses your question.",
+ "TaHGEK": "Bring the conversation to your work",
+ "TaMI0k": "Sign in as user",
+ "TbG2Sk": "Close sidebar",
+ "TcIDqw": "You\u2019re an admin of the {team_name} Dropbox account.",
+ "Tcc3Qb": "your",
+ "TcqXAF": "Info types",
+ "Td4ijt": "Shared at {file_request_name}",
+ "Td8CMX": "View more billing history",
+ "TdEKZP": "Small business",
+ "TdUEYh": "\u201cOur team is constantly working across different countries, time zones and offices. A lot of solutions can accommodate that now, but none make it as seamless as Dropbox and Dropbox Paper.\u201d",
+ "TdjsBN": "Zoom settings",
+ "Te1t0b": "Allow access to your admin console",
+ "Te60No": "Cannot archive an active campaign",
+ "TeH7ne": "Ctrl + x",
+ "TeXmqh": "Adding logo...",
+ "TeZMo7": "Contact Dropbox support",
+ "TejRDA": "Are you sure you want to cancel {dropbox_family}?",
+ "TfIR2l": "Overdue \u2022 Open until today at {time}",
+ "TfIt0w": "Paper template",
+ "TfYT+f": "Upgrade to {trademark_business} to enable all link settings.",
+ "TfcBKS": "This lets members add folders created by people outside the Dropbox team. This setting doesn\u2019t affect folders that members are invited to view.",
+ "TfeWUu": "Green",
+ "Tgwos1": "Calendar and Contacts",
+ "ThlKSJ": "We'll let {email} know that they can finish joining your team.",
+ "Thllsi": "{count, plural, one {{name} shared {count} item} other {{name} shared {count} items}}",
+ "TiGLzM": "After following the instructions to enable third-party cookies for your browser, select 'Continue to editor' to reload.",
+ "Tin/Ku": "Add a reply",
+ "TioE81": "{member_name} and new members of the {parent_folder} folder won\u2019t be able to see future changes to this shared folder.{br}To add more people to this folder in the future, you\u2019ll need to invite them directly.",
+ "TivL0w": "Connect another {service_name} account",
+ "Tj12s5": "Invite-only",
+ "TjBl9f": "IP address:",
+ "Tjck7C": "Paper doc",
+ "Tk3ctx": "Registration number: 00018",
+ "Tl7D2u": "Priority email support",
+ "TlB3sY": "You rewound this folder to {rollback_date}",
+ "TlHewx": "Let members add another email address to receive shared content. Even when this setting is off, admins can manage secondary emails via the Dropbox API.",
+ "TlRCFw": "* You can only use the offer if you received it from Dropbox. Dropbox reserves the right to cancel, suspend and/or modify the offer for any reason, including for fraud, technical limitations and failures, or causes that impact the integrity of the offer.",
+ "TlSbVJ": "Having trouble with the domain?",
+ "TmBa2T": "Your account will be merged into the {team_name} Dropbox account, where you\u2019ll have\na private area for your stuff. {team_name} admins will be able to manage your files and Paper docs.",
+ "TmlIOu": "Dropbox for iPad",
+ "Tn9b99": "You\u2019ve cancelled your change.",
+ "TnNWv2": "Download HTML file",
+ "TnYT4C": "Close",
+ "Tnfuoj": "Already invited",
+ "Tnr+vP": "Admin",
+ "ToHyF6": "Items you added to a shared folder",
+ "Tojmyg": "Removing {name} will cause them to lose access to folders that have been shared with the group.It might take a little while to remove members from all of this group\u2019s shared folders.Are you sure you want to do this?",
+ "TosYU9": "Preparing too many downloads at once. After some finish, you can start more..",
+ "Tp6uid": "Top-level editing",
+ "Tp96Me": "Present",
+ "TpJn8o": "Owner",
+ "TpZ1Vz": "Place fields to specify the sections that needs to be signed, dated and more.",
+ "TpeyP2": "Minimum 5 characters",
+ "Tq1+vX": "{value, plural, one {{value,number} hour ago} other {{value,number} hours ago}}",
+ "TqF6bR": "mins",
+ "TqRKfd": "Capture inspiration on your phone or tablet",
+ "TqSnEH": "Only people who can edit these items can restore them.",
+ "Tr8ggC": "Your credit card wasn\u2019t charged.",
+ "TrJz4r": "Your account will be merged into the {team_name} Dropbox account, where you\u2019ll have\na private area for your stuff. {team_name} admins can manage your files and Paper docs if they\nupgrade the account to {trademark_business}. {team_name} has disabled Smart Sync,\nso you\u2019ll be signed out of Dropbox and online-only files will be downloaded to your hard drive\nnext time you sign in. You\u2019ll sign in with {work_email}.",
+ "TrKcya": "A problem while using App Centre",
+ "TrMn7R": "On older version ({timestamp})",
+ "TrPWiw": "or upgrade now",
+ "Trkqle": "{price}/person/month",
+ "TsSIGV": "Locked by you",
+ "TsUm5r": "We'll let {approvedUserEmail} know that they can finish joining your team. You can add them to groups and folders straight away.",
+ "TsV/DS": "{count, plural, one {You unshared {count} item in {folder_path}} other {You unshared {count} items in {folder_path}}}",
+ "TtPMcl": "Bit rate",
+ "TtbUbu": "Contact support",
+ "Tu/L/W": "Enable or disable commenting on company files",
+ "TuBzCl": "Invitation request by {suggestingUserName}",
+ "TuH4om": "{file_name} saved as a PDF",
+ "TuJPPJ": "Cannot use Transfer",
+ "TuViF7": "Invite members",
+ "TulkA6": "You can search your organisation\u2019s Google Directory when inviting new people to the team. That way you don\u2019t have to type in their emails by hand.",
+ "TvR0pd": "Play video",
+ "Tvtst8": "Family",
+ "TwBGP4": "The {team_name} shared workspace is full",
+ "TwKMzV": "{value, plural, one {1 file shared with your team} other {{value} files shared with your team}}",
+ "TwTyjH": "{count, plural, one {{count} open ticket} other {{count} open tickets}}",
+ "Twn9lv": "Loading search\u2026",
+ "TxJKkI": "Not a valid email address",
+ "TxpyMM": "View in Slack",
+ "TyLekI": "{service_name} settings",
+ "TyOwF/": "Can\u2019t switch billing period",
+ "TybZfs": "Members of this folder with this link can view this folder. Downloads disabled.",
+ "Tyi6tl": "Your personal Dropbox was successfully installed. Now you can add your {secondary_label} Dropbox.",
+ "Tyl6TD": "Remove",
+ "TyzOKV": "Upload more files",
+ "Tz6J7O": "Save changes",
+ "Tzf3Z4": "Front of the personal folder.",
+ "Tzjy8m": "Dropbox can contact me about my feedback",
+ "TzlAQL": "Give multi-team admin access",
+ "U+/i5L": "View file",
+ "U+lU7/": "You\u2019re cancelling your scheduled billing change. Your Dropbox {plan} plan will be renewed on {date} and you will be billed yearly.",
+ "U/bb2x": "You unshared {item_name}",
+ "U/fUL+": "Check your device for a notification",
+ "U/g9Tk": "Enjoy peace of mind and access your stuff anywhere.",
+ "U03r11": "Add a backup phone number",
+ "U0MFwx": "{index}. Tell us about yourself",
+ "U0ad8c": "Invited",
+ "U0zU8J": "Executive/business management",
+ "U1/uFy": "Edge",
+ "U106/E": "multiple apps",
+ "U1DxZY": "Detected on",
+ "U1USYy": "The policy covers everything, including current and future files and subfolders.",
+ "U1VmHo": "Persistent ID + email assertion",
+ "U1k/VD": "Password-protected. Couldn't save as PDF",
+ "U1rFdc": "Allow people with an {listOfDomains} email address to ask to join your team and to see some basic team info, such as profile photos, names and email addresses.",
+ "U2+MNo": "The report will show all files labelled before yesterday at {hour}",
+ "U22Fpo": "Member shared malware",
+ "U2JE9M": "Verifying",
+ "U2T2Tq": "This album is empty",
+ "U2Tu4K": "Choose how new files are downloaded to your team\u2019s computers:",
+ "U2o955": "Get organised. Get working. Get Dropbox.",
+ "U2rhFx": "Anything that was no longer available before this date won\u2019t be held",
+ "U3+nRx": "Create a report of all member and sharing activity for {display_name}. We\u2019ll email you at {email} when it\u2019s ready to view in your Dropbox.",
+ "U34Aor": "{count, plural, one {{count,number} other} other {{count,number} others}}",
+ "U3P4b4": "Why can\u2019t I see the Dropbox sync icons on my files or folders?",
+ "U3XC4Z": "All members will need to reset their passwords before they can sign in. We\u2019ll send an email to each member with password reset instructions.",
+ "U3lqGP": "You turned off viewer info",
+ "U3vijj": "",
+ "U3y3i9": "Creating folder...",
+ "U43Usz": "
",
+ "U4nM4V": "Click 'Open with' and select Adobe Sign to open PDFs or Word documents.",
+ "U4sggG": "
How to cancel your Dropbox subscription
Cancel a free Dropbox trial
How to delete a Dropbox account
Find a billing receipt or invoice
Change your billing information
How to edit information on a Dropbox invoice
Look up a credit card transaction
Find out more about refunds
",
+ "U5GcqR": "{value, plural, one {for {value,number} day} other {for {value,number} days}}",
+ "U5LJUL": "Twitter",
+ "U5Og04": "Phone input",
+ "U5fgWD": "Yes",
+ "U5kP2t": "Business team icon",
+ "U5lkG8": "You\u2019ll get a file that lists all items covered by this policy, including each item\u2019s status.",
+ "U6Nhxt": "If you can\u2019t find an app you\u2019ve connected previously, check Connected Apps.",
+ "U6Z+qK": "Toggle the switch at the top of the panel.",
+ "U6dkSI": "View all invoices",
+ "U6qGE8": "Folders",
+ "U75RtN": "Hide resolved comments",
+ "U7AlUZ": "Phone",
+ "U7Cyr3": "Mobile sharing links",
+ "U7dFRR": "Three months ago",
+ "U7yWcO": "Membership",
+ "U8/o8J": "Members with edit access can add people.",
+ "U8EXsA": "During this time, members only shared with people in the team",
+ "U8gAk6": "Password-protected and expiring links",
+ "U918Pr": "{trademark_family}",
+ "U9SY4w": "We can only fit {num} characters (a couple of paragraphs or so)",
+ "U9rIPB": "Create one by clicking 'New card' above.",
+ "UA1n47": "{message}\u00a0How to set shared link permissions",
+ "UA6rtX": "We sent an email to {email}.{br}You must click \u2019Confirm\u2019 in that email to finish setup.",
+ "UA9nt1": "I\u2019d like to create and share a new folder",
+ "UAsFSG": "Plans & upgrade",
+ "UAt5LI": "{reason} See our Help Centre for more information about password expiry and securing your account.",
+ "UBV5SW": "Select Accept under First-party cookies and Third-party cookies",
+ "UC14WV": "{trademark_business} admin",
+ "UC1mA0": "Limit raised to {team_limit} teams",
+ "UC3lLM": "Sophisticated admin features and as much space as you need.",
+ "UCIin6": "Your team will no longer be able to make files online only with Smart Sync.",
+ "UCUmtB": "We were unable to fetch linked devices.",
+ "UCs5A/": "Compress, edit or sign PDFs",
+ "UCxdu3": "Failed to copy team ID to clipboard",
+ "UD5U3y": "Other types",
+ "UD6TiK": "Your Dropbox account is full. To continue, remove some files or ask your admin for\n more space.",
+ "UDck+c": "Call us to speak to a Dropbox Support agent.",
+ "UDiJ1x": "Submit",
+ "UDmLV7": "{count, plural, one {{count} additional licence} other {{count} additional licences}}",
+ "UDv7Az": "{first_name}, join this Dropbox account and work better together.",
+ "UE9BBM": "Sell your creations simply and easily.",
+ "UECkC8": "Successfully disabled security key.",
+ "UEVTtp": "A billing failure occurred for this invoice on {date}.",
+ "UFB0OU": "Lets them view, comment and edit.",
+ "UFHFaL": "Requesting\u2026",
+ "UFXxci": "Save more attachments",
+ "UFpE+s": "GB",
+ "UG/sAv": "See members",
+ "UGz3hA": "
Cancelling your {currentPlanName} plan? Automatically back up one computer \u2013 regardless of size \u2013 for half the price of Plus.
{backupPlanName} is {monthlyPrice}/mo and lets you easily recover your files if things go wrong.
",
+ "UIRKh5": "Note: People will still see your primary email across Dropbox. How secondary emails work",
+ "UIVSGI": "Your licences have been added.",
+ "UIrJdN": "Manage licences",
+ "UIud2H": "Link temporarily disabled",
+ "UJk/J1": "Sign up with Google",
+ "UJsFur": "We couldn\u2019t find that app",
+ "UK/T1m": "Please verify your Dropbox email address, then try again.",
+ "UKFJ6m": "Cancel",
+ "UKdoiD": "From",
+ "UKvMk2": "Align with your team. Gather updates on decisions, progress, risks or personal highlights in a single place.",
+ "UL+C3d": "{numYears, plural, one {{name}, get {discount,number,::percent .##} off {numYears,number} year of {dropbox_plan}*} other {{name}, get {discount,number,::percent .##} off {numYears,number} years of {dropbox_plan}*}}",
+ "ULJM1Y": "Increase visibility and access",
+ "ULSEEh": "{price} per month. Save {savings}",
+ "UNRD4e": "Having trouble scanning the image?{br}Click here to download Dropbox manually",
+ "UNS+kN": "Pick a date",
+ "UNi0qU": "unknown",
+ "UOGf2g": "Image",
+ "UOL9zS": "Email addresses",
+ "UOQ2vp": "Sign in",
+ "UOYvGh": "Dropbox gives you secure access to all of your files. Collaborate with friends, family and colleagues from any device.",
+ "UOdM/M": "Create all member data",
+ "UOhn41": "Folders from computer",
+ "UPLqLx": "Enterprise Mobility Management (EMM)",
+ "UPO/6i": "Comments are disabled on this file",
+ "UPlChr": "Previous",
+ "UPrzRq": "Unpin",
+ "UQBCLJ": "Enterprise",
+ "UQBfa8": "Open",
+ "UQW1q/": "
Sign in to dropbox.com.
Click your avatar (profile picture or face icon) in the top right-hand corner.
Click Settings.
Click the Plan tab.
Click Cancel plan at the bottom of the page.
If you can\u2019t see Cancel plan, you may have signed up for Dropbox on your mobile device. If you did, downgrade your plan with iTunes or Google Play.
Note: Cancelling your plan doesn\u2019t delete your Dropbox account
Scroll down and click I still want to downgrade.
Select the reason why you want to cancel.
Click Continue.
Scroll down and click I still want to downgrade.
You\u2019ll receive an email confirmation. The sender will be no-reply@dropbox.com and the subject line of the email will be Dropbox Plan will not be renewed.
To confirm your downgrade on dropbox.com, go to the Billing tab in your account settings and click Change next to Billing period. You should see a notification titled Plan downgrade scheduled.
",
+ "URERP3": "Dropbox is stuck syncing, won\u2019t open or displays an error",
+ "URqjZh": "How files are used",
+ "US5wke": "Shared with",
+ "USBRIw": "Primary email can\u2019t be deleted.",
+ "USKkbD": "White balance",
+ "USM+is": "{name} unshared {item_name}",
+ "USX7uV": "Connect",
+ "USf88J": "Continue using {trademark_business}?",
+ "UTHoed": "The owner hasn\u2019t granted you access",
+ "UU1q+t": "Internal link",
+ "UUa/f+": "Something went wrong at our end. Please try again later.",
+ "UUtsO2": "Support admin",
+ "UV7R1l": "Allow your team to enable computer backups?",
+ "UVpEHw": "Limit who sees what and keep sensitive data protected",
+ "UVyMNH": "+ {free_months} months free with your first year",
+ "UXQMFI": "How disappointed would you be if you could no longer use Vault?",
+ "UXRilG": "Collections",
+ "UXue2m": "Print invoice",
+ "UY5L9t": "Collaborate in real time",
+ "UY88fh": "View later dates",
+ "UYGf3m": "Can\u2019t invite some of these emails",
+ "UYP3l9": "The files will stay up to date, but anything bigger than 3 MB won\u2019t be available.",
+ "UYiZrN": "When you preview a file in Dropbox, you can watermark it with your logos or text.",
+ "UYrSZ0": "Active",
+ "UYx/2r": "Audio",
+ "UZ+XVI": "{count, plural, one {Copied {count} item to {dest}.} other {Copied {count} items to {dest}.}}",
+ "UZ/fSg": "From our Help Centre:",
+ "UZJVrh": "Organisation",
+ "UaFj4A": "Audit downloads, shared folder usage and other actions",
+ "UaiFvq": "Viewed {timeAgo} on desktop",
+ "UakIAw": "Customer support will send the team member an email with instructions on how to gain access to the account.",
+ "UbKsgI": "With {plan_space} of space and powerful sharing features, {dropbox_plan} keeps your stuff accessible and safe wherever you are. For a limited time, get {discount,number,::percent .##} off with your first year of {dropbox_plan} when billed yearly!*",
+ "Ubk+Of": "Do your best work from wherever you need to be.",
+ "Ubo/+W": "Removed members ({num})",
+ "UbqDsE": "Choose a default for files added on dropbox.com. Online only saves space for teams with\n large files. Local keeps files available offline. Members can change this setting.",
+ "UcT0sN": "You and all admins in your team will lose admin privileges",
+ "UcTa6V": "Note: When using the audio CAPTCHA, please use the Download button instead of the Play button.",
+ "UcYcHG": "File locking",
+ "UcbZSY": "{trademark_plus} for individuals",
+ "Ucjzq4": "Since you\u2019re the only admin of {team_name}, you need to give someone else on your team admin permissions before you leave the team. You can do this by clicking the gear icon to the right of a team member\u2019s name and selecting \u201cGive admin permissions\u201d.",
+ "Ud2R3J": "Start again",
+ "UdCRcC": "Business",
+ "UdFJxn": "{value, plural, one {1 member works with them} other {{value} members work with them}}",
+ "UdPKgS": "Lead: @angela",
+ "UdUQvg": "Plans & pricing",
+ "UdXW3l": "Store all of your work with space to spare",
+ "UdcbDk": "Classification",
+ "Udcmao": "Choose the Dropbox files you want to attach",
+ "Udug8i": "How we use your response",
+ "UeLSlX": "Active",
+ "UeLcea": "Sign-in help",
+ "UeUj1o": "{federation_name} organisation admins",
+ "UfFyft": "Company name updated.",
+ "UfHHBh": "Members of \u201c{folder_name}\u201d folder",
+ "Ufb68N": "Send with",
+ "UfuZTt": "Open in",
+ "Ufvtdi": "Your trial ends on {date}. If you don\u2019t cancel your free trial by that date, we\u2019ll charge you {scheduled_total} per {schedule} (including applicable taxes) until you cancel your plan. If you have any charges after your trial, they won\u2019t be refunded when you cancel, unless it\u2019s legally required. All amounts shown are in {currency}.",
+ "Ug1XLX": "New value",
+ "UgH/WV": "Strikethrough",
+ "UgIE6p": "If all agents are busy, you can send an email to Dropbox Support directly from the chat box.",
+ "Ugdb/e": "Ask to join",
+ "UhEDyY": "Sell something amazing",
+ "UhMk+M": "Uploading {filename}",
+ "Ui1I/f": "You\u2019ve already cancelled your trial.",
+ "UicSWC": "Experiences",
+ "Uj/CzJ": "New shared folder modal",
+ "UjNP9a": "Rewind to a previous time",
+ "UjVaKF": "Error creating report.",
+ "UjZewP": "Open, share and collaborate on your content with these apps you can launch while using Dropbox.",
+ "UjnZMy": "Click here to describe this folder.",
+ "UjpizQ": "Invite colleagues to join your work Dropbox here.",
+ "Uk7/ur": "It looks as though someone removed you from this file",
+ "Uk8v6w": "Only an admin can permanently delete",
+ "UkLHE0": "Meal plan",
+ "UkMX17": "Give and get feedback",
+ "UkQZnd": "Trusted devices will never ask you for a security code again. You should only trust this device if you trust everyone who uses it.",
+ "Ukz1C1": "Cookies",
+ "Ul0kIv": "Your {plan} will be downgraded to Dropbox Basic on {date}. {billing_summary}",
+ "UlLDLI": "Branded sharing",
+ "UmC3zH": "Links with no expiry date",
+ "UnFd0B": "Are you sure you want to disconnect {service_name}? You\u2019ll need to reconnect to continue using {service_name} integrations on Dropbox.",
+ "Uo2bi4": "Help with billing and payments",
+ "Up1LaJ": "Trello",
+ "UpDkTB": "Create file in...",
+ "UpN7ap": "Find out more about team merges",
+ "UpPnqL": "{owner} shared this with you.",
+ "UpWoGT": "Activity: last week",
+ "Uq7qHV": "You\u2019ve got the basics down \u2013 now you\u2019re ready to go.",
+ "UqoZNX": "{name} rewound {item_name}",
+ "UraGyT": "Trusted computers will never ask you for a security code again. You should only trust this computer if you trust everyone who uses it.",
+ "Us//SY": "Manage options",
+ "Us2jrN": "Powerful sharing, collaboration tools and {plan_space} of space.",
+ "Us3rQZ": "To",
+ "Us4cL6": "Dropbox doesn\u2019t currently offer HIPAA support for Paper.",
+ "Us8RQ2": "Continue",
+ "UsxvcU": "Try adjusting filters.",
+ "UtDXzH": "Remove your access to this folder?",
+ "UtzS9V": "Add members from any team you manage",
+ "Uu2ETy": "That comment has been resolved.",
+ "Uu4dKU": "If you or a member of your plan are using more than {free_quota} of storage, you\u2019ll be over quota. That means your files will stop syncing, you won\u2019t be able to upload any new files or folders, and you won\u2019t be able to restore earlier versions of your files.",
+ "UuNNEL": "Can\u2019t find the verification email?",
+ "UvWmPe": "Dropbox {trademarkPlus}",
+ "Uw3Mp/": "Starts with {standard_plan_size}",
+ "UwFkjc": "Edit",
+ "UwJTAY": "Morten Thomsen, Global IT Lead",
+ "Uwr6W8": "Loading...",
+ "UwsrpY": "Product",
+ "Uwu+xo": "Business and teams",
+ "UwyAjF": "Error sending invitation.",
+ "UwzCW9": "Backups",
+ "Uy22M1": "Mobile",
+ "UyNJZ6": "Nothing, they won\u2019t be deleted forever or hidden. Only an admin can delete these items permanently.",
+ "Uyxn/h": "Desktop",
+ "UzKKzX": "To upload a file from Dropbox:",
+ "V+OMEd": "Everyone in your team",
+ "V+vqyG": "Connect Zoom",
+ "V/EGBQ": "Share your brand \u2013 add your custom branding to stuff you share",
+ "V/X177": "Menu",
+ "V/s9ms": "Dropbox Paper is more than a doc, it\u2019s a workspace that brings creation and coordination together in one place.",
+ "V09hHN": "Are you sure you want to disconnect {name}? This app will no\n longer have permission to access your Dropbox.",
+ "V0Dir9": "Access your files and folders from anywhere",
+ "V0REWL": "Purge confirmation",
+ "V0x5kM": "As a support admin, they can handle some basic tasks for a single team, such as resetting passwords and contacting support.",
+ "V0xNhF": "Continue in this browser",
+ "V1H0x+": "{count, plural, one {{count,number} minute} other {{count,number} minutes}}",
+ "V1HktT": "Your scheduled changes have been cancelled.",
+ "V1RmAH": "See my account details",
+ "V1eUAq": "Can I purchase a gift now but send it later?",
+ "V1gDEG": "from {owner} ({team})",
+ "V1uLI/": "Cancel your {trademark_business} trial.",
+ "V2lejD": "Something went wrong. Please reload the page.",
+ "V2uoqS": "Enables HIPAA compliance",
+ "V2wwgQ": "Something went wrong. Please try again.",
+ "V3Sp4n": "{numMonths, plural, one {Get {discount,number,::percent .##} off {numMonths,number} month of {dropbox_plan}*. This offer expires on {expiration_date}.} other {Get {discount,number,::percent .##} off {numMonths,number} months of {dropbox_plan}*. This offer expires on {expiration_date}.}}",
+ "V3rkGP": "Questions? Check out the Family plan overview.",
+ "V4x10U": "Add to Paper doc",
+ "V59AFj": "Update access to this folder?",
+ "V5Cskr": "Info types",
+ "V5EJmv": "Delete account photo",
+ "V5KZzi": "Delete files?",
+ "V5VsmR": "Start in Dropbox",
+ "V5WMXh": "Share",
+ "V5WlNn": "Whose content",
+ "V5oSno": "Show actions",
+ "V6/bVk": "Those files already exist in that folder.",
+ "V6/f3E": "You can invite up to 5 other members aged 13 and up.",
+ "V61cBn": "Team folders",
+ "V6J1qX": "Will you need advanced admin features such as device approvals, tiered admin\nroles or phone support?",
+ "V6wEfP": "(save {discount,number,::percent})",
+ "V7BfLN": "Name",
+ "V7cE99": "Off (team only)",
+ "V7lg8n": "Thank you for your feedback.",
+ "V7zqnY": "Get security codes to use when you can\u2019t access your phone.",
+ "V81LjE": "This must be a whole number",
+ "V8LEQk": "They'll be able to do things like access, manage or delete any team folders.",
+ "V8NY3Q": "Your file request was sent. We\u2019ll send you an email when someone uploads a file.",
+ "V8ZjR5": "Get started with Paper",
+ "V9NIqc": "There has been an error connecting to {referral_type}",
+ "V9uCyQ": "Other",
+ "V9xVMI": "The folder \u2018{old_name}\u2019 has been renamed to \u2018{new_name}\u2019",
+ "VA5gUe": "This lets members save files to Dropbox directly from Microsoft Word, Excel and PowerPoint.",
+ "VAK/xg": "\u201cOur design process begins with our customers. They constantly give us great ideas on fit, style, colours and materials. And we do that all in Paper.\u201d",
+ "VAWgqj": "
For limited functionality, try
Dropbox on mobile web",
+ "VBZAUX": "Dropbox needs to verify your email address {email} to add members to your team. It\u2019s as simple as clicking the link in the verification email we send you.",
+ "VC0THb": "Your {trademark_business} team has been downgraded",
+ "VCIDGl": "IT",
+ "VDSuu6": "{app_name} needs access to this file",
+ "VDhZk7": "I want to look up information relating to:",
+ "VDjS9+": "Create folder",
+ "VEAPwH": "Please give us feedback on your Family Room",
+ "VEBMFf": "Add a file",
+ "VEFEJI": "Every three years",
+ "VEb96o": "See available plans",
+ "VEq+Pm": "No",
+ "VF6r2c": "From",
+ "VF7AsU": "Apps managed for your team",
+ "VFuENR": "Couldn\u2019t open this file. Please try again later.",
+ "VFvg1T": "Joining the team",
+ "VG54To": "means Dropbox Business, Dropbox Enterprise and Dropbox Education, but does not include Beta Services or Excluded Features.",
+ "VGAghr": "Get {discount_percentage,number,::percent .##} off your annual {trademark_business} subscription!",
+ "VGD5gM": "You and your family members will be downgraded to {dropbox_basic} and you\u2019ll lose access to the plan\u2019s features.",
+ "VGO9WL": "{count, plural, one {Anyone with this link can view the file. Expires in {count} day.} other {Anyone with this link can view the file. Expires in {count} days.}}",
+ "VGjlS3": "You have reached the maximum number of outgoing requests",
+ "VHDgwR": "Work with your favourite tools",
+ "VHcDOU": "Create new",
+ "VI/pz9": "Cancelling {trademark_business} \u2013 refunds and other info",
+ "VI0AtB": "What's the difference between {trademark_business} {standard_plan_name} and {trademark_business} {advanced_plan_name}?",
+ "VIDWC/": "Save to {cdm_tmf_name} folder",
+ "VIwHaT": "Updating...",
+ "VJBWIU": "What next?",
+ "VJMWwF": "Business logo",
+ "VJVYfQ": "Desktop",
+ "VJewNj": "Set notification options",
+ "VJrUt1": "Once they accept, they\u2019ll be added to your organisation",
+ "VK+2VG": "Free one-year file version history",
+ "VK0jfH": "Dismiss",
+ "VK8T8E": "School project plan",
+ "VKA3hu": "While members can\u2019t lock editing in the future, editing might still be locked for some files. To unlock those files, go to Content.",
+ "VKLPXm": "Browser",
+ "VKi3Pj": "Now you can send files to Slack or present in Zoom without leaving Dropbox.",
+ "VKtrco": "See who\u2019s viewed your files and when",
+ "VLOw+F": "I wasn\u2019t able to connect\u2026",
+ "VLPo6o": "Add invoice details",
+ "VLT6/6": "{trademark_hs_dbx_pro_bundle}",
+ "VLVJyp": "We can\u2019t find the meta tag",
+ "VM/Im4": "Premium productivity package",
+ "VMGE6I": "Group names",
+ "VMVrbc": "Are you sure you want to change permissions for {name} from {old_role} to {new_role}?",
+ "VMaRsa": "terms for beta services",
+ "VN3FDd": "Note that only active team admins will receive notifications",
+ "VN5PJ9": "Continue to set up payment",
+ "VNMIXK": "Only approved campaigns can be activated",
+ "VNgZtl": "If you appear in the content or need more help, please\nprovide your email address and we will get in touch if necessary.",
+ "VNpXkC": "Upload",
+ "VOB6rZ": "Invalid",
+ "VOTWDQ": "Issue date",
+ "VOUQh/": "Be productive",
+ "VOh/Vl": "
{name},
Would you like to connect the computer {device_name} to your Dropbox account ({email})? If you didn\u2019t request this, please click 'Cancel'.
",
+ "VOwTOw": "Invalid two-factor code",
+ "VPeXVB": "Can\u2019t show content because it has been taken down.",
+ "VQ7cBR": "Click \u201cYes\u201d if you no longer have access to your {email} email. We might be able to recover your account and change your Dropbox email address.",
+ "VQBu6a": "Large restorations may take a few hours to complete. Please check back later.",
+ "VQPsrL": "The secondary team\u2019s content, including sharing permissions, will be moved into your team\u2019s account.",
+ "VQpCZZ": "Create new group",
+ "VRIKXC": "Only you can add members to this group",
+ "VRlO+B": "Please enter the security code",
+ "VRnHfF": "Exclude activities in file operations",
+ "VRob09": "Content \u2013 Dropbox",
+ "VS2L6u": "New to Slack? Get started",
+ "VSSd4j": "Images",
+ "VSiE+b": "Create account",
+ "VSilQP": "Is renewed on {date}",
+ "VSzTxy": "Account created.",
+ "VT66qw": "SymLink files cannot be previewed.",
+ "VTOQTA": "Please check your Internet connection and refresh the page in a bit.",
+ "VTX0Qd": "This can take a while. We\u2019ll email you when the policy has been updated.",
+ "VTYsO8": "Invite members to your team",
+ "VTcp/5": "Partner portal",
+ "VTmRD4": "and your new monthly total is {recurring_amount_including_tax}. Watch out for an email with all of the details.",
+ "VTt2H7": "eSign",
+ "VUIAfM": "{value, plural, one {{value,number} day} other {{value,number} days}}",
+ "VUQimt": "You\u2019ve already scheduled a change to your billing schedule. If you want to choose a different billing schedule, first cancel your scheduled change.",
+ "VUbhV1": "{count, plural, one {{name} shared this file with {entity} and {count} other} other {{name} shared this file with {entity} and {count} others}}",
+ "VV/eYK": "You restored {single_item_name}",
+ "VVndBB": "view only",
+ "VW8Ib2": "Select labels to sync",
+ "VWJfAa": "For immediate help with signing in, visit our Help Centre for useful articles about account access, or visit the community to explore the help forums.",
+ "VWbMnR": "Add details such as the requesting lawyer and the reason for this hold",
+ "VWd41r": "Disconnect",
+ "VX2MOj": "Join the waiting list",
+ "VX4Xrf": "Get Dropbox for Android",
+ "VXEuAU": "Signed-in devices ({num})",
+ "VXH1tW": "Unmanaged users who changed their email and are no longer in your domain.",
+ "VXM7Tc": "Project Space",
+ "VXfkhw": "Showcase",
+ "VXsPAn": "Attach a Dropbox link and they\u2019ll always have the latest version.",
+ "VXuzqP": "The domain portion of the email address is invalid (the portion after the @: {domain})",
+ "VYO2JK": "End date (UTC):",
+ "VYQtwl": "Sign in",
+ "VYh0UK": "I agree to the HelloSign Terms and Privacy Policy.",
+ "VYifwL": "Background",
+ "VYioi5": "{count, plural, one {and {count} more} other {and {count} more}}",
+ "VZ71VE": "PayPal",
+ "VZE6IM": "The folder \u2018{path}\u2019 doesn\u2019t exist.",
+ "VZa0Ni": "Dropbox system extension",
+ "VZa8uZ": "Member space limit",
+ "VZewu0": "More about data governance",
+ "VZo77c": "And make clients happy too",
+ "VZq05E": "{count, plural, one {Once} other {{count} times}}",
+ "VZsav0": "You did it!",
+ "VZtrMS": "See what\u2019s inside with file previews",
+ "VacdFW": "{actor_name} shared this file in Slack",
+ "Vat0lJ": "Please accept Google\u2019s request in order to sign in.",
+ "VbRtEL": "Preview",
+ "Vc3rbO": "Your {standard} plan gives you {quota} of storage, simple sharing and collaboration tools. For more space and other features, you can upgrade to Advanced.",
+ "VcTut+": "{count, plural, one {As a member of the parent folder listed below, {member_name} can still edit \u201c{content_name}\u201d.} other {As a member of the parent folders listed below, {member_name} can still edit \u201c{content_name}\u201d.}}",
+ "VciIXA": "Now",
+ "VcpecB": "/month",
+ "VcxmM3": "{initiator_name} has initiated file recovery. This could take up to a few\n hours if there are a lot of files in {initiator_name}\u2019s Dropbox\n account. You can go ahead and close this screen. Rest assured, recovery will\n continue at our end. In the meantime, you can start working with\n {initiator_name} to remove the ransomware from the infected computer.\n We\u2019ll email you when their files are ready to use again.",
+ "VdDI7M": "Upload\u2026",
+ "Vdi01+": "Auto, fired, red-eye reduction, return not detected",
+ "VdufK7": "Send files to Slack from Dropbox",
+ "VeAz6Q": "Delete '{'group_name'}'",
+ "VeFhFg": "Are you sure you want to cancel?",
+ "VeKS9s": "Billed yearly",
+ "VeKs4S": "Off, did not fire",
+ "VeQVlR": "Back",
+ "Vep7Pr": "Resend email",
+ "Vf5SED": "Warning: To avoid potential sync issues, name should not contain \" * '<' '>' ? |",
+ "VfBTyj": "Your Internet connection isn\u2019t fast enough to download multiple files at the same time. Try downloading each file individually, or move to a location with better signal.",
+ "VfjryA": "Description",
+ "VftUGN": "Get your time back",
+ "Vg1D7j": "In order to perform this action, Dropbox needs to verify your email address to share links.",
+ "Vg93YJ": "{count, plural, one {/user/month, starting with {count} user} other {/user/month, starting with {count} users}}",
+ "VgH9Ou": "Deleted member folder",
+ "Vgd16U": "We were unable to mark the thread as read.",
+ "VgwMdM": "Name set",
+ "VhDnE6": "Remove me from this file?",
+ "Vhiogk": "Add to list",
+ "Vhipzc": "{remainingLicenses, plural, one {{remainingLicenses,number} licence available} other {{remainingLicenses,number} licences available}}",
+ "VihvjZ": "Read the case study",
+ "Vj13+e": "Send up to {upload_size} of files in each transfer",
+ "Vj2I5i": "New licence total:",
+ "VjY2Wx": "{target_user} is not a member of your Slack workspace",
+ "VjdrXm": "Leaving this page will cancel your uploads.",
+ "Vktr+0": "{name} edited just now",
+ "VkzHp1": "Apps you connect will show up here. Get started in App Centre.",
+ "VlArQA": "More about sharing",
+ "VlErup": "Upgrade to Professional to get watermarking",
+ "VlUxAL": "Reset filters",
+ "VlZABW": "Publish",
+ "Vla5t5": "Wednesday",
+ "VloA8O": "Show who\u2019s viewing this file to people who can edit.",
+ "VmFIqC": "Optional",
+ "VmspO5": "Assigned by you to other users",
+ "VnOv6W": "15-day trial",
+ "Vo1r9t": "This group was created automatically and includes invited members. To change who\u2019s in the group, admins can add or remove members of {team_name}",
+ "VoFStx": "I still want to downgrade",
+ "VoOTRI": "{count, plural, one {Remind your {team_name} admin to purchase {trademark_business}} other {Remind your {team_name} admins to purchase {trademark_business}}}",
+ "VogVc2": "Step 2 of 2",
+ "VomL62": "I don\u2019t understand how to use the features on this plan",
+ "VoogPu": "You won\u2019t be signed out, but you will be prompted to reset your password.",
+ "VopzGG": "Do more with your files",
+ "VpeS7h": "Restore content",
+ "Vq9cpR": "Manage",
+ "VqJgyP": "Force invited users with a Dropbox account in your domain to join the team account.",
+ "Vqx50y": "To reply and view more detail, open this file.",
+ "Vqyg65": "Show this ad on",
+ "Vr+yFX": "Easy-to-use sharing and collaboration tools",
+ "VrAscR": "Sign in to view",
+ "VrDLj+": "{count, plural, one {Change how this folder is synced to new members\u2019 computers. The change doesn\u2019t affect current members.} other {Change how these folders are synced to new members\u2019 computers. The change doesn\u2019t affect current computers.}}",
+ "VrehFA": "Coming soon! ",
+ "VrzLlO": "Before you continue with your {trademark_business} trial, please note that you have a Dropbox {trademark_plus} subscription managed through the {billing_store}. You must cancel it to avoid paying for two subscriptions.",
+ "Vs6oAH": "Dropbox is set up and ready to use.",
+ "VsOpFf": "deleted document",
+ "VsWgR6": "The Cadastro Nacional da Pessoa Jur\u00eddica, most commonly known as a CNPJ, is a number that identifies legal entities and other legal arrangements with the Federal Revenue Service of Brazil. It has similar functions to those of the CPF, the only difference being that it is unique to the use of legal entities. It is a 14-digit number with a specific format, like the following example: 00.000.000/0001-00",
+ "VsYlV4": "Try refreshing the page.",
+ "VtCAjE": "No credit card needed",
+ "VtNcy7": "{count, plural, one {{count} folder} other {{count} folders}}",
+ "VtuOEk": "Tidy up by month",
+ "Vu1ffz": "See plan details",
+ "VuKyiI": "Include all subdomains",
+ "VuL102": "Later",
+ "VuO63E": "Refresh",
+ "Vv9iwA": "Create",
+ "VvCRPI": "It won\u2019t interrupt your free trial period, and you\u2019ll transition seamlessly at the end of the {trial_days} days.",
+ "VvOgoh": "Upgrade to Dropbox {trademark_professional} to enable all link settings.",
+ "VvZ36k": "Confirm email",
+ "VwWRwG": "Enter password",
+ "VwpdMs": "Upgrade your{br}Transfer experience",
+ "Vwyfvj": "Member name or email address",
+ "Vx8YCV": "Great! It\u2019s all just a click away.",
+ "VxPVhW": "Secure from everyone else",
+ "VxV63U": "Only applies to your configured corporate network. This prevents people who are not in your team from sending and receiving Dropbox traffic.",
+ "VxmCCz": "No match found",
+ "Vy0v7n": "To open this file, make sure you\u2019re signed in to Google and Dropbox with the same email address.",
+ "VyFFNm": "Add admin",
+ "VyW7ZK": "
Below are some articles with information on common account downgrade and deletion questions. Please see if one of these articles addresses your question.
How to cancel your Dropbox subscription
Cancel a free Dropbox trial
How to delete a Dropbox account
Find a billing receipt or invoice
Change your billing information
How to edit information on a Dropbox invoice
Look up a credit card transaction
Find out more about refunds
",
+ "VyiLYJ": "{years, plural, one {Retention: {years} year since last activity} other {Retention: {years} years since last activity}}",
+ "Vz0Lur": "Give and get better feedback",
+ "VzD9xP": "Your plan after {trial_end_date}",
+ "Vzgmep": "You must select at least one folder",
+ "VzxkTo": "Get maximum security for your valuable files.",
+ "VzyR9o": "{count, plural, one {{count} folder} other {{count} folders}}",
+ "W+O/kh": "Your files will be uploaded securely to {name}'s Dropbox account. ",
+ "W+VWV3": "Loading...",
+ "W+aYVh": "Reset filters",
+ "W/23CF": "Loading...",
+ "W/B6jo": "Team folder renamed.",
+ "W/DI0T": "Unable to share the file",
+ "W/Ycc7": "Dropbox can help you remember to come back and add files \u2013 we\u2019ll send a reminder email in 1 week.",
+ "W/iS2m": "Dropbox will send an email to {email} with further instructions.\n You may need to check your spam folder or unblock no-reply@dropbox.com.",
+ "W/zj2A": "Send email notifications",
+ "W0TT1w": "Paper embeds any type of content beautifully and automatically, from code and design mocks to videos and sound. So, whether your team is making mood boards in Pinterest or choosing video clips from YouTube, everything related to their project is in one central place. And, because Paper is from Dropbox, the files you embed from your account are updated automatically whenever the file changes.",
+ "W1fhQk": "Select anything you think your team could use. Everything else will live safely in your personal folder.",
+ "W24U0i": "File or folder",
+ "W26068": "Set PIN",
+ "W2Lck+": "{count, plural, one {Moved {count} item to {dest}.} other {Moved {count} items to {dest}.}}",
+ "W2a+Sl": "Open Microsoft files with Google, and save back to the original file and format. Set your editor of choice as the default.",
+ "W2wrK9": "deleted shared folder",
+ "W3Vpv5": "When a lot goes wrong, Dropbox Rewind can help you undo it all. That way you can get back to the way things were.",
+ "W3tNbf": "Add email addresses",
+ "W42X9i": "Filter by",
+ "W4An+g": "Got it",
+ "W4EY4T": "Templates for HR teams",
+ "W4MpUS": "Please auth at least one user or team with the OAuth flow",
+ "W4Oj39": "
{name},
Which account would you like to connect to this computer? If you didn\u2019t request this, please close this browser tab.
",
+ "W4cJvK": "At-a-glance stats",
+ "W4vRXF": "Manage licences",
+ "W594l5": "{actor_name} shared this file in {meeting_name}",
+ "W5B/Ny": "Bringing stories to life",
+ "W5GSX/": "Try free for {trial_duration}",
+ "W5GXue": "Created {date,date,::MMM d, yyyy} at {timestamp} by {creator}",
+ "W5IO5F": "Results less than 24 hours old may still be being populated.",
+ "W5doya": "Removed from {sharedFolderName}",
+ "W5pK97": "You started a Dropbox {dropbox_plan} trial via the iOS app.",
+ "W5raf5": "Sales call notes",
+ "W5uw4O": "{count, plural, one {You restored a previous version of {count} item} other {You restored a previous version of {count} items}}",
+ "W6GbgF": "To set up a BAA, you\u2019ll need to turn off Paper and turn off Showcase for your team. Learn about HIPAA",
+ "W6uFFY": "Don\u2019t allow",
+ "W7CDSj": "Your billing location requires additional taxes. Your selected plan\n is {monthly_per_user}/user/month ({monthly_price} charged monthly).\n You\u2019ll only be charged if you don\u2019t cancel your trial before it\n ends on {trial_end_date}.",
+ "W7X9jY": "Extended version history",
+ "W7c2ld": "Failed to create invitation link.",
+ "W7oflT": "Calculate size",
+ "W853K9": "Text of watermark",
+ "W8LAoH": "Unable to hide section.",
+ "W8MK9H": "{count, plural, one {Can\u2019t add more than {count} member} other {Can\u2019t add more than {count} members}}",
+ "W8NaLw": "Connect {app_name}",
+ "W8PtDB": "As an enterprise admin, they can manage your entire organisation in the enterprise console, and sign in to the admin console of any team. They\u2019ll also become a team admin in their current team.",
+ "W8VyE0": "Unable to release the selected legal hold \u2013 please try again later",
+ "W99tYl": "Check your email to get started",
+ "W99vjf": "Not included in the report: files and folders that are only shared because they\u2019re in a shared folder. Find out more about sharing methods",
+ "W9eSr2": "I agree to the {trademark_business} Agreement and Terms.",
+ "W9zTwN": "Support",
+ "WACJND": "Members managed by",
+ "WAEQqE": "Project plan",
+ "WAMYrD": "Neutral",
+ "WANpxH": "Send for signature",
+ "WAQpuN": "Close",
+ "WAXhkk": "Extremely satisfied",
+ "WAYapU": "Alpha",
+ "WAod+y": "Connecting Dropbox",
+ "WBpV97": "Track views and downloads",
+ "WBqCIm": "This folder is shared",
+ "WC+jtc": "Edit",
+ "WC+meb": "Couldn\u2019t start signature request",
+ "WC105I": "Email my team to let them know about the move. View a preview",
+ "WCc1iu": "(current plan)",
+ "WDBNKp": "Client type",
+ "WDKLwG": "There was an error changing the plan.",
+ "WDoD3H": "Please sign in to the account that owns this file request.",
+ "WElJu0": "Search",
+ "WFVf8/": "Works with all types of content",
+ "WFtsee": "Priority support",
+ "WGQelc": "New state",
+ "WGjJzr": "How much space does my team get?",
+ "WGoyWQ": "Estimated time:",
+ "WH73xS": "Single sign-on enabled",
+ "WHRTbc": "Couldn\u2019t load settings. Please try again later.",
+ "WIBZO6": "Flash",
+ "WIDX5l": "Auto, fired, red-eye reduction, return detected",
+ "WIZvt9": "Approve campaign",
+ "WIcUMB": "Replace original",
+ "WJD8Gt": "Get powerful features and {space} of space with Dropbox {trademark_plus}. That\u2019s enough to store a lifetime of photos or a filing cabinet\u2019s worth of documents. Upgrade now",
+ "WJEoV5": "Please update your filter and try again",
+ "WJh9RW": "Message sent to {user_name} successfully.",
+ "WKcSo6": "Change settings...",
+ "WL0qyn": "This member has been suspended",
+ "WLCuyG": "Customisation",
+ "WLFHmg": "I\u2019ve set a password",
+ "WLyYYS": "Sign out of Dropbox",
+ "WM/qoc": "Choose the right Dropbox for you",
+ "WMBBSJ": "If you change from Dropbox {currentPlanName} to {backupPlanName}, your new plan will take effect during the next billing cycle. From {chargeDate}, your card ending in {lastFourCreditCard} will be charged {monthlyPrice} plus any applicable tax per month. Charges will continue until you cancel, and previous charges are not refundable unless legally required. Update your billing information here.",
+ "WMGEFi": "Create link",
+ "WMJEtg": "The file you selected is larger than what is supported. Please try again with a smaller file.",
+ "WMVhP0": "Deleted files",
+ "WN86F9": "How many phones and tablets can each member connect to Dropbox via Dropbox mobile apps?",
+ "WNFBjZ": "Paper removes a lot of the unnecessary work around projects so your team can focus on creating great work. Within one shared doc, your team can take meeting notes, brainstorm ideas, track projects and share feedback on work in progress.",
+ "WNQ2NC": "You\u2019ll be charged {prorated_price} for the new billing schedule, pro rata for the current billing period. {scheduled}",
+ "WNWE8B": "Close",
+ "WO+7U9": "Permission to view link not available",
+ "WOBbRk": "Included functionality.",
+ "WONnN7": "Downloads",
+ "WOwRDU": "f/{aperture}",
+ "WPbdqU": "{count, plural, one {{count} {plural_text}} other {{count} {plural_text}}}",
+ "WPpsFp": "Edit",
+ "WQDOGQ": "This file is not supported by Dropbox and cannot be uploaded.",
+ "WQpgoO": "You have subscribed to the file.",
+ "WQpwQ8": "Learn more about the support options and expected response times.",
+ "WR19Bf": "Password reset",
+ "WR5EDI": "Show deleted files",
+ "WRAFV/": "Licences remaining",
+ "WRCs8D": "Choose files",
+ "WRNz4t": "Protect your valuable data by storing usernames and passwords in Dropbox Passwords \u2013 secured with full encryption.",
+ "WRV83p": "Users per account",
+ "WRnWCY": "Whoa there, don't take advice from a webcomic too literally ;)",
+ "WRzvI1": "Company",
+ "WSKInX": "Locked successfully",
+ "WSNPap": "You can\u2019t reset passwords while modifying password strength. To reset passwords,{br}first discard your changes, then choose Reset passwords.",
+ "WSerAB": "Add a message (optional)",
+ "WSrUNs": "RefundLink",
+ "WSu3k3": "Already have a Dropbox account?",
+ "WTyK3N": "Trusted team activity",
+ "WU6xk6": "You\u2019ll also see the device (Mac, Android, iPhone) and maybe the browser (Chrome, Internet Explorer, Safari). If this device or browser isn\u2019t one that you usually use, that\u2019s another sign this might not have been you.",
+ "WUAMl2": "Open DWG files",
+ "WUSz8c": "You already have a hold with that name. Please try another one.",
+ "WUxb3N": "End date",
+ "WV5Q3y": "Just now",
+ "WVqK1l": "Logo",
+ "WVyMlf": "Suggested searches",
+ "WWCt7I": "Something went wrong. Please try again.",
+ "WWEpkK": "I understand this can\u2019t be undone and {team_name} will be transferred to my team\u2019s account",
+ "WWYO//": "Cancel {business} and disband my team",
+ "WX3rjN": "Get graphs and stats showing who's looking at this file. Upgrade to Dropbox Professional to start tracking.",
+ "WXEWl0": "Collaborate on files with teammates, contractors and clients \u2013 in the office or on the road.",
+ "WXFbJn": "{count, plural, one {{name} restored {count} item} other {{name} restored {count} items}}",
+ "WXJfQ5": "{name} can edit",
+ "WXQmpV": "That\u2019s as far back as it goes",
+ "WXivHK": "Get started for free",
+ "WYQtmB": "More info",
+ "WYezR2": "Your existing files moved here.",
+ "WYkgG7": "Keep an overview of all content. Streamline your content strategy by building a calendar, drafting upcoming posts and tracking progress in Paper.",
+ "WZHfy+": "Who should be notified when you sign in to this member\u2019s account? They will receive an email stating that you signed in as {display_name}.",
+ "WZI4HR": "New PIN",
+ "WZNhfY": "Agents and Subcontractors.",
+ "WZe1es": "For individuals",
+ "WZs0R0": "You\u2019ll create a new, personal Dropbox account for your existing files and Paper docs.\nThis will give you two accounts \u2013 your {work_email} account for {team_name} work and a new\npersonal account for your existing files.",
+ "WaPg2c": "You might be able to find it in your deleted files. If it's not there, try asking the person who shared it with you.",
+ "WaXaGh": "{plusSpaceShortFormTB} of space",
+ "WaiYkf": "Slack icon",
+ "Wb0KP/": "Info",
+ "Wb0pm2": "Couldn\u2019t find that hold. Refresh the page, then try again.",
+ "Wb25AZ": "Send email to '{'user_name'}'",
+ "Wb3p1L": "Invitation sent",
+ "WbA1Nn": "Design",
+ "WbVH1z": "Metering",
+ "Wc4dM+": "You are editing details for the {date} invoice.",
+ "Wc8zCA": "72 hours",
+ "WcJbLV": "Everyone",
+ "WcLdk3": "Add to Trello from Dropbox",
+ "WdxNG3": "Unknown",
+ "WeDjiD": "People can no longer download this transfer",
+ "WeEZAr": "Safari",
+ "WeJGtg": "Previous sensitivity",
+ "WebGPE": "Markup",
+ "Wf4OR8": "{number, plural, one {{number,number} page} other {{number,number} pages}}",
+ "WfVgEs": "{member_name} can't access.",
+ "WglrWR": "Create",
+ "WgscFw": "Create group",
+ "WhCRuT": "Report problem",
+ "WhDe/z": "Do less switching between tools",
+ "WhTMQI": "Priority email and live chat support",
+ "Wi4w+P": "Share",
+ "WiO4Bm": "The Dropbox mobile app is available for iOS, Android and Windows devices.",
+ "WiO7Ve": "How do you cancel a Dropbox subscription?",
+ "Wj0KDA": "Auto-PDF folder",
+ "Wj8EFS": "Coordinate a project from start to finish with to-do lists and timelines that live alongside your work. Run brainstorms, hold meetings, assign and track tasks, and review work too \u2013 teammates can leave comments inside your actual docs.",
+ "WjJYkf": "Previous expiry date",
+ "WjN2tU": "{licenseOverage, plural, one {You\u2019ll be charged for {licenseOverage,number} more person, and your new monthly total is {recurringCostIncludingTaxText}. Watch out for an email with all the details.} other {You\u2019ll be charged for {licenseOverage,number} more people, and your new monthly total is {recurringCostIncludingTaxText}. Watch out for an email with all the details.}}",
+ "WjXFCI": "Got it",
+ "Wk19D8": "{sender_name} wants to share the folder {content_name} with you.",
+ "Wk1UkT": "Duration",
+ "Wkcpyr": "Let\u2019s double-check that everything looks OK",
+ "Wkf4xC": "There was a problem starring {item_name}",
+ "Wko3oQ": "From {date}, we\u2019ll bill you once a {schedule_noun} for your Dropbox {plan_name} plan and your new {schedule} total will be {scheduled_total}.",
+ "Wl8Ylh": "This member\u2019s limit will return to the default space limit.",
+ "Wm5PXm": "Simplify electronic signatures",
+ "Wm6cD6": "With {plan}, get {plus_space_long_form_rounded} for all of your photos, videos, docs and other files. Keep everything stored safely and at your fingertips.",
+ "WmHmNO": "Plan",
+ "WmoQCS": "Unable to sign in with Google.",
+ "WmvY3S": "User root folder cannot be chosen.",
+ "WnTqOA": "save attachments",
+ "WnWL5z": "Enable watermarking",
+ "Wng32y": "
Open the Google Play Store on your Android phone or tablet.
Tap the three horizontal lines (Menu) in the top left-hand corner.
Make sure you\u2019re signed in to the Google account you used to purchase the subscription.
Tap Subscriptions.
Tap Dropbox.
Tap Cancel subscription.
Select a reason why you\u2019re cancelling and tap Continue.
Tap Cancel subscription or Cancel trial.
You\u2019ll receive an email to your Google account to confirm your cancellation, and your account will be downgraded to Dropbox Basic (free) at the end of your billing cycle.
You can find more information here about requesting a refund from Google.
",
+ "WoKbfQ": "You must provide an X.509 certificate to enable single sign-on.",
+ "Wod2T4": "Create link",
+ "Wosw1V": "{name} sent you this request",
+ "WplXdS": "Priority email and chat support",
+ "WqYWha": "Allow cookies",
+ "Wqlbx3": "Number is invalid",
+ "Wr2MZ4": "Showcase",
+ "Wr8iTc": "empty team folder",
+ "WrNH0Y": "Lonely Planet",
+ "WrPpf6": "Select a payment method",
+ "WrRpjL": "Jul",
+ "WrjTjR": "Email me the link",
+ "WsG80O": "You can add your business address to your account.",
+ "WsbIo+": "Members of the file with this link and password can edit.",
+ "WsvIqV": "Convert to individual Dropbox Basic account instead",
+ "WtHEfL": "Something went wrong and we couldn't create the policy.",
+ "WtNVJv": "Powered using HelloSign by Dropbox",
+ "WtTd1Y": "Don\u2019t mix up your personal files with your work files. Set up your separate personal Dropbox, which comes with 2 GB for the stuff that\u2019s just for you.",
+ "WtcKj/": "Add other Dropbox teams you trust",
+ "WtvdB+": "Most popular",
+ "WuUusl": "This will automatically remove and disconnect these members\u2019 devices.",
+ "WukOiD": "If you think you\u2019re getting too many alerts, try lowering the sensitivity.",
+ "WuvFN5": "Unsyncable",
+ "Wv1IVj": "Let team members copy Zoom cloud recordings to Dropbox automatically",
+ "Wv3x3g": "There was an error uploading your photo.",
+ "Ww0HWC": "Change PIN",
+ "WwB3rT": "Fullscreen",
+ "WwQaUv": "Anything in your Dropbox will stay up to date across all of your computers and mobile devices. Your information is always where you need it.",
+ "WwXu7L": "Draw",
+ "Wwfok2": "Set password requirements or reset passwords for your team",
+ "Wwl/lW": "Done",
+ "Wx1tuk": "As a Dropbox account holder, there are certain support options available to you listed below.",
+ "WxV0Sy": "Dismiss",
+ "WxkNeG": "{whitelist_subject} will still have access to anything that\u2019s already shared.",
+ "WxlKj9": "Try it",
+ "WxnuE0": "You are now logged in to {email}.",
+ "Wy/CKN": "Selective sync",
+ "Wy6QpH": "Upload to Dropbox",
+ "WyGq0q": "Link not found",
+ "WyIenC": "Print",
+ "WyW2Um": "Sharing...",
+ "Wya2OR": "Install Dropbox to get \u201c{folder_name}\u201d on your computer",
+ "WyhmLg": "There was a problem completing this request",
+ "WzCl9b": "Manage team members",
+ "WzQjtR": "Usually this happens when the link wasn't copied correctly.",
+ "Wzk4tW": "Only members of the shared folder \u201c{shared_folder_name}\u201d can view this link.",
+ "Wzr+Eu": "Unfollow",
+ "X+4Q+L": "Off",
+ "X+BzF3": "Add admin permissions for {display_name}",
+ "X+IYXP": "This link type isn\u2019t supported.",
+ "X+Llr7": "You won\u2019t get an alert if a member makes too many unsuccessful sign-in attempts.",
+ "X+i036": "You\u2019ll need the latest version of Dropbox for desktop.",
+ "X+mLhb": "Expires in 1 minute",
+ "X/07sw": "Delete secondary email?",
+ "X/E7P2": "Please enter a valid name or email address",
+ "X/GYfj": "Are you sure you want to add admin permissions for {display_name}?",
+ "X/OVmI": "{price}/{duration}{line_break}({tax_string})",
+ "X/rSyR": "To link your computer, you need to enter a security code. We sent a code to your email address, {email}.",
+ "X/uvE2": "Changes saved.",
+ "X00Q2k": "A folder with that name already exists.",
+ "X0i16w": "Starred",
+ "X0uDO4": "Not satisfied with the product",
+ "X0wsLF": "You\u2019re a member of the {team_name} Dropbox account.",
+ "X0xlzt": "Confirm change",
+ "X1+HWP": "failed",
+ "X1BqiH": "{name} moved {single_item_name} from {src_folder} to this folder",
+ "X1C5SI": "Send for signature",
+ "X1Olog": "Select from your Gmail contacts",
+ "X2HMIy": "Search for your tickets",
+ "X2uBND": "The Dropbox installer window should open shortly.",
+ "X391/K": "Allow",
+ "X3DNAi": "You\u2019ll get an alert if a member shares malware.",
+ "X3FlZ7": "Your {trademark_business} {plan} plan will be renewed on {date}. Your current {schedule} total is {recurring_total}.",
+ "X3U3zw": "TRIAL",
+ "X4Crql": "If you want to keep {trademark_business}, it only takes a few minutes to add your billing information.",
+ "X4DXqP": "Create new task",
+ "X4p8NC": "Because you\u2019ve already reached your quota, your Dropbox will stop syncing files and you won\u2019t be able to add any new files or restore deleted files.",
+ "X5CFvn": "Personal account",
+ "X5Hrgk": "Dropbox Binder",
+ "X5c+e0": "Multiple accounts",
+ "X69niz": "They\u2019ll lose access to team content",
+ "X6VaYA": "SSO",
+ "X6pZ1L": "Result",
+ "X6vQlG": "Please agree to the SEPA mandate terms by ticking this box.",
+ "X79zCh": "this file",
+ "X7A5AR": "{display_name} is now a user management admin.",
+ "X7Dg4C": "IT admin",
+ "X7MD13": "Add anything specific they should know",
+ "X7cqs/": "Advanced trial",
+ "X86+76": "Basics",
+ "X8A5bJ": "Need something from someone?",
+ "X8CKgJ": "Top restore and delete articles",
+ "X8FtXh": "Alert category",
+ "X8V+Qt": "in progress",
+ "X8b0kY": "Your access to these items was removed, so you can\u2019t restore or permanently delete them.",
+ "X9W8tF": "{count, plural, one {Are you sure you want to delete {item_count} items, including {count} shared folder, from your Dropbox?} other {Are you sure you want to delete {item_count} items, including {count} shared folders, from your Dropbox?}}",
+ "X9lTXt": "Share feedback with Dropbox",
+ "X9vyOj": "Integration logo",
+ "X9xK6f": "Could not open new window",
+ "XA+fmY": "We\u2019ll let you know when your request has been approved.",
+ "XA8wA2": "The percentage of active and suspended licences.",
+ "XALYae": "Download from here?",
+ "XAMjLd": "Apps with access to your Dropbox",
+ "XAmQfp": "Upgrade to Professional to apply your watermark.",
+ "XAo7sk": "Add comment",
+ "XAyzq5": "Drag files here",
+ "XB2c0q": "The Dropbox Migration Assistant is currently only available in English.",
+ "XBrFmA": "Tina Thorstenson, CISO",
+ "XBy/9X": "Cancel",
+ "XC+l/w": "Cancel plan",
+ "XD9xb9": "{plan_name} is {price_per_month} per month. You\u2019ll spend {price_per_year} per year.",
+ "XDEPFQ": "Allow file downloads after purchase",
+ "XDLsmJ": "You don\u2019t have permission to share with some of these people.",
+ "XDW1tJ": "Your session timed out",
+ "XE6vCf": "deleted folder",
+ "XEGwL2": "Computer/software engineering",
+ "XEaqiT": "Done",
+ "XEvJfu": "Reset password",
+ "XFA09U": "Connect apps",
+ "XFHH8i": "Can\u2019t upload folders in Internet Explorer. Upload the files separately or try another browser.",
+ "XFPaPp": "Back home",
+ "XFSWDX": "Team members won\u2019t be able to share docs, give or get feedback, or track tasks in Paper.",
+ "XGL6ZT": "Pin",
+ "XGWBlY": "You can view but not share",
+ "XGtbG3": "Off",
+ "XGvyXX": "Advanced admin controls",
+ "XH49SN": "Select",
+ "XHbTJ8": "Only groups can be added to team folders.",
+ "XHuFxJ": "We accept {payment_methods}",
+ "XIFY0Y": "Date",
+ "XInC/n": "How many people are part of your company or team?",
+ "XJ+Ri3": "See the big picture of projects and track your progress.",
+ "XJI7dZ": "Can\u2019t move {num_of_files} items",
+ "XJSB5R": "Dropbox for Android",
+ "XJTRCn": "{value, plural, one {{value,number} second} other {{value,number} seconds}}",
+ "XJeTuR": "{license, plural, one {
/ user / month,
starting at {license} user
} other {
/ user / month,
starting at {license} users
}}",
+ "XJqVGH": "You moved {single_item_name} into this folder",
+ "XJs18w": "View on Dropbox",
+ "XKEjMN": "Take your files anywhere",
+ "XKofxO": "Previous value",
+ "XLVCXi": "Set up payment account to claim revenue",
+ "XLVIFy": "View as list",
+ "XMHn5C": "{count, plural, one {{count,number} member} other {{count,number} members}}",
+ "XMYkNU": "Protect and secure",
+ "XMab6Q": "People can download this transfer again for 7 days",
+ "XMdpED": "Keep your launches on track",
+ "XNArvD": "Absolutely! As long as your team admin permits external sharing, you can share with any Dropbox users, even if they\u2019re not members of your {dropbox_business} team. However, shared folder members who are not in your Business team will be limited by their own storage quotas. So, whilst your team members will have more space to add and edit files in a shared folder, {dropbox_basic} or {trademark_plus} users will be restricted by their personal quota.",
+ "XNEmah": "Groups can only be viewed by group members",
+ "XNga+1": "Click 'Open with' and select Nitro to open PDFs.",
+ "XNzmrO": "year",
+ "XOIPc5": "IP address",
+ "XOXb1b": "HELD MEMBERS",
+ "XOl8qQ": "Connect or disconnect a personal account to Dropbox Business",
+ "XOn3VZ": "Get more space to add more files to your Dropbox. Upgrade now.",
+ "XOq31W": "Don't upload",
+ "XPjCGu": "Team sharing policy",
+ "XPkdu6": "This person is not in your Dropbox team.",
+ "XPsHGt": "",
+ "XPuitl": "{count, plural, one {{count} ticket requires your response} other {{count} tickets require your response}}",
+ "XQ+VGp": "Group type",
+ "XQ5hkI": "Click Add to enable Dropbox Gmail integration",
+ "XQNf7s": "Remove from starred",
+ "XQsB0Y": "Enter your Dropbox password and we'll email you at {email} to reset your PIN.",
+ "XRK9U1": "Play",
+ "XRYkKY": "Remove file.",
+ "XRtyZw": "Photo edit",
+ "XSL//t": "Powerful administrative tools",
+ "XSR4O8": "File not found.",
+ "XSRNUs": "Everything in {advanced_name}",
+ "XSYkSG": "All in team",
+ "XSulmh": "Sign in as",
+ "XSyeTi": "Manage",
+ "XT1/P1": "File event tracking",
+ "XTU3gF": "Personal account locked modal",
+ "XU/pE0": "Team name",
+ "XU3yxo": "{price}/month (includes GST)",
+ "XUKtF2": "exception",
+ "XULJtd": "Yes, unlink",
+ "XUeui+": "Enable two-step verification",
+ "XV9BFY": "Want Dropbox for your whole team?",
+ "XVzKiX": "Lock files when you edit them",
+ "XW733K": "Done. The user is given access to the customer console and the partner portal.",
+ "XX70v0": "{count, plural, one {{name} edited {count} item in {folder_path}} other {{name} edited {count} items in {folder_path}}}",
+ "XY8Z5t": "{dropbox_plus} or {trademark_professional} accounts",
+ "XYNoRW": "Your version has required fields missing",
+ "XYd1PR": "Changing address...",
+ "XYgPf3": "Smart Sync readiness",
+ "XaIZgy": "Not now",
+ "XaQPW9": "Comprehensive audit trail with signed documents",
+ "XaRMgG": "Take your teamwork to the next level. Get as much space as needed for all of your content.\n Powerful sharing features make it easy to create, share and work together.",
+ "XafwTO": "Chatbot",
+ "XarYzm": "Add any extra details about the request",
+ "Xat2Mu": "means the Secretary of the US Department of Health and Human Services.",
+ "XbAqHv": "You can only share a link for viewing for this type of file.",
+ "XbzaCH": "
Cancel a free Dropbox trial
How to delete a Dropbox account
Cancel a Dropbox subscription purchased through iTunes or Google Play
Find a billing receipt or invoice
Look up a credit card transaction
Find out more about refunds
",
+ "Xc9gZZ": "{price}/month",
+ "XcMi4Q": "Creating new file\u2026",
+ "XcPV81": "Create export",
+ "XcU1kt": "Do shared folders count against my storage space?",
+ "Xd0++m": "Finished uploading",
+ "XdelDJ": "Join more than {dfb_count} teams using {trademark_business}",
+ "XditG3": "90 days",
+ "Xe3IgJ": "\u2026",
+ "Xe94ba": "{numMonths, plural, one {{discount,number,::percent .##} off for {numMonths,number} month!} other {{discount,number,::percent .##} off for {numMonths,number} months!}}",
+ "XeXPUa": "{name} deleted {item_name}",
+ "XeeT6w": "Syncing & uploads",
+ "Xf67Ap": "The Customer will not ask Dropbox or the Services to use or disclose PHI in any manner that would not be permissible under HIPAA if done by a Covered Entity itself, unless otherwise expressly permitted under HIPAA for a Business Associate. In connection with the Customer\u2019s management and administration of the Services to End Users, the Customer is responsible for using the available controls within the Services to support its HIPAA compliance requirements. The Customer acknowledges that third-party products or services, such as the Customer\u2019s email provider, may be required to access certain features of the Included Functionality. The Customer authorises Dropbox to transmit PHI as directed by the Customer and to notify the Customer of information related to its account functionality through these third-party products or services for the sole purpose of providing the Services to the Customer. For example, when the Customer uses the Services to share a file or folder, Dropbox may send a sharing notification via email, and the email may display the applicable file or folder name, which may contain PHI.",
+ "XfAovr": "Join team",
+ "XfJxCN": "Family Room",
+ "XfS7WN": "(includes GST)",
+ "XfljSM": "Send with link",
+ "XfuLlF": "Sharing info such as who shared content, when and with whom",
+ "Xg+zFf": "Select file in previous row (hold Shift to select range)",
+ "Xg96cj": "People outside the company",
+ "Xggott": "Cancel request",
+ "XgtSHT": "reminder graphic",
+ "XhBRcx": "{initiator_name} (admin) initiated file recovery at {initiation_time}\n from {initiator_ip}. This could take up to a few hours if there are a lot\n of files in {infected_user_full_name}\u2019s Dropbox account. You can go\n ahead and close this screen. Rest assured, recovery will continue at our\n end. We\u2019ll email you when their files are ready to use again.",
+ "XhplWJ": "How helpful have shortcuts been for the way you work?",
+ "Xi248c": "All of your team\u2019s content, including sharing permissions, will be moved into the primary team\u2019s account.",
+ "Xi5sxu": "Can\u2019t convert account because they haven't signed in",
+ "XifDSb": "Welcome to {name}\u2019s {sku}",
+ "XimFFf": "You are part of {team_name}",
+ "XjTkfW": "We\u2019re sorry you\u2019re thinking of leaving us, {first_name}. Can you tell us why? We might be able to help!",
+ "XjVAbc": "Your tax rate on this invoice cannot be updated.",
+ "Xjl1kv": "Other...",
+ "XjsMWH": "Link",
+ "XkSHxz": "The free Dropbox mobile app helps you keep projects moving from anywhere, so you can stay focused on what matters. Access work, collaborate with colleagues and clients, and quickly take care of tasks \u2013 all from your phone or tablet.",
+ "Xkb8gG": "Only the owner of {file_name} can move it to a team folder.",
+ "XkbjSU": "Shared existing folder modal",
+ "Xkz5XK": "Sign in to PayPal to continue with this payment method:",
+ "Xlc8yC": "Save as PDF",
+ "XlsYW9": "Normally, synced files are downloaded fully to your computer and they take up hard drive space. With Smart Sync, you can make files and folders \"online only\". Online-only files only use a small amount of hard drive space to store information such as the file name, size and thumbnail, but the full contents of the files are stored securely in the Dropbox cloud. You\u2019ll always see your online-only files on your computer, so when you need them, you can open them with just a click.",
+ "XmdmiQ": "Share \u201c{folder_name}\u201d with everyone in {team_name}?",
+ "XnB7kl": "{display_name} (EMM)",
+ "XnGBel": "Processing could take a while. We\u2019ll email you when it\u2019s ready to download.",
+ "XokhaJ": "Send to anyone \u2013 they don\u2019t need an account to download",
+ "Xoz7Jw": "Contact sales",
+ "Xoza1y": "Can view",
+ "XpDNPJ": "Team members",
+ "Xphok/": "{count, plural, one {Anyone with the link and password can view this file. Expires in {count} day.} other {Anyone with the link and password can view this file. Expires in {count} days.}}",
+ "XqgOD/": "Members of the folder with this link can view.",
+ "XquJn2": "View more customer stories",
+ "Xr496Y": "Stay up to date on shared projects and see the latest work from your team.",
+ "XrHRhM": "Disable external sharing",
+ "XrLuJX": "Couldn\u2019t update setting. Please try again later.",
+ "Xrh3zC": "You moved {single_item_name} out of {src_folder}",
+ "Xrk94B": "Winning lotto numbers? The secret to happiness? You\u2019ll need more space in your account to see what\u2019s in that folder.",
+ "XrxDUO": "Couldn\u2019t generate report. Try again once your other reports are complete.",
+ "XsLts1": "Continue for free with Dropbox Basic",
+ "XsVWRJ": "Delete files from my personal Dropbox next time this computer comes online.",
+ "XsWhMa": "Please enter a reason",
+ "XscCkp": "Active",
+ "XssSQM": "Tax invoice for {name}",
+ "XthdPa": "Change notification settings",
+ "Xti6fG": "Audio details",
+ "Xtkx7N": "They will have access to the customer console and the partner portal.",
+ "XtuHtv": "If you purchased your Dropbox subscription through the Apple App Store, you'll have to request your refund from Apple directly.",
+ "Xv5W2O": "Dropbox Transfer up to {transferAmount}",
+ "Xw0FGS": "Folder type",
+ "XwGOZw": "You have an active Dropbox {plan} subscription through the {biller}.",
+ "XwJP33": "No meetings",
+ "XwXbCN": "Great! Now let\u2019s add the rest of your team",
+ "XwXyT/": "Invite people in your team to your new Dropbox account. You can start using your team space to access and work together on files easily.",
+ "XwceOe": "Got it",
+ "XwpHsG": "Unable to upload {filename}: {reason}",
+ "Xwxvln": "deleted document",
+ "Xx0Fjo": "Extracting {file_name} \u2013 {time_remaining}.",
+ "XxS5PN": "Work between {currentEmail} and {pairEmail} without signing in and out of Desktop.",
+ "Xxcol+": "Couldn't copy the link. You don't have permission to create a link to this content.",
+ "XxlRJN": "An app or feature I didn\u2019t find",
+ "Xy/Xlx": "expires: {expire_day}",
+ "Xy0hIZ": "You\u2019re logged in to your work account,",
+ "XyALRK": "Centralise my team\u2019s work in one place",
+ "XysI/L": "Customise design",
+ "XyseuH": "{noOfFiles, plural, one {{action}, applies to {fileName}} other {{action}, applies to {noOfFiles} selected files}}",
+ "XzAvwC": "Name or email address",
+ "XzCOeA": "Collect electronic signatures in minutes. Send documents from Dropbox that recipients can sign in seconds on any device, no downloads required. Powered by Adobe Document Cloud. New users get 5 free transactions every 30 days.",
+ "XzMI9t": "You now have two Dropbox accounts \u2013 one just for you and one for your {team_name} work.",
+ "XzsuOM": "You\u2019re about to unlink your {category}. It will stop syncing immediately and you won\u2019t be able to access files on this device without re-linking.",
+ "Y+0afH": "In a new tab, open the website of your domain host and sign in. Then locate the DNS settings for {domain}.",
+ "Y+6Itu": "Add your billing info now so your plan is upgraded without interruption on {trial_end}.",
+ "Y+Foy6": "QR code",
+ "Y+MchP": "Extension",
+ "Y+wf4j": "On",
+ "Y/LBQu": "Anyone with this link and password can edit the file.",
+ "Y/NN0h": "Older",
+ "Y/Xhbc": "Try it",
+ "Y/eR76": "Email team member",
+ "Y/r/in": "This email address has already been taken \u2013 please try another one",
+ "Y03muj": "User reviewing their list of notifications.",
+ "Y0Em2X": "Best for most teams. Passwords will need to be moderately complex with at least 8 characters.",
+ "Y0gPnW": "\u00b7",
+ "Y13a+w": "Looks as if you already have this! ",
+ "Y1EjrM": "Provide any errors that may have appeared relating to this issue",
+ "Y1FLWO": "Copy Zoom cloud recordings to Dropbox",
+ "Y1McLA": "Mobile devices",
+ "Y1c//y": "Couldn\u2019t add default background. Please try again.",
+ "Y1lxeI": "Unlock the power of your sales team by getting everyone on the same page, from account planning to collaborating on sales call notes.",
+ "Y26gHx": "Suspend team member",
+ "Y2LnVt": "{hours}:{minutes}:{seconds}",
+ "Y2X2cR": "Add branding when you share outside your {team_name} team",
+ "Y2fG07": "Click 'Open with' and select HelloFax.",
+ "Y3/QT/": "Policy type",
+ "Y3CfTf": "All members will be prompted to choose new passwords next time they sign in.",
+ "Y410Zf": "Generous",
+ "Y4DjtR": "None \u2013 general App Centre feedback",
+ "Y4TkRL": "Support",
+ "Y4jyXi": "Present",
+ "Y4o+17": "{name} has been downloaded",
+ "Y4x2gL": "View previous slide",
+ "Y4z5Mh": "Early releases",
+ "Y543bW": "Google Play Store",
+ "Y5AhQP": "try uploading files separately",
+ "Y5BVus": "View admin emails",
+ "Y5Mbej": "
If you\u2019re currently subscribed to a Dropbox Plus or Dropbox Professional plan, you can downgrade your account to a free Dropbox Basic plan immediately without the assistance of an agent.
Note: Downgrading your Dropbox plan to Basic is not the same as deleting your Dropbox account.
",
+ "Y5NDXW": "Name",
+ "Y5NH4V": "{count, plural, one {The invitation could not be sent.} other {The invitations could not be sent.}}",
+ "Y6042s": "Uploads will be disabled one week after the deadline.",
+ "Y60BJ8": "Save to Dropbox",
+ "Y65c9G": "Click 'Open with' and select Outlook.",
+ "Y66lfE": "It looks as though {infected_user_full_name}\u2019s linked computer,\n {infected_host_name}, has been infected. Dropbox can recover their\n files to a version that existed before they were locked by ransomware on\n {infection_date} at {infection_time}.\n {br}{br}\n Dropbox will pause syncing to the infected computer while recovering\n {infected_user_familiar_name}\u2019s files. During the pause,\n {infected_user_familiar_name} can access any recovered files at\n dropbox.com or on the Dropbox mobile app. Once the ransomware has been removed\n from the affected computer, we can resume syncing.\n {br}{br}\n File recovery usually takes about 15 minutes, but can take up to a few\n hours. The more files {infected_user_familiar_name} has in their Dropbox\n account, the longer it may take. We\u2019ll email you as soon as\n recovery is complete.",
+ "Y692Ud": "Error",
+ "Y6D/4x": "hour",
+ "Y6FDpY": "If you think this was an error, try contacting the creator of {filename}.",
+ "Y6RKJq": "Content to retain",
+ "Y6TflF": "Are you sure you want to disconnect {name}? You\u2019ll need to reconnect again to continue using {name} on Dropbox.",
+ "Y7+XCp": "Do any of these help with your account access and security?",
+ "Y73l91": "No access",
+ "Y7IkmD": "Cancel",
+ "Y7dZop": "Add activity",
+ "Y7uVJx": "Invalid code",
+ "Y87Mpn": "Management",
+ "Y8ClZB": "Refresh token",
+ "Y8Re5Q": "Membership request approved.",
+ "Y8SI6q": "For teams",
+ "Y8cVgK": "Choose folders to sync",
+ "Y8k/6r": "Previous page",
+ "Y8k4xN": "Auto, did not fire, red-eye reduction",
+ "Y8reib": "{quotaGb,number} GB",
+ "Y9FcUQ": "Word for the web",
+ "YA7OiJ": "Try again",
+ "YALbcv": "Cancel",
+ "YAig3a": "Due date",
+ "YAlWfX": "Zoom",
+ "YApL4x": "Rename directory",
+ "YAq6NB": "Other",
+ "YBc5zy": "Your member folder is full, so no new files can be added",
+ "YC4s0t": "Change settings",
+ "YC8JAS": "Shared by",
+ "YCPB+l": "Allow members to permanently delete files or prevent members from doing so",
+ "YCbjf0": "Cancel request",
+ "YCeuVG": "{count, plural, one {Sent {count} day ago} other {Sent {count} days ago}}",
+ "YDDsSH": "Download",
+ "YDIDVf": "All synced content will be deleted from this member\u2019s devices the next time they come online",
+ "YDw317": "Yesterday",
+ "YE+cZF": "Remind me later",
+ "YEJKA+": "If it's a one off, it might work if you refresh the page. You can also ask us for help.",
+ "YETueY": "Support admins",
+ "YF+G2c": "Request invitation",
+ "YF8NvF": "This file was skipped because files of this type cannot be uploaded.",
+ "YFBEap": "Not sure",
+ "YFhk/Q": "deleted app folder",
+ "YFmCHZ": "Removing members from {folder_name}\u2026",
+ "YFt3xj": "Ask for any other info you need.",
+ "YFukG2": "Unlink this client",
+ "YGBaO5": "Current address",
+ "YGF1+m": "{count, plural, one {Anyone with this link and password can edit the file. Expires in {count} day.} other {Anyone with this link and password can edit the file. Expires in {count} days.}}",
+ "YGcP7o": "What\u2019s at risk",
+ "YHeXt/": "Show more",
+ "YHiC6y": "Dropbox Fundamentals",
+ "YHoriR": "Unable to copy the link. Please copy manually.",
+ "YI5lkl": "People with password",
+ "YIK0Ns": "Start",
+ "YIUGO+": "Can view",
+ "YIbSGj": "Let {team_name} manage your team",
+ "YJCTjv": "Planning to keep lots of data here?{br}Choosing this option can affect performance during the initial sync. Instead, clear the tickbox to let members sync only the content they need. Learn more",
+ "YJc3aM": "Link copied. Allows editing.{br}{copiedUrlDisplay}",
+ "YJjQc8": "{display_name} is no longer an admin.",
+ "YK3cjd": "{recurring_amount} {tax_rate_text}",
+ "YKtDAX": "Links created that won\u2019t expire",
+ "YKzo6y": "Add details you\u2019ll need later, such as the reason for the policy or the items to include.",
+ "YLBqRL": "This folder is empty",
+ "YLIbxl": "Click and follow the directions to install.",
+ "YLMDDO": "Learn about file requests",
+ "YLa6Px": "A shared event plan using a Dropbox Paper template",
+ "YLmC/n": "Sometimes a face-to-face chat is the fastest way to unlock new ideas. And leading communication tools such as Slack and Zoom work directly from Dropbox. Now you can set up a quick session to touch base, or even a virtual conference room, with just a few clicks.",
+ "YMIjzS": "Your team\u2019s files stopped syncing {ago}",
+ "YNBvn+": "Other device",
+ "YNHINs": "Great! Now just open the installer and you'll be ready.",
+ "YNXVtr": "Members can join using this link until {expiration_date_time}.",
+ "YNn2+Z": "Stay on {tm_business} trial",
+ "YOWrDD": "{free_quota} (downgrade to {trademark_basic})",
+ "YOdcAD": "Top storage space articles",
+ "YP3Gbc": "\u201cWe\u2019ve always been a pioneer in the card industry, and we think of ourselves in the same way in the digital space. Thankfully, we pretty much have three words internally that keep us creating great work: \u2018It\u2019s on Dropbox\u2019.\u201d",
+ "YPQWtx": "You\u2019re eligible for a free {trial_length}-day trial.",
+ "YPWjDD": "Account menu",
+ "YPbHqP": "Restart the download",
+ "YPx+ti": "or continue on web",
+ "YQ7Jrt": "Go to admin console",
+ "YQJt5v": "?",
+ "YRatzw": "per month",
+ "YS2vUD": "File recovery failed",
+ "YT3Nkr": "Create Dropbox account",
+ "YT65KH": "Change to auto-PDF folder",
+ "YTQf/k": "Thank you for the feedback",
+ "YTZEp1": "Team members with this link can view the file.",
+ "YTkv+s": "{numUsers, plural, one {{price} / month for {numUsers,number} user} other {{price} / month for {numUsers,number} users}}",
+ "YU7/E1": "Transfer files up to 100 GB and add custom branding",
+ "YUkY7N": "{count, plural, one {Members of the folder with this link can view the folder. Expires in {count} day.} other {Members of the folder with this link can view the folder. Expires in {count} days.}}",
+ "YUrcyW": "Your billing location requires additional taxes. Your selected plan\nis {monthly_per_user}/user/month ({annual_price} charged yearly).\nYou\u2019ll only be charged if you don\u2019t cancel your trial before it\nends on {trial_end_date}.",
+ "YVNJrn": "Days",
+ "YVPxPt": "You haven\u2019t verified your email. Please check your email and try again.",
+ "YVlUTG": "{team} shared this with you.",
+ "YVqUaQ": "Search by company",
+ "YW2ltU": "Send big files fast with Dropbox Transfer",
+ "YWPyBU": "You won\u2019t get an alert if a member moves an unusually large amount of content.",
+ "YXDTD8": "{app_name} Calendar and Contacts are connected",
+ "YY2KqO": "Recruitment doc \u2192",
+ "YYEv7N": "Only enterprise admins can update this setting",
+ "YYLxxv": "{file_name} added to your Dropbox.",
+ "YYkIp8": "Remove me",
+ "YZ+Jsk": "Add watermark text",
+ "YZVk08": "2. Select important files from your Dropbox",
+ "YZdg41": "",
+ "YZqQHq": "Send email",
+ "Ya7MvO": "See all templates",
+ "YaLgOV": "All options in {label}",
+ "YarMQP": "Step 1 of 4: Intro",
+ "Yavejc": "More ways to protect your account",
+ "YaxVHQ": "Go to our Help Centre",
+ "Yb9Pun": "We couldn\u2019t reach that email address. Please check the spelling and try again.",
+ "YbQOF7": "Given name",
+ "Ybo+lA": "Play videos",
+ "YbpR0X": "Unknown error \u2013 turning off Paper",
+ "YbxnDa": "Free up space or upgrade now",
+ "Yc/u4f": "Try again",
+ "YcDQxL": "Personal account not accessible",
+ "YcKefr": "Share your photos, videos, music and more",
+ "YcXiNd": "Your plan includes as much space as you need and {api_limit} API calls. Please contact support if you have any questions.",
+ "Yca12x": "Bring the smart workspace to your business",
+ "YcxVqg": "Add",
+ "Yd7c8F": "Good",
+ "YdNfV/": "All other tickets",
+ "YdcNbo": "Publisher",
+ "YdhTJc": "Add files",
+ "Ye/4Vz": "Signed in to Dropbox successfully",
+ "YetG8G": "Fonts",
+ "YgP0SR": "Shared with",
+ "YgZF+b": "Pending member removed.",
+ "YgeJ84": "User- and company-managed groups",
+ "Ygjb7E": "{date,date,::MMM d}",
+ "Yh4ILa": "Problems downloading? Try again",
+ "YhLWQX": "We are uploading your Agreement to your Dropbox. This may take a few moments.",
+ "YhUh+a": "Untitled",
+ "Yhb4gK": "Control whether a shared folder moves too",
+ "Yi3xPt": "View more customer stories",
+ "YiWZ1G": "Do you have multiple accounts? Use this tool to check which account a credit card charge is for.",
+ "YiYyiA": "Already in another team",
+ "YigIZ0": "Trusted contact is a team user \u2013 their admin could access your files. Learn more",
+ "YiyrV3": "Remove me",
+ "Yj/qwl": "Unable to change lifecycle state because it is the last approved version of an approved campaign",
+ "Yj6MuL": "Your browser does not support this feature.",
+ "YjKebn": "(save {savePercentage,number,::percent})",
+ "Yk+F6B": "Changes saved. We\u2019ll start holding files straight away.",
+ "Yk84rP": "{team_name} \u2013 space",
+ "YkAOU3": "What should we notify you about?",
+ "YkS8kL": "The username portion of the email address (the portion before the @: {username}) is invalid.",
+ "Yl/19R": "If your distribution is not listed, choose \u201cCompile from source\u201d.",
+ "YlC/wH": "{quota} of space",
+ "YlsoG8": "Chat to {name} from here. Connect a communications app.",
+ "Ym41kj": "You are already part of this family.",
+ "YmEqih": "There was a problem dismissing {item_name}",
+ "YmPbCq": "Released on",
+ "YmUt2k": "Sent to {recipient_first} and {recipient_second}.",
+ "YmqZNZ": "{name}, get {free_months} months free with your first year of {dropbox_plan}*",
+ "Yn2gx1": "Unstarred {itemName}.",
+ "YnH6gd": "{count, plural, one {Restore any version from the past day} other {Restore any version from the past {count} days}}",
+ "YnJU7b": "An error occurred while loading.",
+ "YndfBt": "Discount",
+ "YnzfGW": "Couldn\u2019t sign in with {provider}",
+ "Yo/BWl": "There's already a policy with that name. Please try another name.",
+ "Yo7HBc": "Name this download",
+ "Yo8ikT": "Turn on capture",
+ "YoHXz2": "We need your permission to connect to your {provider} account.",
+ "Yoowb0": "Notification type",
+ "Yp6HFY": "Get help",
+ "YpDhtC": "
Cancel a free Dropbox trial
How to delete a Dropbox account
Find a billing receipt or invoice
Look up a credit card transaction
Find out more about refunds
",
+ "Ypoq22": "In Optional mode, you can use an email template to tell users about SSO manually. View template",
+ "Ypt8pd": "Pick a date",
+ "YptDRD": "Because working remotely has become more common in recent years, people and teams are now adjusting to the realities of a distributed workforce on a new scale. This presents unique challenges. Read about best practices for succeeding in a distributed work environment.",
+ "YqAQbW": "Trello is not responding. Please try again later.",
+ "YqHzHk": "App icon",
+ "YqY3aM": "Select date",
+ "YqrPC/": "custom",
+ "YrOVxB": "Invited users",
+ "YrReAj": "Confirm",
+ "Ys93fl": "{count, plural, one {{count}+ members ({outside_team_string})} other {{count}+ members ({outside_team_string})}}",
+ "Ysbdxw": "Other",
+ "YssdR5": "Search our Help Centre",
+ "YtM4Ew": "Absolutely! As long as your team admin permits external sharing, you can share with any Dropbox users, even if they\u2019re not members of your {trademark_business} team. However, shared folder members who are not in your Business team will be limited by their own storage quotas. So, whilst your team members will have more space to add and edit files in a shared folder, Dropbox Basic or {trademark_plus} users will be restricted by their personal quota.",
+ "YtPMDZ": "Computers",
+ "Ytk0Pr": "Import members with CSV file",
+ "Yu/P9I": "Easily recover deleted files and restore previous file versions.",
+ "YuCDiu": "Purchase now",
+ "Yutfxu": "This account\u2019s licence key will be activated and no charge made to the payment method on file.",
+ "YvVUse": "Aug",
+ "YvjNnL": "Storage devices",
+ "YvxIv0": "Members can invite people on this list to files and folders. Bear in mind that each folder also has access settings that can be managed by the owner.",
+ "YvxWFF": "Keep request",
+ "YwJTo6": "Dropbox for iPhone",
+ "YwaMN9": "Fifth highest activity",
+ "Yx7Czy": "Shared",
+ "YxSS4y": "\u201cWe\u2019ve always had a global presence, but before Dropbox, we couldn\u2019t be as spread out as we are now. Dropbox makes our employees feel as though they\u2019re all in the same office.\u201d",
+ "YxsBme": "{count, plural, one {Anyone in the {trademark_business} team with this link can view the file. Expires in {count} day. Downloads disabled.} other {Anyone in the {trademark_business} team with this link can view the file. Expires in {count} days. Downloads disabled.}}",
+ "YxtfcM": "Minimum requirements",
+ "YyB3le": "Your account will be merged into the {team_name} Dropbox account, where you\u2019ll have\na private area for your stuff. {team_name} admins can manage your files and Paper docs if they\nupgrade the account to {trademark_business}.",
+ "YyNrxO": "Selective sync",
+ "YyR23e": "or sign in",
+ "YyS/vw": "Admin required",
+ "Yz+eoy": "Bear in mind:",
+ "Yz4sxa": "Unlink device",
+ "YzKUrr": "Lets members share showcases with people outside your team. Changing this will only affect sharing going forwards.",
+ "YzMs/g": "Select all",
+ "YzRKD+": "Now let\u2019s enable Smart Sync",
+ "Yza87k": "No credit card needed",
+ "YzaJIx": "Hi {user_name}, I @mentioned you in the {folder_name} folder. Take a look.",
+ "Yzabjr": "Adjust",
+ "YzjBDz": "{count, plural, one {Sign out of {count} device?} other {Sign out of {count} devices?}}",
+ "Z+nyo4": "Using a PIN for access, {vault} provides an extra layer of security for all of your family\u2019s important files, such as IDs, wills and pay slips. Personal files are safe and on hand whenever you need them.",
+ "Z+rZ7B": "Message sent",
+ "Z+zjTM": "{quotaTb,number} TB ({quotaGb,number} GB)",
+ "Z/+b6+": "Members can join your team using this link while there are licences available",
+ "Z/75PR": "Patreon",
+ "Z/XPvC": "Keep your team up to date with easily accessible style guides. Craft guidelines that help everyone create written and visual materials that are on message.",
+ "Z/ui0F": "With {trademark_business}, you\u2019ll get more space, controls and support.",
+ "Z0+vcG": "We have resent the verification email to {email}. Check your inbox.",
+ "Z0CQak": "Folder membership",
+ "Z0Yrxr": "Send, receive and sign faxes online.",
+ "Z0capp": "Set the amount of Dropbox space members can use",
+ "Z0ouq2": "This team is already part of your organisation",
+ "Z1BdZ2": "CPF/CNPJ",
+ "Z1gIYu": "There were too many changes for us to display, but we can still help you use Rewind.",
+ "Z1jqLM": "Try Capture for free",
+ "Z1mk0r": "The destination must be a folder. Please choose another destination.",
+ "Z217SR": "{count, plural, one {{name} and {count} other viewed} other {{name} and {count} others viewed}}",
+ "Z2P2Q/": "Create",
+ "Z2u8Ye": "Couldn't remove you, but it might be a one-off. Please try again.",
+ "Z3Gt5u": "Attachments",
+ "Z3IK4K": "Partner permissions",
+ "Z3ck27": "{title}: {active}{separator}{in_progress}",
+ "Z43Z5g": "View on App Centre",
+ "Z4921H": "Learn more about how Smart Sync works",
+ "Z4B53Q": "Every version available",
+ "Z4BYdz": "{count, plural, one {{count} day left} other {{count} days left}}",
+ "Z4ErxL": "Unshare album?",
+ "Z4b4y4": "App education modal image",
+ "Z4c55e": "Couldn\u2019t share folder. Try sharing again.",
+ "Z4gA1J": "For teams and businesses of any size",
+ "Z4l8Wv": "Delete policy",
+ "Z4lM4L": "Dropbox centralises your team\u2019s content and tools \u2013 whether you\u2019re working across the globe or from your sofa.",
+ "Z58Eak": "Need more info about plans, features and security? Compare plans",
+ "Z5FYqM": "Close",
+ "Z6+Jvy": "Link deleted. People can no longer join your team with this link.",
+ "Z6PuN1": "Simply add signers",
+ "Z81Qt6": "Fired, red-eye reduction, return detected",
+ "Z8RJeT": "3. Choose the course. You can upload any file type that Canvas supports.",
+ "Z8TQMl": "Now that Smart Sync is set up, choose items to move into Dropbox. Everything you move will still be visible on your computer \u2013 ready to access, edit and share \u2013 even though they\u2019re off your hard drive.",
+ "Z8ZcZc": "You\u2019re all set",
+ "Z9FaUX": "Name and new path",
+ "Z9HlH9": "Delete folder?",
+ "Z9VtWb": "in {parentFolderName}",
+ "Z9oF6G": "Host name",
+ "ZAPyt+": "New",
+ "ZB5/iN": "{count, plural, one {{name} unshared {count} item} other {{name} unshared {count} items}}",
+ "ZBGHZU": "{count, plural, one {To automatically sync {folder_name}, we also need to sync its top-level folder, {parent_folder_name}.{br}{br}This change applies to new members only. Find out about Selective Sync} other {To automatically sync the selected folders, we also need to sync their top-level folder, {parent_folder_name}.{br}{br}This change applies to new members only. Find out about Selective Sync}}",
+ "ZBKxLG": "Holding a copy of any available files that members edit between the hold dates",
+ "ZBTFWh": "Share",
+ "ZBbRHf": "Unlinked {device_name}",
+ "ZBlB2P": "Family",
+ "ZBqWRu": "We were unable to unlink the device. Please try again.",
+ "ZBskvc": "Everyone \u2013 please put your drafts here. Create a subfolder with your name.",
+ "ZCkVHN": "Confirm change",
+ "ZDCfCa": "From Excel",
+ "ZDEXPL": "Send me a copy of this email",
+ "ZDj5bt": "File recovery",
+ "ZDuI+U": "The name will be changed for everyone on your team. If a member already has another folder with the same name, their folder will be renamed automatically to avoid a conflict.",
+ "ZES8sE": "min",
+ "ZEbwf+": "Emergency access so family can get your records if anything happens to you",
+ "ZEkZEV": "You can only copy this link.",
+ "ZEnulX": "Cannot share with this many people.",
+ "ZFZrNG": "Search for {query}",
+ "ZFfsQG": "{audio_freq} kHz {audio_chan_layout}",
+ "ZFo+nW": "Connect and automate how you prepare, sign, act on and manage agreements across your entire organisation. Sign electronically on practically any device, from almost anywhere, at any time. New users get 10 free envelope sends.",
+ "ZFygrn": "Are you sure you want to delete {item_count} items from your {team_name}workspace?",
+ "ZG+/LS": "Watermarking is not available for this file type.",
+ "ZG9+mS": "What\u2019s your business called?",
+ "ZGe6o7": "Member",
+ "ZGmdWK": "Legal holds Help Centre.",
+ "ZGzw+X": "Use at least 8 characters, and make sure it\u2019s four bars strong:",
+ "ZHnJSP": "View as",
+ "ZHuo5y": "Upload certificate",
+ "ZHxWVU": "You\u2019ll get everything in Basic, such as access across devices, shared folders and links, and Dropbox Paper \u2013 plus more space and features to meet your needs",
+ "ZI39vb": "Add security keys",
+ "ZIhxvx": "Name",
+ "ZJ1DL/": "Organise team content in one safe, collaborative workspace",
+ "ZJf1Qz": "Dropbox is here to help",
+ "ZJfxlG": "The following characters are not allowed: angle brackets \\ / : ? * \" |",
+ "ZJiM3O": "Team folders",
+ "ZJlrl5": "To upload a file while you\u2019re in Canvas:",
+ "ZJmJez": "Sign in successful. Your browser will be redirected in a few seconds.",
+ "ZJucV9": "You successfully upgraded{br}to {planName}",
+ "ZK0Cyi": "This option is permanent. Please review the list above carefully before converting, as members might retain company data. You won\u2019t be able to restore the account or make any changes to it.",
+ "ZKnTqo": "Can only filter by your team\u2019s devices",
+ "ZKpC55": "This account has been disabled.",
+ "ZL/RTm": "Link will work for 3 days",
+ "ZL0s+u": "Store all of your edits to the file in Dropbox.",
+ "ZLjULL": "Loading",
+ "ZLtMBf": "CREATE AN ITEM FOR SALE",
+ "ZM6bHJ": "Files & folders",
+ "ZM6uKo": "Please note that you have an active Dropbox {trademark_plus} trial managed through the {billing_store}. You must cancel it to avoid paying for two subscriptions.",
+ "ZMB/Ar": "All members can still access company files using the normal Dropbox app",
+ "ZMJOlD": "Printing is turned off for this file.",
+ "ZMOjWK": "For 15 or more licences, we accept payments by bank transfer or cheque. Please contact sales for an invoice.",
+ "ZNGKB2": "Ways to contact Dropbox customer support",
+ "ZNK2lg": "To:",
+ "ZOWi44": "Custom solutions and individualised support to help IT professionals manage at scale.",
+ "ZOXxeC": "3-year plan",
+ "ZOboWS": "Loading your Slack conversations for the first time. This may take a few seconds.",
+ "ZOqUOm": "Take the Dropbox tour",
+ "ZOs18W": "Previous {trademark_business} trial",
+ "ZP13nE": "File operations",
+ "ZP6Ear": "Only you",
+ "ZPJ8Hv": "Try again",
+ "ZPLMFQ": "Four triangular prisms, each representing a different iteration of a project. The first three prisms have a cloud badge, while the last one has a green tick badge.",
+ "ZPbWOT": "Something went wrong with your team join request. Redirecting...",
+ "ZPsieU": "Privacy",
+ "ZPvZld": "Change",
+ "ZQIbpg": "Cancelling your Dropbox {trademark_plus} subscription in the {billing_store} will not affect your {trademark_business} trial.",
+ "ZRCJDk": "Do you want to delete {num} files?",
+ "ZRfUoB": "File requests",
+ "ZRqrRy": "Email {admin_fname}",
+ "ZRy2A0": "Pages",
+ "ZRz+6B": "Requests",
+ "ZS4+LJ": "Cancel",
+ "ZS7dvy": "I'm running out of space",
+ "ZSM6XN": "Off",
+ "ZShsIh": "Make comments",
+ "ZSvUbw": "",
+ "ZT/qA2": "Create summary",
+ "ZTM8N3": "{actor_name} shared this file in {slack_conversation_name}",
+ "ZTRokr": "Collaborators",
+ "ZTaPQk": "From",
+ "ZTkEWF": "Start rewinding?",
+ "ZTukLA": "New recruit onboarding",
+ "ZU3zxA": "Send large project files in a few clicks. And add custom branding to your shared links and download pages. You can sign NDAs and contracts in Dropbox too.",
+ "ZUXzl/": "Save as draft",
+ "ZV7+H+": "That link no longer works. If you already have an account, sign in or reset your password.",
+ "ZV8oAs": "Loading teams you can join",
+ "ZVOq7n": "Send to anyone, even if they don\u2019t have a Dropbox account",
+ "ZWIVFP": "You\u2019ll lose access to the {team_name} team folder and all {team_name} groups. Your account will be converted to a personal Dropbox.",
+ "ZWKyL3": "Contact your admin to get access",
+ "ZWTwJC": "Work on Google Sheets",
+ "ZWvP4o": "Extensions",
+ "ZX2QJp": "Team up with Dropbox Paper and Slack",
+ "ZXDoHc": "Dismiss completed module",
+ "ZXI9uh": "You\u2019ve hit the limit of invitations for today. Please try again later.",
+ "ZXY9/v": "MOV, WMV, MP4 and more",
+ "ZY55+d": "No results found",
+ "ZY8vQB": "Check your browser \u2013 you should now be signed in to Dropbox.",
+ "ZYA+JM": "{step} of {total}",
+ "ZZCH08": "Extension",
+ "ZZGKDu": "Too many wrong passwords \u2013 please ask the sender for a new link",
+ "ZZPag5": "Accessing government data",
+ "ZZU2Yr": "Delete",
+ "ZZVC1L": "What are manually added contacts?",
+ "ZZaddC": "Added",
+ "ZZo5Pe": "Edit with fewer tools",
+ "ZZs8no": "No, thanks. Stay on this page",
+ "ZaB4kV": "All files live locally",
+ "ZbJFCw": "Yes, set as default",
+ "ZbPQQW": "Used for gating this campaign. Specific variants for the selected Stormcrow feature are set in the sidebar under Version settings.",
+ "ZbTBdC": "Email",
+ "ZbTwYS": "{exposure_time} s",
+ "ZcFVDv": "{count, plural, one {Invite {count} member} other {Invite all {count} members}}",
+ "ZcKBEj": "example.pdf",
+ "Zd2yaf": "How much space does my team receive?",
+ "Zd4uKj": "Partial",
+ "Zd8jt8": "Adding to your Dropbox...",
+ "ZdEAP/": "Forgotten your PIN?",
+ "Zduv89": "Activity",
+ "ZeS8me": "Send documents and manage the signature process.",
+ "ZeTVlG": "Selected watermark image",
+ "Zeh+SK": "{count, plural, one {Anyone in your Dropbox team with this link and the password can view the file. Expires in {count} day.} other {Anyone in your Dropbox team with this link and the password can view the file. Expires in {count} days.}}",
+ "Zez4O8": "Cancel",
+ "ZfPA5x": "Layout",
+ "ZfZOOQ": "Work without space limits",
+ "ZfaZXL": "You\u2019ve lost the additional space you\u2019ve been using and access to features such as the admin console, extended version history and Smart Sync. Add your billing info now and you can pick up where you left off.",
+ "ZfdQEn": "Deleted",
+ "ZgQl3u": "Find the {trademark_businesss} plan for you",
+ "ZgSz4H": "Your {primary_label} Dropbox was successfully installed. Now you can add your personal Dropbox.",
+ "Zgc/hY": "{RecycleDelay} days after dismissal",
+ "Zgls1Y": "This person viewed via a link",
+ "ZguOmu": "{dropbox_plus} or {trademark_professional}",
+ "Zgzay7": "Restrict access to sensitive folders with powerful admin controls",
+ "Zh0I5b": "Save space with Plus",
+ "ZhA5oO": "View personal",
+ "ZhXcoe": "Anyone can be invited",
+ "Zhhud8": "{team_name} members won\u2019t be able to see future changes to {current_folder} automatically.{br}To give people access to this folder in the future, you\u2019ll need to invite them directly.",
+ "ZhlNXH": "Rotate anticlockwise",
+ "ZhzxQn": "Invite people and start using your team folder as a shared workspace to access and comment on files easily.",
+ "ZiMXGI": "Connect apps to Dropbox",
+ "ZiMZPz": "Reset two-step verification",
+ "ZiOLy9": "Billing charges",
+ "Zidtlx": "Apps that your team admin has enabled may be available by selecting a file in Dropbox and clicking Open or Share. You can also access App Centre with a personal account.",
+ "Zipm/8": "Learn about HIPAA",
+ "Zj5CDq": "First 6 digits of card number",
+ "Zj75v/": "Sales / Business Development",
+ "ZjG8ga": "",
+ "ZjLUew": "Disposition",
+ "ZjSuhw": "Your family",
+ "ZjtfCT": "{name} renamed this file",
+ "Zjv7Mi": "Download {displayName}'s vault",
+ "ZkCRSR": "Access files from anywhere, on any device",
+ "ZkRFrQ": "Microsoft details",
+ "ZkjH8i": "{quotaTb,number} TB ({roundedGb,number} GB)",
+ "Zkr/e/": "{count, plural, one {Anyone with the link and password can view this folder. Expires in {count} day. Downloads disabled.} other {Anyone with the link and password can view this folder. Expires in {count} days. Downloads disabled.}}",
+ "Zl9bOH": "Plan",
+ "Zmr3dn": "View all results for {query}",
+ "ZmstxO": "Add files and folders to the team space",
+ "Zn+Ije": "Due {date,date,::MMMMdyyyy}",
+ "ZnIqIh": "Prevent non-members from accessing this folder via link.",
+ "ZnS57e": "Images",
+ "ZnSlSp": "Alert sensitivity",
+ "Zo28sX": "Invalid email.",
+ "ZoO+/M": "Apple Pay",
+ "ZomjbB": "Send members a reminder",
+ "ZpOBV4": "An error occurred. Please refresh the page to try again.",
+ "Zpkc7x": "Other",
+ "Zq3Ehi": "You\u2019re sharing with too many people.",
+ "Zq8VvX": "Import contacts",
+ "ZqTi8N": "Marketing, Design, etc.",
+ "ZqhtP3": "The {team_name} admins are making it a requirement for everyone using Dropbox with a {team_name} email address\nto join the shared {trademark_business} account. What would you like to do? Learn more",
+ "Zr0G++": "Everyone is required to enable two-step verification, unless you make it optional for specific members.",
+ "ZrSQce": "Get organised",
+ "ZrbA3v": "Add exception",
+ "Zrj25A": "Upgrade to Advanced to add space",
+ "ZsUnxy": "Dropbox {showcase}",
+ "ZsZMpZ": "Please enter a phone number.",
+ "ZtDF5r": "Pro",
+ "ZtDUlL": "Find out more about admin roles",
+ "ZtOyAr": "Team shared folder, {alt}",
+ "Zu0jl4": "Are you sure you want to disable this security key?",
+ "ZuKPpH": "Email",
+ "ZuQKyp": "Cancel this trusted team request?",
+ "ZuZZUx": "Use template",
+ "Zuhe4j": "What happened",
+ "ZvH26K": "Attempted to zip too many files.",
+ "ZvJBIS": "Sorry, saving attachments in Gmail accounts is not supported.",
+ "ZvMuf8": "Sorry, it looks as though we failed to load your file. Please return to Dropbox and try again.",
+ "Zw8AYm": "Security keys",
+ "Zw9/eC": "We\u2019ll hold a copy of any available files that members edit between these dates",
+ "ZwAc+t": "Dropbox and the Customer will use appropriate safeguards designed to prevent unauthorised use or disclosure of PHI, consistent with this HIPAA BAA, and as otherwise required under the Security Rule, with respect to the Included Functionality.",
+ "ZwDOUz": "That\u2019s a bit too long ({count}/{max} max)",
+ "ZwQZM3": "Main modal image.",
+ "ZwrDDI": "This file is password protected.",
+ "ZxTpZJ": "Your member folder can\u2019t be moved.",
+ "ZxW0dN": "Great! Now drag the {trademark_passwords} app icon into the Applications folder.",
+ "ZyB1k3": "Find information shared in recorded Zoom meetings with video recordings and transcripts automatically copied to Dropbox.",
+ "ZyFp/R": "Don\u2019t cancel",
+ "ZyXIYZ": "Connect your personal Dropbox",
+ "ZysizF": "Final",
+ "ZyvE2M": "Your favourite e-signature tool now integrates and works seamlessly with Dropbox. Just choose a file, click 'Open with' and send for signature through DocuSign. With DocuSign eSignature, your first 10 envelope sends are free.",
+ "ZzAND+": "Clear search",
+ "ZzBeiz": "You\u2019re just a (double) click away",
+ "Zzad7F": "Cancelling...",
+ "Zzh7oC": "Over to the right, you\u2019ll find options to share, rename, move and more.",
+ "Zzhtmv": "Want to reduce your bill?",
+ "ZzwsG9": "Third party",
+ "_Loading": "Loading",
+ "a+++jI": "Backup method",
+ "a+62tB": "Compare plans",
+ "a/PmJ5": "Import contacts",
+ "a/XanA": "Options",
+ "a/xfA5": "Your shortcut to {underlying_filename} was created in {folder_name}",
+ "a0FTw9": "Recents",
+ "a0QM1Q": "Expiry date",
+ "a0fq6E": "You will be prompted to reset your password.",
+ "a0rQ8w": "Learn how",
+ "a1DjGn": "Thank you",
+ "a1XInm": "Team",
+ "a1oLXU": "Delete files from these Dropboxes next time this computer comes online.",
+ "a1wWU+": "Help Centre",
+ "a24I3G": "2. Set your Canvas domain below",
+ "a26imc": "Folder created.",
+ "a2NBnL": "Please agree to the Terms of Service.",
+ "a2rDhR": "Close",
+ "a2yPLP": "or upgrade now",
+ "a3Sd0R": "Anyone with this link can edit the file.",
+ "a3fnYg": "For work",
+ "a3ioU3": "Are you sure you want to cancel {email}'s invitation?",
+ "a3r8zo": "Make sure you don\u2019t get double charged",
+ "a3uqT3": "Account recovery with Facebook is a simple way to recover your account and increase security.",
+ "a5+ACa": "We suggest moving your files into your team account",
+ "a5EQjJ": "{folder_name} shared with everyone.",
+ "a5J2TR": "There are no open assignments. You may want to contact your lecturer.",
+ "a5RjJK": "Could not communicate with {target_origin}",
+ "a5Sp3R": "Please see if one of these articles addresses your question.",
+ "a5VeiF": "Granular sharing permissions",
+ "a5zn2G": "Stay up to date",
+ "a6Ka8X": "Members of the containing shared folder with this link can view the file.",
+ "a6UocB": "Campaign names must contain only lower case characters and dashes",
+ "a6eZsA": "If you\u2019re using a file collaboration tool without a feature like Smart Sync, you\u2019re always going to hit a wall and, as a highly mobile consulting firm, we had hit a couple. Across all levels, Smart Sync has addressed pain points for us and seriously changes the game when it comes to simplifying collaboration.",
+ "a7PP/5": "Files",
+ "a7m1vb": "Can\u2019t talk right now? Choose a day and time that works for you.",
+ "a7nv2w": "Don\u2019t recognise this ticket?",
+ "a8+LVV": "Keywords",
+ "a8C/rm": "You\u2019ve successfully cancelled your team\u2019s Paper move.",
+ "a8aV+r": "Learn more about antivirus software",
+ "a8vutU": "Auto-PDF folder",
+ "a9AKIw": "Additional Notice.",
+ "a9CxmM": "Look like a pro \u2013 use your personal logo and customise the design",
+ "a9L1AQ": "{count, plural, one {{count} request to join your team} other {{count} requests to join your team}}",
+ "a9VA9l": "Top sharing articles",
+ "a9nQg6": "AM",
+ "aAdw66": "{count, plural, one {{requested_str} \u2022 {count} day to accept} other {{requested_str} \u2022 {count} days to accept}}",
+ "aAutLY": "Report generation failed",
+ "aBKIh/": "You\u2019ve used all of your invitations. Remove a trusted contact to add another.",
+ "aBnSRC": "Available: {Timings}",
+ "aC945l": "Set up Smart Sync for your team",
+ "aCaq4h": "Last month",
+ "aCyxpq": "Back",
+ "aD+9i/": "You can\u2019t use this feature because your legal holds subscription has ended.",
+ "aDNTo1": "Success! You\u2019ll receive a text shortly.",
+ "aE+E2Z": "Smart Sync.",
+ "aE4CAA": "Share {space} of encrypted cloud storage",
+ "aEL0+O": "Anyone in the {trademark_business} team with this link and password can view the file. Downloads disabled.",
+ "aEeK+5": "Send file to Slack{workspace}",
+ "aEq3H6": "Email a Dropbox file as a link via Gmail",
+ "aFGv5u": "Share a folder from your personal Dropbox",
+ "aFPJim": "Member",
+ "aG7Srv": "App folder",
+ "aHgFUm": "Assigned cards",
+ "aHwEwV": "Share folder",
+ "aHxPGi": "Animation of multiple personal folders becoming a single team folder",
+ "aI/ARD": "That phone number doesn\u2019t appear to be a valid mobile number.",
+ "aIJ20g": "Team admin",
+ "aIQiHy": "PDF editing",
+ "aIaHX5": "The Dropbox daemon works fine on all 32-bit and 64-bit Linux servers. To install it, run the following command in your Linux terminal.",
+ "aImuAn": "Use this feature to enable extra security for your team\u2019s Dropbox account passwords.",
+ "aJ93qP": "You are connected to {account}",
+ "aJCYRv": "Applying new policy. We'll email you when we finish.",
+ "aJOQtC": "Files with sensitive info",
+ "aJUUxa": "Always be backed up",
+ "aJaiZZ": "{dropbox_plus} or {trademark_professional} accounts",
+ "aJv1kI": "Show newer history",
+ "aK7bwG": "Cannot upload folders with this browser. Try another browser or upload just the files.",
+ "aKjaSP": "\u201cWe\u2019re receiving tons of pictures and we're constantly overriding things that couldn\u2019t be managed in email. Dropbox saves us a huge amount of miscommunication by allowing the latest versions of documents to be available to everybody at all times.\u201d",
+ "aKuCRk": "{count, plural, one {Unlock editing for {count} file?} other {Unlock editing for {count} files?}}",
+ "aL2iGX": "{count, plural, one {Anyone in your {trademark_business} team with this link can edit the file. Expires in {count} day.} other {Anyone in your {trademark_business} team with this link can edit the file. Expires in {count} days.}}",
+ "aL6c1a": "Settings for this folder will now be managed by {collaboratorName}. Bear in mind that you won't be able to manage this folder here any more.",
+ "aLjbdr": "Added members ({num})",
+ "aLnvYH": "Sign and request signatures for documents. Track envelope status from one place.",
+ "aLuHYX": "You\u2019ll be charged for a licence if you don\u2019t have any available when someone is invited",
+ "aM022A": "Comment",
+ "aMDfLT": "Please enter the account holder's name.",
+ "aMIfrN": "Send documents for signature directly from your Dropbox account with HelloSign. Your first 30 days of HelloSign are free.",
+ "aMTr6g": "Now you can only view {filename}. If you still need to make edits, try contacting someone with edit access.",
+ "aMixzH": "This app or feature would be useful\u2026",
+ "aMzIbX": "A screen capture that shows pulling a file that is stored as \u201conline only\u201d in the cloud and working on it from your desktop locally.",
+ "aN7Wkr": "A drawing of a folder with a red X",
+ "aNHFm3": "{count, plural, one {{count} other} other {{count} others}}",
+ "aNSBNQ": "What else can you tell us? (optional)",
+ "aNfH1w": "Cancel",
+ "aNjiD3": "The report shows files and folders shared directly outside your team.",
+ "aNs7i0": "Begin typing your reply...",
+ "aO9iCM": "Learn how to manage cookies in Microsoft Edge Legacy.",
+ "aPVWQg": "Invite collaborators to add time-coded notes and respond to comments, in the video itself.",
+ "aPhz2c": "Remove",
+ "aPxlt0": "Can\u2019t merge without data governance",
+ "aQ8dzK": "We\u2019ll save a CSV report in your Dropbox Business Reports folder and email you when it\u2019s ready.",
+ "aQ9deh": "We\u2019ll charge your PayPal account.",
+ "aR2in8": "Archive team folder?",
+ "aRC8HF": "A free work Dropbox includes:",
+ "aRPI1y": "Join the {team_name} account",
+ "aRZUAa": "{folder_name} will start as unsynced.",
+ "aRido1": "We couldn\u2019t complete this operation. Please refresh the page and try again.",
+ "aRqaxY": "Thanks! We\u2019ll email you when it has been verified",
+ "aSm5lJ": "All the storage space you need",
+ "aT/hea": "Member actions",
+ "aTEm56": "Add groups:",
+ "aTSBWy": "Advanced training for end users and admins",
+ "aThimy": "{name} won\u2019t have access to the admin console or {role} permissions.",
+ "aTqy8d": "I don\u2019t understand how to use it",
+ "aTsr6b": "Cancel your Business subscription",
+ "aTzE19": "All of your work, at your fingertips",
+ "aU1atM": "Your team is using single sign-on, so these settings are managed by your identity provider.",
+ "aU7KBh": "This creates the report faster",
+ "aUI7bK": "You are saving {discount_promo,number,::percent .##} in total on your yearly subscription.",
+ "aUJ5Hz": "Very happy",
+ "aUOgFn": "Collaborating across continents",
+ "aUcxL5": "Thanks for confirming! That\u2019s all we need to know. This information helps keep your account secure. Really.",
+ "aUu9dX": "List view",
+ "aV/y8d": "Contact support",
+ "aWHIko": "Team space and member folders: an overview",
+ "aWO5m4": "Couldn\u2019t connect your Google Calendar",
+ "aX5DgY": "I needed {current_plan} temporarily",
+ "aXkZDs": "Also, {DROPBOX_VAULT} is not available for {BUSINESS} customers. When you upgrade, your vault will become a regular folder that\u2019s managed by your admin.",
+ "aXxyN6": "Send, request or sign encrypted files.",
+ "aYNG+m": "View completed tasks",
+ "aYPyC9": "Uninviting...",
+ "aYixao": "Reconnect",
+ "aZ6BZX": "Paperless signing from Dropbox",
+ "aZF9TW": "Get started",
+ "aZS/dA": "Remove member?",
+ "aaBkPc": "Device approvals",
+ "ab1O+f": "View",
+ "abKO7X": "waypoint",
+ "abKScz": "Permissions",
+ "abTa6U": "Total price including GST",
+ "adehgM": "Thanks for verifying your email address {email}. Your personal account has been changed successfully.",
+ "aeADau": "Successfully unlinked all Paper devices.",
+ "ag7E5d": "Complete",
+ "ag9tIb": "Check if it\u2019s the right file",
+ "agnWO9": "Account deleted and 1 licence freed up",
+ "ah+po9": "Today at {timestamp}",
+ "ah8lH9": "3 minutes",
+ "ahJjcR": "{count, plural, one {You can only delete this item permanently in the admin console.} other {You can only delete these items permanently in the admin console.}}",
+ "ahUaZ7": "I agree",
+ "ahXBZo": "Last active {translated_time_ago}",
+ "ai/+ep": "Organise",
+ "aiUVA4": "{numOfAdmins, plural, one {{numOfAdmins,number} admin} other {{numOfAdmins,number} admins}}",
+ "aim5E8": "Hide folders",
+ "aivEV4": "Save files to Dropbox directly from Microsoft Word, Excel and PowerPoint",
+ "ajeGMb": "What\u2019s included?",
+ "ajzv7m": "
If you don\u2019t recognise a Dropbox charge on your credit card, you can look up the email address and payment date associated with it.
All Dropbox purchases made with a credit card will appear on your statement as DROPBOX*(transaction ID).
Find the transaction ID for the Dropbox charge on your credit card statement. You can do this by searching your statement for \"Dropbox\".
Click to visit our credit card charge lookup tool.
Enter the transaction ID.
If you\u2019re not signed in to Dropbox, you may need to enter the last four digits of your credit card number and the expiry date.
Click Submit. You\u2019ll see the account email associated with the charge, as well as the transaction details.
",
+ "akZmur": "{date,date,::MMM d, yyyy} {date,time,::hhmm} by {creator}",
+ "alLx1L": "No recent activity",
+ "alOnki": "Add it to Dropbox to start working together.",
+ "alPKim": "Find a trusted Dropbox and HelloSign partner. Get the solutions and services you need to achieve your business goals, including implementation, integration, and ongoing management and support.",
+ "alXh/W": "To link your computer, you need to enter a security code. We sent the code to your phone number ending in {digits}.",
+ "alhtiG": "Open",
+ "amJefU": "Everyone will be removed from this folder. You\u2019ll still keep a copy of this folder in your Dropbox.",
+ "amKE6P": "Deleted ({size})",
+ "amldB7": "moved from its original location",
+ "amnrJj": "Remove yourself from \u201c{parent_folder}\u201d?",
+ "amyzxH": "Passwords and expiry dates for shared links",
+ "an+cIC": "We\u2019ll remove any secondary emails and let members know. It might take a while to remove every email.",
+ "an5myK": "Upload",
+ "anIIVl": "All",
+ "anKGN3": "Your team members will appear here",
+ "ane1pD": "There are too many files in one request. Please try again with fewer files.",
+ "aoGm/G": "At the end of your trial, you will be downgraded to a free team plan. Your team will lose out on the additional space it\u2019s been using, file recovery and advanced features such as Smart Sync. If you choose to purchase now, it won\u2019t interrupt your free trial period, and your plan will transition without interruption at the end of the {trial_days}.",
+ "aoKWUe": "deleted executable",
+ "aoTyHk": "Cancel",
+ "aoZO/m": "From",
+ "aoqQzY": "T",
+ "aoqySx": "Receives billing receipt emails",
+ "aov0FF": "Company, department or team name. This is visible to everyone in your account.",
+ "ap/kEq": "How do I share files or folders in Dropbox?",
+ "apGvjm": "{folder} (selected)",
+ "apMqz6": "What\u2019s included in {trademark_dbx_professional}:",
+ "apljdf": "created by team members.",
+ "aq9TxV": "Want to install the app?",
+ "ar5Kkk": "{date} by a permanently deleted user",
+ "ar5eVY": "Sync devices",
+ "arCDoM": "Copy and paste this meta tag between the and tags in the HTML file you\u2019ve opened.",
+ "arUSkr": "Close your next deal",
+ "arXhRE": "The security code is a 3-digit number on the back of your credit card. It immediately follows your main card number.",
+ "arsaiv": "Sending email...",
+ "as5lXY": "Done",
+ "as8fDm": "All admins in their team will lose admin privileges",
+ "asRDyH": "{count, plural, one {and {count} more...} other {and {count} more...}}",
+ "asg4OH": "Connect with Slack",
+ "atNZgN": "e.g. 2021 May, 2021 June, 2021 July",
+ "atcgb4": "",
+ "au69tv": "A cartoon woman in a laptop hands files to a cartoon man in a computer.",
+ "auA0ll": "On {transition_date}, your plan will be downgraded to {display_name}. Your new {schedule} total will be {recurring_price}.",
+ "autMJY": "Productivity features",
+ "avFDKY": "When an existing or new app is listed in App Centre, team members will be allowed to connect the app.",
+ "avSM1Q": "Manage transfer",
+ "avcTAR": "Task assigned to {name}",
+ "awUypt": "Seller profile",
+ "awXcpW": "Free up hard drive space",
+ "awaNQe": "Get {plus_space} of storage space",
+ "awuivx": "Add folder to my member folder",
+ "axFE/u": "Let removed members keep a copy of this shared folder",
+ "axM53h": "Getting details\u2026",
+ "axSi6e": "{num_invited, plural, one {Invited {num_invited,number} person.} other {Invited {num_invited,number} people.}}",
+ "axkOyT": "Team only",
+ "axxaX3": "{count, plural, one {You moved {count} item into {dst_folder}} other {You moved {count} items into {dst_folder}}}",
+ "ayeepw": "Cannot change role. This member\u2019s account has been suspended or deleted.",
+ "ayiXFG": "OS:",
+ "aywSTB": "Sharing files and folders",
+ "azKYUl": "Last 30 days",
+ "b+266D": "Something went wrong, but we think it's a one-off.",
+ "b+PDmn": "To configure your authenticator app:",
+ "b+in9r": "Expand",
+ "b+oCqw": "Link to Trusted Teams page",
+ "b/6fzj": "Get peace of mind knowing that, if work is lost, deleted or edited by accident, file recovery and version history make restoring it easy.",
+ "b/mGhH": "{count, plural, one {Anyone in your {trademark_business} team with this link can view the file. Expires in {count} day. Downloads disabled.} other {Anyone in your {trademark_business} team with this link can view the file. Expires in {count} days. Downloads disabled.}}",
+ "b/nZwr": "server error",
+ "b/v5Up": "Accept admin authorisation",
+ "b/xMl7": "Product template",
+ "b05DDk": "Available accounts:",
+ "b0InwQ": "Members of this folder with this link can view this folder",
+ "b0RM5Q": "You shared this file in Zoom",
+ "b0Z67l": "Mobile offline folders",
+ "b0kB2h": "Best-in-class sync and encryption",
+ "b1XaAp": "What is a CPF?",
+ "b21B7N": "Anyone you invite will have access to team folders",
+ "b2V4ID": "Error occurred removing trusted contact. Please try again.",
+ "b2gULy": "People can view, download and comment",
+ "b2hebe": "Uninvite",
+ "b2m/7G": "Deep integrations with Dropbox",
+ "b2mHDQ": "Rotation",
+ "b3A+2r": "Executable",
+ "b3AAQ1": "Email address they can contact",
+ "b3FNKE": "Sign in to websites instantly with the browser extension",
+ "b3GfsE": "Professional",
+ "b3ICHC": "{count, plural, one {Retry {count} file} other {Retry {count} files}}",
+ "b3LIjO": "Easy-to-manage permissions",
+ "b45/jf": "You can edit your team\u2019s folders and add members in the admin console.",
+ "b47mh4": "That account can\u2019t be paired. Paired account must be a personal account.",
+ "b4kkaV": "Upload file to Canvas",
+ "b4miuq": "Keep your files intact",
+ "b4unIL": "Legal entity:",
+ "b4wAd/": "Cancel your trial",
+ "b4yU+a": "Access",
+ "b5SCJd": "{teamName} wants you to join them",
+ "b5cAXX": "Search group members",
+ "b5iY5M": "Couldn't load content. Try refreshing the page.",
+ "b66NaO": "To set up a BAA, first you need to turn off Paper for your team.",
+ "b6TUXY": "24/7 phone support (in English)",
+ "b6UWIM": "What is the difference between {trademark_business} and {trademark_plus}?",
+ "b7//2e": "You don\u2019t have permission to share this folder.",
+ "b797tg": "See traffics and insights \u2013 track visits to make sure your files get to the right people",
+ "b7TtU4": "Gather ideas in Paper, a new type of doc, and keep the conversations going when you search, post and create new Paper docs directly from Slack.",
+ "b7f4wu": "You can use Files to manage your files in Dropbox",
+ "b7fwuB": " to turn off Paper.",
+ "b8CWB6": "Skip for now",
+ "b8cJEE": "Next",
+ "b8dAMd": "Your files are ready to upload",
+ "b8jlo4": "Use HelloSign to prepare, send and sign your most important documents, directly from Dropbox.",
+ "b8vqRw": "Unknown error when sending text message",
+ "b9/0IS": "Dropbox blocked access to the file containing malware.",
+ "b9LPyG": "{count, plural, one {Activity: {count} week ago} other {Activity: {count} weeks ago}}",
+ "b9n9hF": "Other",
+ "b9rPCC": "Go to {reseller_name} to view or make changes to your account details",
+ "b9zY1/": "Add a name",
+ "bA6hAM": "Select {display_name}",
+ "bAPMC8": "When you update a file in the Dropbox team folder on your desktop, it is updated automatically on your phone and tablet \u2013 and your teammates\u2019 devices. No more emailing \u201cSales presentation v4b.pptx\u201d to collaborators. And with Dropbox Smart Sync, everyone can access online files without filling up their hard drives.",
+ "bArtK/": "Archive document?",
+ "bB2Gll": "Edit in Dropbox",
+ "bBcQce": "You\u2019re almost out of room!",
+ "bBrAx/": "{filename} will be gone forever for everyone, including anyone still using the file. Permanently deleting items won\u2019t free up space.",
+ "bBvwr6": "Send, sign and store your most important documents \u2013 all in Dropbox",
+ "bCVn5i": "If you need to expand your crew, {displayName} can add members to or remove members from the Family plan at any time.",
+ "bD4kqG": "Uploaded by",
+ "bDOcv2": "Everything will soon be just as it was before {date} at {time}. Don\u2019t make any changes here until it\u2019s finished.",
+ "bDl1zV": "{count, plural, one {{min_licenses} person} other {{min_licenses} people}}",
+ "bE/Hbq": "Buy {trademark_business}",
+ "bE1oMs": "More about payments & billing",
+ "bEFfDy": "Change summary",
+ "bF2GU6": "S",
+ "bFPFFC": "Asked to join",
+ "bFX0L5": "When you star items, they\u2019ll appear here for easy access.",
+ "bFo4Xd": "Action disabled",
+ "bFoB59": "Audio details",
+ "bG/D5T": "Remove from exceptions",
+ "bGQpgB": "A Dropbox sample to-do list with items ticked off and assigned to different names.",
+ "bGrRFg": "Reason for cancelling",
+ "bGzf4A": "I changed my mind \u2013 keep Backup",
+ "bH2wYE": "Wrong password \u2013 please try again",
+ "bHAG7G": "Go to Home",
+ "bHLuEo": "Feedback submitted.",
+ "bHTimX": "Dropbox shared folders allow you to share photos and videos, or work together on projects and reports. Learn more",
+ "bHy9Vv": "Swap column to {nextlabel}",
+ "bI4JeF": "Email or name",
+ "bILm3Y": "Time",
+ "bIcgBl": "Import members with .csv template",
+ "bIlKqy": "Add task",
+ "bJMhuf": "Your role has been updated.",
+ "bJh6n1": "Joining...",
+ "bJo4iz": "Download the HTML file",
+ "bKNfFv": "Old comment",
+ "bKitYR": "Do you have any volume discounts?",
+ "bKmf0p": "Add a new time-based token.",
+ "bKzGF3": "TFA",
+ "bL7vRw": "Cancel",
+ "bLA3rA": "There was a problem completing this request.",
+ "bLAtro": "team user",
+ "bLBJ7q": "With {plan_space} of space and powerful sharing features, {dropbox_plan} keeps your stuff accessible and safe wherever you are. For a limited time, get {free_months} months free with your first year of {dropbox_plan} when billed yearly!*",
+ "bLcM5H": "Every two years",
+ "bLfZ53": "To:",
+ "bLkE1V": "64-bit",
+ "bLoNgh": "Couldn\u2019t add some files",
+ "bM24G7": "This folder is empty. Drag files here to upload, or browse from your computer",
+ "bMN6Dv": "Dropbox desktop app",
+ "bMtgBx": "Categories",
+ "bN+axy": "Please enter a valid VAT number.",
+ "bN53PL": "That's not a valid phone number. Please try again.",
+ "bNCYC/": "More about account access & security",
+ "bNQquS": "Paper docs",
+ "bOQ/DU": "{name} edited {item_name}",
+ "bObFEu": "Files",
+ "bOm6ZC": "Not helpful",
+ "bQ+gIz": "Start export",
+ "bQoyjz": "Your security codes will be generated by your authenticator app",
+ "bRFM/B": "This will unshare {folder_name} for everyone. After the folder has been archived, you can choose to restore it or permanently delete it.",
+ "bRVQ+X": "2 sessions",
+ "bRgIry": "Try the Dropbox Migration Assistant.",
+ "bRyYj6": "Les Lunes",
+ "bRyuHy": "Find out more about the people in your team. List everyone\u2019s personality type and preferences to get to know each other better.",
+ "bS30wb": "Try out the best of Dropbox for free",
+ "bS61cX": "Owner email address:",
+ "bSb5Nv": "The report includes users with accounts from the domains you\u2019ve verified. It will be saved to your Dropbox Business reports folder.",
+ "bSdTWj": "Search for content from \u201c{name}\u201d",
+ "bTfbvz": "Items only you can access",
+ "bTiSCc": "The username portion of the email address is invalid (the portion before the @: {username})",
+ "bU2V03": "Mobile contacts",
+ "bUJ7+m": "Try it free for {days} days",
+ "bUU65i": "You can transfer up to {size_limit}, and recipients don\u2019t need a Dropbox account.",
+ "bVWUu9": "Secondary email",
+ "bViVrZ": "Learn more",
+ "bVo/aV": "What payment methods can I use?",
+ "bW9cCS": "Email address doesn\u2019t exist.",
+ "bWBwYC": "OK",
+ "bWH2P3": "No default file browser",
+ "bWKJBF": "{count, plural, one {Upload {count} item to\u2026} other {Upload {count} items to\u2026}}",
+ "bX2Gi+": "When you\u2019re ready to download these files, create an export to choose what to include.",
+ "bXRbMC": "No, thanks",
+ "bXT0ok": "{count, plural, one {Change permission for {count,number} app?} other {Change permission for {count,number} apps?}}",
+ "bXw0Bv": "{standard_space} of space for secure storage",
+ "bYMNDL": "Company managed",
+ "bYoY7C": "{tax_rate} {s}",
+ "bYybEk": "Space",
+ "bZeTi+": "{count, plural, one {{count} submission} other {{count} submissions}}",
+ "bb8EQj": "{price}/user",
+ "bbaoYt": "Manage plan",
+ "bbdWHF": "Return to Dropbox Home",
+ "bbivSg": "{count, plural, one {{name} shared {count} item in {folder_path}} other {{name} shared {count} items in {folder_path}}}",
+ "bbjd2v": "Your organisation turned off Dropbox Transfer.",
+ "bbnyie": "Simusolar logo",
+ "bcOqfi": "Nothing is currently held for the {hold_name} hold. These members haven\u2019t edited Dropbox files between the dates the hold is set for.",
+ "bcdScm": "Investor relations",
+ "bd8XVn": "Easily track who\u2019s visited your shared links and whether they viewed or downloaded.",
+ "bdV6O3": "Add an email address or name",
+ "bdZ+y4": "Open Preferences",
+ "bdjwzx": "close",
+ "bds2NY": "My Dropbox",
+ "be3adi": "Only you can view until {date}",
+ "beDtWv": "Start",
+ "ben5Q2": "{count, plural, one {{name} renamed {count} item in {folder_path}} other {{name} renamed {count} items in {folder_path}}}",
+ "bfG+or": "{count, plural, one {Uploaded {count} of {num_files} files} other {Uploaded {count} of {num_files} files}}",
+ "bfPXU3": "Edit policy",
+ "bfYJqV": "More about ",
+ "bfob0z": "Manage groups",
+ "bg2sx0": "Or buy {plan} now",
+ "bgAMj/": "Number of files",
+ "bgAvOC": "Invite to team",
+ "bgGX06": "Request files from others",
+ "bgxNp5": "Next",
+ "bh4Con": "Delete vault",
+ "bhUW5J": "Back",
+ "bhV8Xa": "Create",
+ "biXmFy": "Handle inviting and removing members",
+ "bit2fM": "Allow team admins to update",
+ "bjLf+T": "Reconnect to Slack to enable new features",
+ "bjXnI/": "Family manager",
+ "bjsWDZ": "Learn more",
+ "bk090p": "Enable two-factor authentication (2FA)",
+ "bk3RXd": "Secondary email not added because admin turned off secondary emails for the team.",
+ "bkL3Mx": "Add team members",
+ "bkjynL": "Add more folders",
+ "bkwpZv": "\u2013 Files over 3 MB won\u2019t be available.",
+ "bl8cV8": "Add a note (optional)",
+ "blAaiJ": "You can\u2019t move a folder into itself.",
+ "blhA/v": "{standard_plan_name} provides teams with {standard_plan_size} of storage, and simple sharing and collaboration tools. For teams needing more storage and security, {advanced_plan_name} provides as much space as your team needs in addition to sophisticated admin, audit, integration and security features. Learn more about our plans here.",
+ "bllI0t": "Choose a capture setting for {domain} and its subdomains",
+ "bmFiS6": "Unlimited team folders",
+ "bmMN8X": "{filename} can\u2019t be restored.",
+ "bmpvII": "Other",
+ "bnI+zs": "Members removed from {current_folder}.",
+ "bnVvXx": "Share {planStorage}",
+ "bngIeS": "Free up your hard drive with Smart Sync",
+ "bo2yB9": "Admin console",
+ "bpCCWX": "MVMT Watches logo",
+ "bpefQm": "MB",
+ "bpkPnz": "Enter team names",
+ "bqkKNB": "Overdue \u2022 Open until {date} at {time}",
+ "bqyLa4": "This suggestion doesn\u2019t make sense.",
+ "br8y9J": "While we convert your vault into a folder, your vault files will be temporarily unavailable.",
+ "brJbXL": "\u201cHITECH Act\u201d",
+ "brKsol": "{count, plural, one {You edited {count} item} other {You edited {count} items}}",
+ "briiwg": "Cancel plan",
+ "bstJZP": "Tell me more",
+ "bt00L4": "Web session control",
+ "bt45Zn": "Look up charge",
+ "btXL78": "The team they\u2019re moving to",
+ "btzVqj": "Team members created {num_of_docs} doc when Paper was on. You can export docs or turn Paper back on to restore access.",
+ "bu+08H": "Delete personal Dropbox account",
+ "bu9mSE": "None",
+ "bv7A4+": "Close",
+ "bvSv5n": "Search by ID, name, owner or stormcrow",
+ "bvWqKd": "Team",
+ "bvY807": "Skip this",
+ "bvecjC": "{name} added {single_item_name}",
+ "bwGxpK": "Access type",
+ "bwd9KJ": "Set who can rewind folders",
+ "bwl4D+": "Drop a link \u2013 to a YouTube video, GIF, Pinterest board, Google Map, SoundCloud clip or more \u2013 into your doc, and Paper will know exactly what to do with it.",
+ "byKoLL": "Team member",
+ "bym3DR": "Personalise branding with company logo and messaging",
+ "bymgyp": "Email address",
+ "bz5uvy": "No, thanks",
+ "bzOInI": "{count, plural, one {Your team admin needs to add billing information so your team can keep using {business}} other {Your team admins need to add billing information so your team can keep using {business}}}",
+ "bzX6pC": "{gigabyteSpace}",
+ "bzhp8r": "2500-4999",
+ "bzmHgH": "{count, plural, one {{count} item couldn\u2019t be permanently deleted} other {{count} items couldn\u2019t be permanently deleted}}",
+ "c+7pvZ": "Set a unique password to protect your personal Dropbox account.",
+ "c+XCEa": "in {folder_name}",
+ "c+bJS6": "Dropbox keeps teams on the same page",
+ "c+oBfZ": "Members can only view docs.",
+ "c+zlAl": "multiple file size limit warning",
+ "c/APXo": "Sync Desktop and Documents",
+ "c0mAgf": "\u2022 Moving to a location with faster Internet speeds and trying again",
+ "c19pEr": "There was a problem with your request",
+ "c1LjRL": "There was a problem starring your selection",
+ "c1bGK9": "No charge made to the payment method on file.",
+ "c2J6cp": "Can\u2019t copy 10,000+ files. Try copying sub-folders individually.",
+ "c2gv+i": "Open policy",
+ "c2rsJa": "An error has occurred",
+ "c33ndA": "Does the file contain this information?",
+ "c36Skn": "Drag files and folders here to upload",
+ "c3mJXi": "Dropbox Paper gives you the freedom to custom-build your own templates. Start from scratch or turn an existing doc into a template.",
+ "c4u/Hi": "{team_name} admins won\u2019t be able to update this setting",
+ "c4vsh8": "Add identity provider sign-in URL",
+ "c5OSMC": "Your team and personal accounts are linked. Unlink to remove the link everywhere.",
+ "c5Q+0E": "Never lose a document",
+ "c5TE9d": "You\u2019re changing to yearly billing. Your yearly total will be {recurring_total}, due on {date}. You aren\u2019t being charged at the moment because you\u2019re still on a free trial.",
+ "c5Z/92": "Now let\u2019s continue with your installation",
+ "c62qXF": "Open Dropbox folder",
+ "c69F3c": "Cancel your trial",
+ "c7HEyY": "Activity",
+ "c7J2CV": "ISO",
+ "c7ejff": "Auth token",
+ "c7lcWO": "Preferred method",
+ "c7pOMh": "Exit without saving?",
+ "c7uyt4": "Show less",
+ "c8LIUh": "Space for your team to share and collaborate",
+ "c8Te9P": "Skip quiz and see all plans",
+ "c8hBvx": "Something went wrong. Please try again later.",
+ "c8uRxp": "Teams in my federation",
+ "c8xmjm": "Advanced, billed yearly",
+ "c9FloK": "Frame rate",
+ "c9Q5A3": "Connect your {provider} account to your Dropbox account ({email})?",
+ "c9VDND": "From {date}, we\u2019ll bill this account once a {new_period_noun} for the {plan} plan. This account\u2019s new {new_period_adj} total will be {new_amount}.",
+ "c9YX4N": "Channels",
+ "c9ZK6b": "{count, plural, one {Send invitation} other {Send invitations}}",
+ "cA59H9": "Sync tasks from Dropbox",
+ "cAAO8x": "Folder name",
+ "cAWSP3": "Send large projects to clients safely",
+ "cAXMSv": "Everyone\u2019s default limit",
+ "cAdo2n": "Ignore task",
+ "cApiKm": "%(display_name)s\u2019s content is held. You can release their content on the legal holds page once you\u2019ve added billing info. Otherwise, contact us for help.",
+ "cAy+uX": "Dismiss",
+ "cBBY+o": "Get Smart Sync on desktop",
+ "cBGuNM": "Read the article",
+ "cBNivm": "Rename",
+ "cBVThZ": "{plan_name} is your current plan",
+ "cBZAIc": "That\u2019s it!",
+ "cBwp3t": "Identity provider sign-out URL",
+ "cBx2hi": "Reply\u2026",
+ "cBxIP4": "Grid",
+ "cCXljJ": "{tax_name} ({tax_rate,number,::percent .##})",
+ "cCjbve": "Zoom",
+ "cDIpW4": "Last modified",
+ "cDMvxm": "Couldn't extract files.",
+ "cDmyI0": "Send SMS instead",
+ "cE4Y7s": "Stay on top of projects, schedules and feedback, without wasting time tracking down all the details.",
+ "cFWhoT": "Google Play Store",
+ "cGfb+1": "Sync across unlimited devices",
+ "cGuWuL": "View previous versions",
+ "cH+kfb": "Customise design",
+ "cHEg6H": "Share folder",
+ "cHFUuQ": "Compare all plans",
+ "cHI0C1": "File type",
+ "cHIDn5": "Folders from computer",
+ "cHWnMe": "You can't share until you verify your email address.",
+ "cHykwm": "PPT, PPTX, KEY and more",
+ "cI8hTT": "If you change your mind, you can still find Vault in your Dropbox settings.",
+ "cIE9zv": "Outside {teamname}",
+ "cIP6mb": "Secondary emails",
+ "cISSp1": "Sharing controls.",
+ "cIjfEc": "{name} can view",
+ "cJ55ov": "Collapse {folderName}",
+ "cJJCVe": "Make new files online only.\nChoose if you\u2019re usually online and you worry about filling up your hard drive.",
+ "cJaGRK": "Need Dropbox for work?",
+ "cJnjxB": "Can\u2019t restore \u201c{folder_name}\u201d here because it was moved",
+ "cJojIg": "Name",
+ "cJu72Z": "Nothing has come in yet",
+ "cK/p7/": "Dismiss",
+ "cK1WRa": "Changed {name}'s role.",
+ "cKGZU3": "Deleted policies go here",
+ "cKlOYj": "Enter a new email address for your {team} Dropbox. You\u2019ll need to verify your new email address in order to finish updating your {team} email.",
+ "cL+GSY": "Couldn\u2019t send request. Check your connection.",
+ "cL6pDx": "6 months",
+ "cLd8Pw": "Invite \"{emailAddress}\" via email",
+ "cLlfgc": "Cancel",
+ "cM0udI": "Knowledge base",
+ "cM71jp": "Open your computer and visit {url}.",
+ "cMEXP4": "{count, plural, one {Deleting item\u2026} other {Deleting items\u2026}}",
+ "cMmbfK": "To",
+ "cNBwY5": "Downloading Vault files",
+ "cNOlRK": "Close modal",
+ "cOKRGa": "Verification email sent to {email}.",
+ "cOMGEP": "Search in folder \u201c{folder}\u201d",
+ "cOQnvy": "Total (incl. {tax_rate,number,::percent .##} tax)",
+ "cObCdG": "Next",
+ "cOjk/S": "No holds released yet",
+ "cOo73s": "Happy",
+ "cP/Qat": "Date joined",
+ "cP9Slf": "Background image",
+ "cPi7mo": "Home",
+ "cPrY3T": "{count, plural, one {You moved {count} item out of this folder} other {You moved {count} items out of this folder}}",
+ "cPvfN1": "{count} tasks selected",
+ "cQI9SM": "People we think you work with have joined this team",
+ "cQSoti": "See admins",
+ "cRptek": "Lock editing for this file?",
+ "cSHMdp": "{count, plural, one {You shared this file with {entity} and {count} other} other {You shared this file with {entity} and {count} others}}",
+ "cSWjTH": "Viewing now",
+ "cScX5m": "Downloads disabled.",
+ "cSdFMB": "The following app was found:",
+ "cSnpOO": "Add more team members",
+ "cTLqae": "Daniel Jim\u00e9nez, Head of Mobile Product & Design",
+ "cTRGoc": "Key inserted",
+ "cTSL5R": "Developers",
+ "cUG8mA": "Next slide",
+ "cUVIeh": "Membership pending",
+ "cUVZm6": "A folder overview of personal files being shared with family",
+ "cUgjSa": "Couldn\u2019t update sync default for {folder_name}. Try again.",
+ "cUu2B+": "Hides alert from list",
+ "cVFJYA": "This folder is part of a shared folder:",
+ "cVOhzs": "You no longer have access to {filename}. You can\u2019t make any changes to it, but you can hide it from your view. Hiding folders won\u2019t free up space.",
+ "cVVb31": "Too many attempts. Please try again in a few hours or visit our Help Centre page.",
+ "cVhN0Q": "{count, plural, one {Members of this folder with the link can view this folder. Expires in {count} day.} other {Members of this folder with the link can view this folder. Expires in {count} days.}}",
+ "cW+AjO": "Do you have any discounts for {trademark_business} and Dropbox {enterprise_plan_name}?",
+ "cWN/b2": "Unlink {device}",
+ "cWc+oS": "Switch to {role} Dropbox.",
+ "cWhsC1": "Remove team",
+ "cXsXL6": "{count, plural, one {{used} of {count} licence assigned} other {{used} of {count} licences assigned}}",
+ "cYFOkO": "Go to admin console",
+ "cYQAGY": "Create a new export",
+ "cYeL2x": "PIN and auto-lock to protect one-of-a-kind docs, such as passports",
+ "cYlduc": "Current step is {current_step} of {total_steps}",
+ "cZ2b6l": "View member",
+ "cZ3kun": "Your Dropbox has {current_usage} of files, so you won\u2019t be able to add new files or sync changes until you make space.",
+ "cZ6jlq": "Clear",
+ "cZFPgt": "{count, plural, one {Expires in {count} hour} other {Expires in {count} hours}}",
+ "camCQi": "You will not be charged to renew the subscription. After the gift subscription ends, the recipient will have the option to renew using their own billing details.",
+ "cb9Hpy": "Open in new tab",
+ "cbfrYC": "They will lose access to the customer console and the partner portal.",
+ "cbx30W": "Some people you\u2019ve invited still haven\u2019t joined. Send a reminder or free up the licence for someone else.",
+ "cbxkbw": "\u201cWith Dropbox, educators can collaborate securely with colleagues on any device and platform \u2013 across campus and across the world\u201d.",
+ "ccIqqh": "The member will keep unshared files and folders, and shared folders that they own",
+ "ccTmBg": "Or buy {plan} now",
+ "ccV4fB": "Pin",
+ "cd0u/5": "Name:",
+ "cdAaQR": "My files",
+ "cdTbAt": "View all details",
+ "cdao0h": "To reprint",
+ "cdeUMZ": "By joining {team_name}\u2019s {trademark_business} account, your {dropbox_trial_plan_name} trial will be cancelled automatically.",
+ "ceBnJy": "{space_needed_sentence} To get more space, ask your Dropbox admin ({admin_email}).",
+ "ceiaqL": "Previous notification type",
+ "cfAu87": "Shared by",
+ "cfY9R8": "Set whether members can edit items at the top level of the team space",
+ "cfr8oX": "Invitation accepted",
+ "cfsf89": "Back to about",
+ "cgG058": "See campaign plans, progress and reporting in one place. Draft content, collect edits and feedback, and share campaign results with embedded social posts.",
+ "ch9Ih/": "Please enter a valid security code.",
+ "chNbcV": "Show {num_more} more",
+ "chQq36": "Already in the group",
+ "chmX0p": "Currently a federation admin",
+ "choKeS": "Have a look",
+ "chu7BM": "Put your best work in the best light",
+ "ci/njD": "Invite your team",
+ "ciLB6A": "Billing postcode",
+ "cjpRxl": "Versions",
+ "cjsqqA": "You\u2019ve indicated that there was suspicious activity on your account. {br}Please take a few moments to secure your account.",
+ "ck1w+U": "Add to {cdm_tmf_name} folder",
+ "ckH+zx": "You\u2019re joining with {email}. Contact your admin to make changes.",
+ "ckTMRu": "No members here",
+ "ckieZe": "Standard, billed monthly",
+ "ckojTq": "Store and sync your files with Dropbox",
+ "cktSyi": "@Mary, add your photo to the directory. {emoji}",
+ "clear_filters": "Clear filters",
+ "cmX5fh": "Hold name",
+ "cmbsV5": "Please enter a name that has {max_len} characters or less.",
+ "cmoc7r": "Contact email address",
+ "cmpPHV": "Remember that, after cancelling your {current_plan_name}, your account will drop from {current_plan_space} to {free_quota} of space.",
+ "cmpaQc": "See a preview of how your business name and logo will look when members share files and folders.",
+ "cmvuT4": "Click 'Save' below to turn off classification. We\u2019ll turn off scanning and alerts for sensitive information.",
+ "cnFwfe": "You\u2019ll keep files and folders that you own",
+ "cnIj+Q": "To request a refund, follow these instructions from the Apple support page:",
+ "cnToDS": "No fill colour",
+ "cndbj9": "You\u2019ll lose access to team folders and most team-shared content",
+ "cnihuZ": "About trusted contacts",
+ "cno0Aw": "Help your team get organised by creating folders or uploading files. When you make a folder, the default setting gives everybody access, but you can change that with each folder.",
+ "cnxV88": "Choose a folder from your {team_name} Dropbox",
+ "cnygcw": "You won\u2019t be able to see future changes to this shared folder, and new members of {parent_folder} won\u2019t have access to this folder automatically.",
+ "co6oES": "You created this transfer, so you don\u2019t need to enter a password.",
+ "co8Hxo": "No legal holds yet",
+ "coBv0b": "{count, plural, one {Your free trial plan currently has {count} licence. You\u2019re not being charged at the moment. If you purchase {trademark_business}, your {schedule} total will be {total}.} other {Your free trial plan currently has {count} licences. You\u2019re not being charged at the moment. If you purchase {trademark_business}, your {schedule} total will be {total}.}}",
+ "coNoZH": "{count, plural, one {You moved {count} item out of {src_folder}} other {You moved {count} items out of {src_folder}}}",
+ "coyNNY": "Ticket no. {ticket_id}",
+ "cpZlX1": "Access across devices",
+ "cpdG0j": "Yes. The {trademark_business} base package includes {min_users} users, but you don\u2019t need to use all of the licences straight away. Since licences can be reused, many of our customers reserve extra licences for contractors or clients.",
+ "cpuRML": "Google Sheets",
+ "cq17CA": "{vacuuming_policy_max_days} days of file recovery and versioning",
+ "cqnNGg": "You\u2019ll get an alert if a member deletes an unusually large amount of content.",
+ "craoS6": "Members on your team who use macOS 10.13 or newer might also see a message asking them to allow the system extension on their computers.",
+ "crh0eS": "Loading courses...",
+ "crq098": "Policy name",
+ "cruh0p": "{count, plural, one {{count} item selected} other {{count} items selected}}",
+ "csVbgc": "Access their admin console",
+ "cscT9A": "Add more",
+ "css0+7": "Couldn\u2019t edit the hold. Try editing it again, or get in touch with us so we can help.",
+ "ctNPP6": "Send email",
+ "ctbg/G": "{name} restored a previous version of {item_name}",
+ "cu4sOk": "Edge Legacy",
+ "cuR/QW": "Get {backupPlanName}",
+ "cv7wtw": "Connect to {service_name}",
+ "cvKw36": "Shared with you",
+ "cvS2kS": "We're calling you now...",
+ "cw3HAU": "Image",
+ "cwBef2": "You can\u2019t make changes to your billing period until your plan migrates on {date}.",
+ "cwEFpr": "Collapse",
+ "cwHYgu": "Undoing paste...",
+ "cwPUny": "The link has expired",
+ "cwUCX9": "Folder examples",
+ "cwWK1c": "Comments are disabled on this file.",
+ "cxbIsu": "items",
+ "cxrZ5f": "Anyone with this link and password can edit the file. Downloads disabled.",
+ "cxuwqy": "Add members to groups(optional)",
+ "cy939I": "or ",
+ "cyK8F+": "Members of {parent_name}",
+ "cyZ70Z": "Create new group",
+ "cyz1+l": "Merge into the primary team",
+ "cz5EGW": "Other",
+ "d+WMjv": "Free unlimited file version history",
+ "d+plq6": "You have no activity yet",
+ "d+zp+s": "Contact Dropbox",
+ "d/RzfK": "You moved {single_item_name} from {src_folder} to {dst_folder}",
+ "d/lDff": "{display_name}\u2019s content is currently being held. To convert this member\u2019s account to a Basic account, first you need to remove them from the hold on the legal holds page.",
+ "d/yfsq": "Other details",
+ "d0I3Ij": "You",
+ "d0qDFs": "Request a refund of your Plus or Professional subscription",
+ "d1RJmU": "Transfer to {team_name}",
+ "d2/soY": "Are you sure you want to remove {domain_name} from your verified domains? Any capture settings will be disabled for this domain. To add this domain back in, you\u2019ll need to go through the verification process again.",
+ "d2BniZ": "Choose who can add people to this folder.",
+ "d2ntjL": "Your {schedule} total is {total}.",
+ "d2p/N2": "Looking for {dropbox_enterprise}?",
+ "d2zmmn": "Anyone in your {trademark_business} team with this link can edit the file.",
+ "d38Eo2": "If you'd like to use a different email address for the admin account, feel free to",
+ "d3APGw": "Switch accounts",
+ "d3Ackq": "Multiple screens of different Dropbox interfaces for collaboration, such as adding comments and using to-do lists.",
+ "d3FU8o": "
Using a strong and unique password ensures that only you can access your Dropbox. If you have ever reused your Dropbox password on another service, or you\u2019re worried that your account has been hacked, let\u2019s change your password now.
{pw_policy}Learn more about how to set a strong password.
",
+ "d3Gvwr": "Creating edit link...",
+ "d3fp0/": "Just now",
+ "d3yA4k": "Verification email sent.",
+ "d3yeCH": "Start your free trial",
+ "d4+0L4": "Your new password should be at least four bars:",
+ "d4NBuU": "You can download all of the files in {displayName}\u2019s vault",
+ "d4VlOv": "Download Dropbox to get started",
+ "d4dxMf": "Multi-team admin login",
+ "d5CqmW": "You\u2019ve lost {space} of space and access to features such as the admin console, extended version history and Smart Sync. Add your billing info now and you can pick up where you left off.",
+ "d5TZsg": "Choose how members can use apps such as Google Docs, Sheets and Slides in Dropbox",
+ "d5mWRd": "Licences remaining/total",
+ "d66a8A": "{count, plural, one {{name} and {count} other edited this file} other {{name} and {count} others edited this file}}",
+ "d6EJIc": "Pin",
+ "d6gV6F": "Your new {schedule} total will be {total}.",
+ "d84yLP": "Templates for creative teams",
+ "d8Hwut": "Folder shared",
+ "d8Nac1": "{user_name} is not a member of \u201c{folder_name}\u201d yet. If you don\u2019t share this folder, they won\u2019t be able to view its content",
+ "d8SxFc": "Add attachment",
+ "d8lth0": "Disable downloads",
+ "d9/KKl": "Surname",
+ "d9/SE1": "Cancel",
+ "d9BujG": "Rename",
+ "d9e9Pm": "Change my billing currency",
+ "d9l7ze": "Add files",
+ "d9pOTC": "Once people start doing things with this file, you\u2019ll see their activity here.",
+ "dA+q8i": "Here are a few people you already work with who could help you get started",
+ "dAC30S": "Your team can\u2019t merge while you\u2019re on a trial",
+ "dAiKVL": "Add a work Dropbox to keep your personal and work files separate.",
+ "dB+YMZ": "Confirm",
+ "dBUsOH": "While you\u2019re using Dropbox, what you do will be recorded and could be reviewed. More importantly, there could be criminal and civil penalties if you use anything in an unauthorised way. By continuing, you\u2019re agreeing to these conditions.",
+ "dBZbCY": "Only you can make changes to {path} while editing is locked. Anyone else with access to the file can still view it.",
+ "dBd/+Q": "{count, plural, one {Members of the folder with this link can view this folder. Expires in {count} day. Downloads disabled.} other {Members of the folder with this link can view this folder. Expires in {count} days. Downloads disabled.}}",
+ "dBf+k2": "Info in this report",
+ "dBf5YB": "If your Dropbox account isn\u2019t connected to your computer, you may not be able to use this feature after your account has been downgraded.",
+ "dBhsDd": "Store your PDFs and signed documents in one, secure place.",
+ "dBjWdl": "You can edit PDFs and add e-signatures with airSlate PDFFiller, which offers team-based workflows and PDF editing tools. New users get 10 free PDF workflows.",
+ "dBuge5": "These members won\u2019t show up in the team member list or in suggestions.",
+ "dC654w": "You\u2019ve cancelled your change.",
+ "dC6BIH": "Advanced server integration",
+ "dCUFWV": "Accounting/finance",
+ "dDEpMo": "Enterprise admin",
+ "dDHqbP": "Redeem a licence key",
+ "dDgY49": "Members of the containing shared folder with the link can view this file. Downloads disabled.",
+ "dDjF8b": "{billing_cycle} \u2022 All the space you need",
+ "dDjPWY": "You\u2019re about to leave the {team_name} Dropbox team",
+ "dDnm8S": "Branded sharing",
+ "dEHwyG": "Share feedback",
+ "dEJ+SP": "It looks as though this team size has already been reached",
+ "dEKfa4": "Your download may have some issues",
+ "dEtaMT": "Check the device and browser",
+ "dF0ZGK": "monthly",
+ "dFFA0Z": "An error occurred while trying to load your folder.",
+ "dFTyxF": "Reset two-step authentication icon",
+ "dFfOYv": "Focus on the work you love \u2013 let Dropbox help with the rest",
+ "dFnsUz": "Our team is hard at work getting this feature ready for your vault, and we can alert you as soon as it's ready.",
+ "dFs4Fw": "Your trial will end in four days. Your account will be downgraded, and your team will lose the additional space it\u2019s been using, file recovery and advanced features such as Smart Sync.{br}{br}Add your billing info now so your plan will transition without interruption on {trial_end}.",
+ "dGC+Wl": "Account transfer",
+ "dH44Uq": "Only people that have been invited have access to new folders",
+ "dH4q5d": "You invited: {emails}. We\u2019ll notify you when they join.",
+ "dHI2/s": "Make sure the file is in CSV format and UTF-8 encoded.",
+ "dHMDsc": "24/7",
+ "dHSq4d": "Create your own",
+ "dI/OK5": "You deleted {item_name}",
+ "dI6NmA": "Please ensure that you\u2019ve verified your email and try again.",
+ "dIg6Qm": "Done",
+ "dIi5ZR": "Your payment method has been pre-configured through your bank.",
+ "dJ89Tu": "We\u2019ll let {host_team_name} know that you signed in. Any changes you make while signed in will be shown on their activity page.",
+ "dJDZvm": "I understand that disbanding the team is permanent and members may retain team data. The {team_name} Dropbox account will no longer exist.",
+ "dJhklt": "See how different roles find value in Paper",
+ "dJmtfw": "Create",
+ "dJqPIb": "You won\u2019t get any more alerts.",
+ "dK6rrs": "Email or name",
+ "dKJZbR": "You\u2019re changing to yearly billing. From {date}, your yearly total will be {recurring_total}.",
+ "dKcreY": "You\u2019ll be charged {prorated_price} for the new billing schedule and plan, pro rata for the current billing period. {scheduled}",
+ "dLJA94": "File size",
+ "dLV1OZ": "There are no folders under this policy",
+ "dLWWVm": "Lets them view and comment, but not edit.",
+ "dLj8Du": "You\u2019ll create a new, personal Dropbox account for your existing files and Paper docs.",
+ "dLsGph": "Showing results for: {query_string}",
+ "dM1N47": "Turn on",
+ "dMEIgP": "Status",
+ "dMKLu2": "Upload to\u2026",
+ "dMVK4W": "{count, plural, one {{count} member is pending} other {{count} members are pending}}",
+ "dNH/l9": "{count, plural, one {Delete {count} item?} other {Delete {count} items?}}",
+ "dNJM73": "Try eSignatures for your team",
+ "dNLFbp": "You won\u2019t get an alert if a team member shares malware.",
+ "dNfvWF": "Read-only team shared folder",
+ "dNlB0C": "{count} PDF. {size}",
+ "dNlIBC": "There was a problem completing this request.",
+ "dNnz2C": "Go to folder",
+ "dOD+FR": "Severity",
+ "dOWhZj": "Company name (optional)",
+ "dOZfr3": "Give other admin roles the ability to manage team content",
+ "dOpflM": "Did this solve your problem?",
+ "dPVibn": "Add sign-in URL",
+ "dPp0A1": "Your name",
+ "dPqldv": "Productivity and sharing tools",
+ "dQ+g2n": "Cookies are required to view this Dropbox content.",
+ "dQ7MoR": "Only people invited",
+ "dQEb4E": "Copy link",
+ "dQHWMY": "Device icon",
+ "dQMRoQ": "Confirm password to continue",
+ "dQfBpL": "Off, red-eye reduction",
+ "dQjwr2": "Add team account",
+ "dQzOmZ": "Everyone in {team_name}",
+ "dR0QoK": "Sign in with a backup phone",
+ "dRHrKK": "Allow specific members to use Paper.",
+ "dRhmBa": "(opens a new window)",
+ "dSRYcI": "{count, plural, one {You moved {count} item from {src_folder} to {dst_folder}} other {You moved {count} items from {src_folder} to {dst_folder}}}",
+ "dSSmHe": "Edit photos and images",
+ "dSUqxL": "Your Dropbox {plan_name} plan will be renewed on {date}.",
+ "dShAa9": "{count, plural, one {Anyone in the {trademark_business} team with this link can view the file. Expires in {count} day.} other {Anyone in the {trademark_business} team with this link can view the file. Expires in {count} days.}}",
+ "dSiOzP": "Are you sure you want to delete your account photo?",
+ "dSxBG5": "{name} restored {item_name}",
+ "dT11GP": "Sign in to account",
+ "dT9XUg": "Whether your team is going remote for the first time or you\u2019re at a fully distributed start-up, Dropbox makes it easy for work to happen in virtually any way. Here\u2019s how Dropbox can help you keep things moving and stay connected while working remotely.",
+ "dTMxFS": "{storage_used} of {quota} used",
+ "dTRuPR": "Seventh highest activity",
+ "dTig7r": "Cancel",
+ "dToisu": "Notifications",
+ "dUFkhQ": "Configuration",
+ "dVA+xI": "Add their name (required)",
+ "dVIuz1": "Certificate: {cert_name}",
+ "dVc1qR": "You\u2019ve changed your billing period.",
+ "dVxcsW": "Create and view groups",
+ "dW+oGJ": "Domain insights",
+ "dW5h7w": "With Smart Sync, online-only files save hard drive space, and you can browse them from your desktop. Local files are downloaded and available offline.",
+ "dWbczd": "Join the {team_name} account",
+ "dWejC+": "Choose how long it\u2019ll work for",
+ "dWic9A": "We\u2019re sorry to see all of you go.",
+ "dWsBN6": "If you have more than {free_space} of stuff in your Dropbox, you won\u2019t be able to do the following:",
+ "dXC+5O": "Go to Dropbox Help",
+ "dXSWxG": "Set up Smart Sync",
+ "dXibLv": "Saving PDF...",
+ "dXlDBy": "Did you know you can cancel your account instantly without the need for an agent to assist you?\n To cancel your subscription, sign in to your Dropbox account and click\n Cancel your Plus or Professional subscription\n to be taken directly to your cancellation page.",
+ "dXombn": "Joining...",
+ "dXq7+w": "Try Dropbox Transfer to send large files to other people.",
+ "dXzZP8": "Vault is designed for files you want to keep extra secure, while ensuring your loved ones can find them",
+ "dYFQqq": "For families",
+ "dYLLdU": "Create a folder",
+ "dYMwXa": "Anyone in your Dropbox team with this link can view the file. Downloads disabled.",
+ "dYOxnH": "One safe place for important files",
+ "dYs+4Q": "New team folder",
+ "dZ/00U": "Suggested member",
+ "dZ0owt": "Help Centre",
+ "dZPTgL": "Edit and eSign",
+ "dZb9AS": "120 days of file recovery",
+ "dZojBJ": "You\u2019re changing to monthly billing. Your monthly total will be {recurring_total}, due on {date}. You aren\u2019t being charged at the moment because you\u2019re still on a free trial.",
+ "da2lvf": "Delete",
+ "da96WJ": "Find out more about {trademark_business}",
+ "daBOck": "Who can be invited?",
+ "dawSyF": "Free",
+ "dbFErb": "{vacuumming_policy_max_days} days of file recovery",
+ "dbYCaa": "{folder_name} \u2013 Dropbox",
+ "dbZjQ1": "Sign in to team",
+ "dbm/P6": "Add them to your plan?",
+ "dbv/4N": "Only you can access this folder",
+ "dbz79e": "Member folder",
+ "dc0nw3": "Close",
+ "dca+uK": "{count, plural, one {{count} member} other {{count} members}}",
+ "dcywUW": "Search results - Dropbox",
+ "dd/i5u": "{count, plural, one {You shared {count} item} other {You shared {count} items}}",
+ "ddIxEC": "Ask {creator_name} for a new link",
+ "ddnW2K": "Give feedback",
+ "ddwrve": "Files added to this folder are automatically saved as PDFs.",
+ "de8/AJ": "Fantastic! Click here to go back to the Dropbox Support home page.",
+ "deJ8cD": "Undoing renaming...",
+ "deMB/m": "Anyone with this link and password can view the file.",
+ "deNqir": "Not available to invite",
+ "dea6pe": "No assignments",
+ "deat2h": "Allow colleagues to send you suggestions of people to invite.",
+ "dev6I3": "Share invitation link",
+ "deyLLm": "Here are some Dropbox Paper templates that we think would be very helpful for your role.",
+ "dfAYxW": "Delete this transfer?",
+ "dfUnGB": "Free",
+ "dfbYKT": "Improve your password",
+ "dgMd35": "Thursday",
+ "dgVLQh": "Unlimited file version history for {evh_price} per {billing_period}",
+ "dhF0XK": "Default permission for existing and new apps listed in App Centre",
+ "dhPbTN": "You removed {entity} from this file",
+ "dhdo+T": "(current plan)",
+ "dhfp7u": "Try Smart Sync free",
+ "di7JHZ": "not syncing",
+ "diLrWq": "Yearly",
+ "diOSTv": "Please log in as {email}{br}to cancel your plan.",
+ "dj0K2Z": "Before you can accept this invitation, you will need to cancel your existing mobile plan.",
+ "djBo1i": "Whilst this step is optional, we encourage you to set up a backup phone number in case you lose your mobile phone or are otherwise unable to receive your security code.",
+ "djGxQa": "Only me",
+ "djKM+0": "Who this link will work for",
+ "djcOXo": "for {NewUserGracePeriod} days",
+ "djgnB1": "Streamline your working day with premium productivity features and {terabyteSpace} ({gigabyteSpace}) of space.",
+ "djiuxN": "Experiencing other issues? View the Help Centre or Dropbox Community, or feel free to contact us again",
+ "dkDAAI": "{member_name} can still view this file",
+ "dkI8Ly": "You renamed {from_name} to {item_name}",
+ "dkJoht": "View all activity",
+ "dkMORu": "Cancellations and refunds",
+ "dljqTf": "Invite and buy",
+ "dlmjiM": "{count, plural, one {{newCost}/year for {count} user ({currentPlan} is {currentCost}/year for 1 user)} other {{newCost}/year for up to {count} users ({currentPlan} is {currentCost}/year for 1 user)}}",
+ "dm25xu": "Members of the file with this link and password can view. Downloads disabled.",
+ "dnYx42": "Only specific types",
+ "dnfirN": "We\u2019ll alert any members if they go over the limit, but their syncing won\u2019t stop.",
+ "dnty4U": "Your email address has now been verified",
+ "doN8b3": "Expiry",
+ "doezvt": "Join organisation",
+ "dooCWY": "You can only share a link for viewing for this folder.",
+ "dpGoXi": "We've let {teamName} know you'd like to join the team. You'll get access as soon as they approve your request.",
+ "dpTWyj": "Invite more people",
+ "dpUA0F": "Link restrictions",
+ "dp_intl_add_meeting_v2": "New meeting",
+ "dp_intl_add_participant": "Add",
+ "dp_intl_auto_recording_title_v3": "Record this meeting to Zoom cloud",
+ "dp_intl_change_pmi_setting_v2": "View Zoom user settings",
+ "dp_intl_clear": "Clear",
+ "dp_intl_connect_to_zoom_v2": "Connect to Zoom",
+ "dp_intl_create_meeting_v2": "Start meeting",
+ "dp_intl_default_meeting_topic": "{displayName}\u2019s meeting",
+ "dp_intl_done": "Done",
+ "dp_intl_failed_to_create_meeting_v2": "Something went wrong. Please try again later.",
+ "dp_intl_failed_to_create_meeting_with_mismatch_recording_type": "Could not automatically record to Zoom cloud.",
+ "dp_intl_file_name_visibility_warning": "The file name will be visible to all participants.",
+ "dp_intl_host_v2": "{name} (host)",
+ "dp_intl_invite_participants_v2": "Invite people to meet",
+ "dp_intl_invite_to_line": "To:",
+ "dp_intl_join_zoom_meeting_v2": "Join meeting",
+ "dp_intl_learn_more": "Learn more",
+ "dp_intl_meeting_activity_error_content_v2": "Couldn\u2019t show meeting activity.",
+ "dp_intl_meeting_creation_time_v2": "Created {timestamp}",
+ "dp_intl_meeting_id": "Meeting ID",
+ "dp_intl_meeting_link_v2": "Meeting link",
+ "dp_intl_meeting_list_see_all_v2": "Show all",
+ "dp_intl_meeting_list_see_less_v2": "Show less",
+ "dp_intl_number_of_participants_v2": "{number, plural, one {{number,number} invited participant } other {{number,number} invited participants }}",
+ "dp_intl_play_recording_v2": "View recording",
+ "dp_intl_pmi_setting_on_error_content_v2": "Can\u2019t start meeting from Dropbox while 'Use Personal Meeting ID (PMI) when starting an instant meeting' is enabled in your Zoom user settings.",
+ "dp_intl_pmi_setting_on_error_title": "Setting change required.",
+ "dp_intl_related_meeting_v2": "Meeting activity",
+ "dp_intl_see_all_v2": "Show all",
+ "dp_intl_see_less_v2": "Show less",
+ "dp_intl_select_all": "Select all",
+ "dp_intl_start_zoom_meeting_v2": "Start meeting",
+ "dp_intl_zoom_meeting_details_v2": "Meeting details",
+ "dpb+Cw": "By rejecting this trusted team request, you will not gain access to this team\u2018s admin console.",
+ "dpfspe": "Connected",
+ "dqH4cc": "{hellosignPlanName}",
+ "dqfg+M": "{count, plural, one {Message cannot be longer than {count} character} other {Message cannot be longer than {count} characters}}",
+ "dqj2CL": "{fileExtension} file",
+ "dqvw8h": "(starts on {start_date})",
+ "dr3h+/": "Your licences have been removed",
+ "drcrxe": "Rename",
+ "drjl3I": "Click Chat now under your preferred language to chat live with Dropbox Support",
+ "ds25UH": "Move",
+ "dsHtkw": "Last week",
+ "dsL7uu": "Please verify your email address to use Spaces",
+ "dsra26": "Have you removed the malicious software from the infected computer?",
+ "dtP/qp": "How we integrate",
+ "dtdAAV": "Add domain",
+ "dte+6z": "This folder has been moved",
+ "dtx6NP": "Pick a time",
+ "du7HYM": "Recent",
+ "dvmxl+": "{display_name} and 1 other",
+ "dwDABw": "Fedora 21 or higher (.rpm)",
+ "dwR2JT": "Email link",
+ "dwZNUm": "Phone",
+ "dx4F8n": "Disconnected",
+ "dxaOCE": "Sorry, an error occurred. Please try again.",
+ "dxsbp5": "In your same email domain",
+ "dxz0es": "Billed now",
+ "dxzcDt": "Allowed for 7 days",
+ "dyCqAa": "Team members with this link can edit the file.",
+ "dyNObO": "Start by downloading Dropbox",
+ "dyb2q0": "Alert unacknowledged.",
+ "dypLy2": "Capture",
+ "dytYFt": "VAT",
+ "dz/9Bc": "Create summary",
+ "dz7LjR": "Restored \u2018{folder_name}\u2019",
+ "e+Pw+r": "Add files",
+ "e+WAgS": "Launch Zoom App",
+ "e+clgj": "Current version",
+ "e+rwVi": "Cancel change",
+ "e+yoGc": "{count, plural, =0 {{subtitleText}} one {{subtitleText} and {count} more} other {{subtitleText} and {count} more}}",
+ "e/Mlru": "More about two-step verification",
+ "e/thE6": "Weekly schedule",
+ "e0D9qu": "Frequently asked questions",
+ "e0UsOS": "Size",
+ "e1JgO7": "What would you like to do?",
+ "e1sozn": "How do I merge my existing Dropbox account with a {trademark_family} plan?",
+ "e24Vbm": "Loading customer teams.",
+ "e2OkRt": "Cancellations and refunds",
+ "e2x8vE": "Change to {familyPlan} plan",
+ "e3KIPg": "This week",
+ "e3QD4M": "Unlimited version history",
+ "e3V4bo": "Rewind this folder",
+ "e3exs3": "Files with sensitive info",
+ "e3xGv0": "You\u2019re about to unlink this session on {member_name}\u2019s {device_model}. It will immediately stop syncing this specific session with their {team_name} Dropbox on this device.",
+ "e42AtC": "Bring Trello and Dropbox together",
+ "e4uEYo": "Merge {team_name} into your team?",
+ "e51IKd": "More about editing a hold",
+ "e5ZybC": "Getting work done is so much easier with {dropboxProfessional}",
+ "e5qq1a": "Successfully saved to Dropbox",
+ "e5y3VS": "Doc title",
+ "e6/qJD": "{count, plural, one {{count} year} other {{count} years}}",
+ "e63AuJ": "Delete vault",
+ "e6EJBF": "View or edit",
+ "e6NWA0": "Password",
+ "e6Shp6": "Searching contacts\u2026",
+ "e6TPkk": "Additional settings",
+ "e6TWph": "When you connect Paper to your calendar, it makes it easy to find the docs you need for each meeting. Don\u2019t have a meeting agenda yet? Use Paper\u2019s smart templates to create one.",
+ "e6av2s": "Asana integration",
+ "e7Xoco": "{count, plural, one {View activity for {count} domain} other {View activity for all {count} domains}}",
+ "e7msuz": "{year}-{month}-{day} \u2013 Error log \u2013 Dropbox member import",
+ "e7wdPj": "Individual Plus accounts and a place for family sharing to help keep your loved ones organised and connected.",
+ "e7zF+J": "30 minutes",
+ "e8WrLw": "File, {alt}",
+ "e8eCgM": "If your key has a button or gold disk, tap it now. Learn more",
+ "e8tz6C": "Manage requests to add members to {team_name}.",
+ "e90L3V": "Cancel",
+ "e9V6l8": "Everyone in {team_name} can edit",
+ "e9fyCS": "Suggested members",
+ "e9l+ET": "Visa/Mastercard",
+ "e9uLbL": "PowerPoint presentation",
+ "eAGPII": "A shared link with your current sharing settings will be created for this item.",
+ "eAMkxw": "Email",
+ "eAQR4s": "Expected response time:",
+ "eApg1l": "Select an area to comment on",
+ "eBieP0": "Moved from",
+ "eC0JeN": "Unable to save to your Dropbox because you are out of space",
+ "eC3oZ9": "View folder",
+ "eC46rW": "Take the guesswork out of engagement. Automatically keep track of who views, downloads and comments on the work you share, so you can be better prepared when you follow up.",
+ "eCAxBm": "{remainingLicenses, plural, one {{numMembers} members \u2022 {remainingLicenses,number} licence available} other {{numMembers} members \u2022 {remainingLicenses,number} licences available}}",
+ "eCFw0p": "can view",
+ "eCI0Gn": "This lets people add comments to any company files they have permission to view.",
+ "eCOEaT": "Edit",
+ "eCS6mP": "Remove",
+ "eD6onG": "Pick a day to get started",
+ "eDca83": "There was an error sending your link",
+ "eDoTwh": "There's been an error. Try refreshing the page.",
+ "eEF52h": "Build your team",
+ "eEGEHA": "Continue",
+ "eET7px": "{name} rolled back {single_item_name} in {folder_path}",
+ "eEcDwI": "Cannot invite them with that email address",
+ "eEkf3Q": "Easy-to-use team management and collaboration tools to help growing teams stay organised.",
+ "eF/m4t": "Enable Paper for selected members",
+ "eF4sif": "Paste",
+ "eFChDc": "Full team name",
+ "eFHzYY": "Please check your connection and try again later.",
+ "eFf3VY": "Need help migrating files to Dropbox?",
+ "eG+5/v": "Security details such as permissions",
+ "eG5Ygt": "Open sidebar",
+ "eGUZxs": "Keep your family connected",
+ "eGc5Hn": "{count, plural, one {And {count} more file.} other {And {count} more files.}}",
+ "eGi4N9": "You are not allowed to join this family.",
+ "eGpOpC": "Secondary email {email} successfully made primary.",
+ "eH5rkS": "Smart Sync helps you access files without using up any space on your computer, so you always have the right file at your fingertips.",
+ "eH7zsu": "Rewind {folder}",
+ "eHFLV0": "Anyone with access to {shared_folder_name} can access this folder",
+ "eHLIaO": "Ticket will close in {remainingTime}",
+ "eHPT/o": "Type",
+ "eHPpzH": "Try for free",
+ "eHVNIL": "These browsers are currently signed in to your personal Dropbox account.",
+ "eHWzWM": "Centralise information to help new employees get started during their first few days.",
+ "eHYCJX": "{value, plural, one {1 folder shared with your team} other {{value} folders shared with your team}}",
+ "eHebre": "Sharing",
+ "eHmAQm": "SMS ({phone_no})",
+ "eHqhYX": "Error:",
+ "eHvsgQ": "Update your billing info",
+ "eHyiq2": "{count, plural, one {Your plan will now have {count} licence. Your new monthly total will be {total_amount_with_tax_rate_str} after your trial ends.} other {Your plan will now have {count} licences. Your new monthly total will be {total_amount_with_tax_rate_str} after your trial ends.}}",
+ "eI8jCF": "This change may affect people who had view access in the past.",
+ "eIIEty": "Something went wrong while uploading this file. There was a server error during the upload request.",
+ "eIRv+Q": "Link copied to clipboard",
+ "eIgJG7": "Download {dropbox_passwords} to get started",
+ "eIzkSh": "Something's not working. Try downloading again.",
+ "eJBiUX": "Launch plan",
+ "eJFP07": "Video production plan \u2192",
+ "eJJU73": "Notes",
+ "eJs/IE": "This folder will be saved instantly to your {team_name} Dropbox and downloaded to all of the computers linked to your {team_name} account.",
+ "eK29PV": "Easily recover and restore older versions of files",
+ "eKT9cm": "Your one-year subscription will start on {subscription_start_date}.",
+ "eKhova": "Click 'Upload' to add files or folders",
+ "eL3pRy": "Submit",
+ "eLTSqr": "Turn user insights into team action items. Link prototypes, synthesise key findings with next steps, and share with stakeholders so everyone can see.",
+ "eLfJ9t": "Choose",
+ "eM3+4n": "Submitter email address",
+ "eMQy+T": "Applying the policy can take a while, depending on the number of files. We\u2019ll email you when the policy has been applied.",
+ "eMUQ3U": "Extremely dissatisfied",
+ "eMX+QP": "Passwords add an extra layer of security when sharing with a link.",
+ "eMZgix": "
Automatically back up your computer\u2019s Desktop, Documents and more with the Dropbox app.
If you already have it, just go to your app preferences and click Backups.
",
+ "eMv46x": "Recipients",
+ "eN3/4H": "Extract to my member folder",
+ "eNA4By": "Bear in mind that members will be able to rewind any folders they can edit, including team folders.",
+ "eNiId9": "{count, plural, one {Are you sure you want to restore this file?} other {Are you sure you want to restore these {count} files?}}",
+ "eNrASY": "Version history and file recovery automatically protect your work",
+ "eNtQ1D": "On your computer, double-click the installer.",
+ "eOGx8e": "{count, plural, one {Try free for {count} day} other {Try free for {count} days}}",
+ "eORqx2": "Updating can take a while, but we\u2019ll hold onto files straight away. You can\u2019t edit, export or create a summary until the update has finished.",
+ "eOogHn": "{trademark_plus} trial {ios}",
+ "eOzhu8": "{count, plural, one {Restore {count} file} other {Restore {count} files}}",
+ "eP7hQ1": "Ignored",
+ "eP8MBB": "Vault",
+ "eQ83WQ": "Add password",
+ "eQMMZM": "Add your phone number and we'll send you a download link.",
+ "eQQPwj": "Email",
+ "eQmdmB": "Enter personal email address",
+ "eQz/Mi": "Start date (UTC):",
+ "eR6sDU": "Get many of the features available in {trademark_professional}, plus all the space you need and a shared workspace to work better together. Best for teams of 3 or more people.",
+ "eSqPLW": "Change summary",
+ "eSxCUm": "Can't show Dropbox content",
+ "eSyBpM": "Configure",
+ "eTGMdi": "Click the installer that just downloaded to continue.",
+ "eTJ9ln": "Loading...",
+ "eTrJTC": "{count, plural, one {Anyone in your Dropbox team with this link can view the file. Expires in {count} day.} other {Anyone in your Dropbox team with this link can view the file. Expires in {count} days.}}",
+ "eTs2Vl": "Copy link code",
+ "eTtbKw": "Remove my access",
+ "eU2b7o": "Something went wrong. Please reload the page.",
+ "eU7Han": "I\u2019m having trouble signing in to my Dropbox account",
+ "eUKqRX": "This invitation link has expired or is invalid. Please ask the sender to re-send it.",
+ "eUP/6i": "Tips for using Dropbox",
+ "eUaWpy": "Suspended",
+ "eUpi8/": "Save it for later in Dropbox",
+ "eUwE8i": "Can I upgrade my existing Dropbox Basic or {trademark_plus} account? How does migration work?",
+ "eUzI6O": "Does not include any subdomains",
+ "eVWndj": "Present in Zoom from Dropbox",
+ "eW+u5u": "Dates",
+ "eW5qss": "Members of the folder with this link can view the folder. Downloads disabled.",
+ "eWHzIE": "{numMonths, plural, one {Get {discount,number,::percent .##} off {numMonths,number} month of {dropbox_plan} when billed yearly*. This offer expires on {expiration_date}.} other {Get {discount,number,::percent .##} off {numMonths,number} months of {dropbox_plan} when billed yearly*. This offer expires on {expiration_date}.}}",
+ "eWQ8qY": "Our business didn\u2019t need all of the licences we had",
+ "eWtTz0": "This HIPAA BAA applies to the extent the Customer is acting as a Covered Entity or Business Associate, to create, receive, maintain or transmit PHI and where Dropbox, as a result, is deemed under HIPAA to be acting as a Business Associate of the Customer.",
+ "eWxZ5f": "How satisfied are you with Dropbox Markup?",
+ "eXHUfg": "Connected to Zoom",
+ "eXL9sz": "Create new folder",
+ "eXfOqa": "Sundance Institute",
+ "eXu7y4": "Loading more information",
+ "eXwZkw": "{count, plural, one {You deleted {count} item} other {You deleted {count} items}}",
+ "eYPdJP": "Create summary",
+ "eYVArA": "Choose your plan",
+ "eYdhlC": "Late uploads",
+ "eYvByc": "Deliver a copy",
+ "eZ59yO": "Create account",
+ "eZ93+c": "Cell formatting doesn't look right",
+ "eZAuK1": "VAT number (optional)",
+ "eZHwZH": "Could not get settings.",
+ "eZSCaX": "Find out more about partner integrations",
+ "eaAi7x": "Do you have a question?",
+ "eaJeP5": "{count, plural, one {{count}+ members} other {{count}+ members}}",
+ "eagTbM": "Yearly savings ({discount,number,::percent})",
+ "ebP+gM": "Team and shared",
+ "ebVB4L": "Add your own...",
+ "ebWQ7c": "Unsuspended {name}",
+ "ebkvMX": "Can\u2019t save because your account is full. Upgrade to get more space.",
+ "ebmd4b": "Spacing between lines",
+ "ecCdhF": "Please enable third-party cookies to use the Dropbox website. Learn more",
+ "ecLhIo": "Return or Destruction of PHI.",
+ "ecLhWr": "Email",
+ "ed2/lg": "Please verify your email address",
+ "ed5DT4": "This folder or empty file could not be uploaded because of browser limitations. Try zipping the content before uploading it, or use the Dropbox desktop client to sync it.",
+ "edHhMF": "Partner Admin",
+ "edHs1X": "We can't find this file any more. Try checking activity or folder history to see what happened.",
+ "edU3oM": "You can still view your files on dropbox.com or on your desktop. New changes stopped syncing on {locked_at}.",
+ "edehVw": "Device name",
+ "eedTa1": "Sign in to their admin console",
+ "eedxQ3": "\u2013",
+ "efJAgH": "By company size",
+ "efT3qC": "Remove",
+ "efUvgd": "View invoices and receipts for all payments made on your Dropbox account.",
+ "efiKm7": "Domain name",
+ "eg4K5o": "",
+ "egOoTQ": "Only people with {teamBusinessDomains} email can be invited",
+ "egUTWQ": "Cancel",
+ "egXqGm": "Your photo should be no more than 10 MB in size.",
+ "egrLWe": "You have a folder that you can organise however you like. You can share files from here, or keep stuff here that you don\u2019t want to share with everyone. Everyone in your team has a folder like this.",
+ "egsgAR": "Member access",
+ "eh8gCC": "Links expire for safety, but the person who shared the link might be able to add time if you need it.",
+ "ehBhap": "You can\u2019t add members to a team folder. Contact your team admin.",
+ "ehFjQx": "Need a plan for work?",
+ "ehNGlB": "Lets members create custom watermarks to add to files such as images and PDFs.",
+ "ehdbDz": "An error occurred at our end. Please try again.",
+ "ehm23q": "No options available",
+ "ehmUmZ": "Company",
+ "ehtr9f": "Invited but haven\u2019t joined",
+ "ej/CxO": "Editing for this file is locked",
+ "ej4A0X": "Managed by {owners}",
+ "ejPyuW": "Limit raised to {user_limit} users",
+ "ejbidA": "The {card_name} card with this file attached was archived",
+ "ejvlyg": "You\u2019re upgrading to a {trademark_business} {plan} plan. Starting from {date}, your new {schedule} total will be {recurring_total}. Your plan will be renewed on {renewal_date}.",
+ "ekih2T": "To:",
+ "el0uSj": "{count, plural, one {Your account must have at least {count} licence, because you have {count} team member.} other {Your account must have at least {count} licences, because you have {count} team members.}}",
+ "el8k+J": "No results found",
+ "elWdwM": "Keep everyone organised",
+ "eltKJl": "Keep collaborating with your team",
+ "emiHs/": "Copy link",
+ "emsobI": "Are you sure you want to delete {filename} from your team member folder?",
+ "en3ri/": "Copy completed.",
+ "enHZxv": "Legal link",
+ "enJpoV": "Enter a new password for your {email} account.",
+ "enyAlE": "The person who shared this link has hit their daily limit for traffic or downloads. Learn more",
+ "eoDtlz": "Please enter your email and password to sign in.",
+ "eoDttE": "{count, plural, one {{file_count} file} other {{file_count} files}}",
+ "eoVyXb": "Exported docs on the way",
+ "eonxEJ": "After inserting, tap your key if it has a button or gold disk.",
+ "eorQpf": "Let\u2019s get started! {br} Add the files you\u2019re selling.",
+ "epMvRP": "{tax_name} ({tax_percentage,number,::percent .##})",
+ "epmnB3": "Find out more.",
+ "eqIKp0": "Only one team can verify a domain. If you believe this is a mistake, please contact support.",
+ "eqd8sg": "The Dropbox desktop app can\u2019t open from your phone. Try again from your computer.",
+ "eqhZ/t": "Emergency incident action plan",
+ "eqyScK": "You unshared {single_item_name} in {folder_path}",
+ "eqzXgU": "The owner of {file_name} is a member of another team.",
+ "erVlBC": "Select file in next row (hold Shift to select range)",
+ "erm7J0": "I @mentioned you in the {folder_name} folder. Take a look.",
+ "esqj6U": "This file was shared with you.",
+ "et7L8e": "Choose background",
+ "et8YKA": "We noticed something suspicious, such as an unusual amount of downloads. If you want, you can create a new link and share it again. Why links are blocked",
+ "etQgGC": "To give this member access to their account again, reactivate their account after restoring it.",
+ "etreIX": "Send large files to anyone easily and securely",
+ "euQhL0": "Because they\u2019re using a domain that matches yours and can access some team content",
+ "euRey+": "Cancel",
+ "eufquI": "Remote wipe Dropbox from a team member\u2019s lost or stolen device",
+ "euxNFl": "{count, plural, one {Members of the containing shared folder with this link can view this file. Expires in {count} day. Downloads disabled.} other {Members of the containing shared folder with this link can view this file. Expires in {count} days. Downloads disabled.}}",
+ "ewZ2I2": "Change billing period",
+ "ewbeK0": "You haven\u2019t imported contacts from any mobile devices.",
+ "ewbi6Z": "Get app",
+ "ewcfI5": "Unlimited API access to security platform partners",
+ "ewgyb+": "Notifications menu",
+ "exAiKe": "{min_licenses} or more people",
+ "eyC1rP": "Close",
+ "eyimS0": "Please choose at least one contact.",
+ "eyx/FG": "Approve",
+ "ezcmqF": "Dropbox Transfer lets you easily and securely hand off large files or collections of files, and confirm delivery.",
+ "ezq8zU": "Alert",
+ "f+Agk8": "Invite members",
+ "f+D0SV": "Bottom right",
+ "f+E8ZC": "Files shared directly outside your team, who has access and more.{br}{br}The report doesn\u2019t include files that were shared indirectly via a shared folder.",
+ "f+OTvk": "Add more from Dropbox",
+ "f+Usnt": "Deny",
+ "f+a3JG": "You don\u2019t have permission to open the folder \u201c{folder_name}\u201d.",
+ "f/59vv": "Remove partner admin",
+ "f/DnCL": "If you\u2019re locked out of your account, you can sign in by entering one of your emergency backup codes.",
+ "f/E3En": "For individuals",
+ "f/MgHq": " (opens a modal dialogue)",
+ "f/VEOR": "New team",
+ "f09DMy": "\u200b\u200bA hand-drawn illustration depicts a white cartoon cat holding a colourful broken umbrella in the rain. The cat appears sad to be getting wet.",
+ "f0CDHA": "Status",
+ "f0j3i9": "Store all versions of your documents in one, secure place.",
+ "f0osid": "Envelope",
+ "f1QT8z": "You don\u2019t have access to this content. You\u2019re signed in as {user_email} and {user2_email}.",
+ "f1bH6B": "Chrome extension",
+ "f20ZVk": "Talk to Enterprise Support",
+ "f2bmoP": "Take a moment to review everything you\u2019ve done to get your team up and running.",
+ "f3+0b+": "Once you sign up, you won\u2019t be able to set new files as online only until you enable Smart Sync for your team.",
+ "f37GH8": "{web_editor_name} will automatically be used to open your {file_extension} files in Dropbox. You can update this later in your Dropbox settings.",
+ "f3JLGa": "Links created with no password",
+ "f3obYk": "Centralised billing",
+ "f46Ooz": "This will automatically remove any currently disconnected devices.",
+ "f4B8UL": "Never completed",
+ "f4bo57": "Folder attached to Trello card.",
+ "f51YxB": "We\u2019ve received the billing details for your account and everything is good to go.",
+ "f5J626": "How do I see who is viewing my files?",
+ "f5LygB": "The strength meter will show you how strong your password is as you create it.",
+ "f5aTet": "{count, plural, one {Only an admin can delete this item permanently.} other {Only an admin can delete these items permanently.}}",
+ "f5okRG": "and {howMany} more",
+ "f5t2Mw": "On {date}, your plan will be downgraded to Dropbox {plan} and your new {schedule} total will be {scheduled_total}. Charges will continue until you cancel, and previous charges won\u2019t be refunded unless it\u2019s legally required.",
+ "f60HRK": "Just open the installer and you\u2019ll be all set.",
+ "f6Phz6": "Dropbox International Unlimited Company is a registered foreign business and is liable to account for consumption tax",
+ "f6Rhv2": "Local Smart Sync icon",
+ "f6UR0Z": "Disconnect {name}?",
+ "f7/ZRA": "There\u2019s already a hold with that name. Try another one.",
+ "f712u+": "{vacuuming_policy_max_days}\u2011day file & account recovery",
+ "f7W0L9": "These devices are linked to your work Dropbox account.",
+ "f7tpR1": "Manage users and get insights into your company domains",
+ "f7wXGc": "Create a new {record_type} record",
+ "f7yCNL": "Invitation requested",
+ "f87HfV": "Sharing files using Dropbox Transfer",
+ "f8EJmj": "{team_group_name} can edit",
+ "f8NDzV": "Yes. We have volume discounts as well as discounts for non-profits and educational institutions. Please contact our sales team for more information.",
+ "f8NiGI": "Choose files",
+ "f98azI": "file name contains invalid character",
+ "f9Ed4J": "for the new billing schedule and plan,",
+ "f9JXal": "If you have a personal Dropbox, connect it here so you can switch between your Dropboxes easily.",
+ "f9LrNR": "Learn how to create a strong password.",
+ "f9Py1E": "Sign and request signatures and track the entire signature process from Dropbox. You get 5 free transactions every 30 days with Adobe Sign.",
+ "f9TgKO": "Create new links for shared folders",
+ "f9kd6a": "Remember, never share personal information here.",
+ "f9nhmZ": "Error creating invitation link",
+ "fA7pOl": "Connected with {provider}",
+ "fAHldl": "Bill monthly",
+ "fB+0WF": "Add new key",
+ "fBQ/bz": "Can\u2019t load activity \u2013 to try again.",
+ "fBaFmx": "Real-time editing for teams",
+ "fBd+Hg": "We use cookies to save your name and email for faster sign-in. Learn more in our cookie policy and privacy policy.",
+ "fBoVqZ": "Content management",
+ "fBp3Tk": "Any active members of the {plan} team will be downgraded to Dropbox Basic accounts on {date}.",
+ "fBy27j": "Unapprove version",
+ "fCVMMM": "Add via drag and drop or from Dropbox",
+ "fCWGp9": "Keep work projects in one place, and always have the right file at your fingertips.",
+ "fCZlT5": "Cancel",
+ "fCcJ+a": "Cancel invitation",
+ "fCtp+4": "{vacuuming_policy} days of file recovery and version history",
+ "fCwkxd": "We'll let {name} know you uploaded files",
+ "fDZvAG": "Thanks for trying {plan_name}",
+ "fDtB1J": "You ({name}) can view",
+ "fDvKfJ": "Please unlock your vault before attempting to add to this folder.",
+ "fE0u0q": "Install Dropbox to get \u201c{folder_name}\u201d on your computer",
+ "fE8Xhp": "Can edit",
+ "fEIpFO": "Require a security key or code in addition to your password.",
+ "fEZEwT": "The account owner can add payment information now so that this subscription is renewed automatically when it expires.",
+ "fEkLFz": "New address",
+ "fEnXNG": "Opening the Dropbox desktop app...",
+ "fFlqwe": "Enter email address",
+ "fG5ZbA": "PDF editing",
+ "fG6HZx": "Change how members can access \u201c{current_folder}\u201d?",
+ "fGE/Cv": "You",
+ "fGFHbB": "Only you can view via this link. Downloads disabled.",
+ "fGkg7L": "Hi {first_name}, we\u2019re sorry you\u2019re thinking of cancelling {dropbox_family}. Do you mind telling us why? We might be able to help.",
+ "fHHYC+": "About 25 minutes",
+ "fI78OZ": "API calls this month: {api_usage}",
+ "fI7sAv": "Save to your personal Dropbox account?",
+ "fInmrR": "Easy-to-use team management and collaboration tools.",
+ "fJCjRe": "Bold",
+ "fKAsp7": "The following files are not supported by Dropbox and cannot be uploaded: {files}",
+ "fKXJUR": "Show resolved comments",
+ "fKYL7j": "Submit",
+ "fKj1Sz": "Sign-in blocked",
+ "fLJ3mM": "Select items",
+ "fMFQqA": "Adding your team folder",
+ "fMp7pz": "Billing admin",
+ "fMwJMT": "{count, plural, one {Anyone with the link can view this file. Expires in {count} day.} other {Anyone with the link can view this file. Expires in {count} days.}}",
+ "fN3cwA": "@someone",
+ "fN82fk": "{number, plural, one {{number,number} slide} other {{number,number} slides}}",
+ "fNQWL/": "Signed documents are automatically saved back to Dropbox.",
+ "fNTnIJ": "PDF details",
+ "fNhXRH": "Exclude current year",
+ "fNnn8m": "On by default",
+ "fNvfPn": "{price}/year (save {savings})",
+ "fO2g0c": "Price",
+ "fO7j82": "Provider",
+ "fO8J9o": "What\u2019s in that folder?",
+ "fOAfY4": "Success!",
+ "fOY5CH": "Transfers over {size} will take a long time to upload. Consider removing some files to send your transfer faster.",
+ "fP/6oI": "Manage multiple Dropbox teams with a single admin login.",
+ "fP5B+E": "Verify the meta tag",
+ "fPUR43": "Your current plan",
+ "fPmHZZ": "Manage apps",
+ "fPu8YK": "Try {trademark_business}",
+ "fQ93YW": "You gave view-only access to {entity}",
+ "fQDQpn": "{count, plural, one {{selected_members_num} member selected} other {{selected_members_num} members selected}}",
+ "fQkM9v": "Preview",
+ "fQkv+i": "DELETED",
+ "fQlkHi": "The file you selected is larger than the supported {supported_value} MB. Please try again with a smaller file.",
+ "fQnxbw": "Any time, anywhere access",
+ "fQzjaE": "Drag files and folders here to upload",
+ "fRBsb1": "Protect your most important files with extra security. Learn more",
+ "fRBvOH": "Team name",
+ "fRKx+3": "Start sharing to capture audience insights",
+ "fRMS5E": "Log in with Dropbox credentials",
+ "fRlyEz": "{total} per {period}.",
+ "fSDEDR": "{name} rewound this folder to {rollback_date}",
+ "fSZaj1": "Add payment method.",
+ "fTLCkr": "You can change admin accounts after starting the trial, and your current files and folders will retain their privacy settings when you upgrade.",
+ "fTdk5C": "Add comment",
+ "fTpphz": "Connected to Trello",
+ "fTrTN2": "{price} per year. Save {savings}. Prices include GST",
+ "fUJ4qH": "30 days",
+ "fUWqZP": "Unable to send email. Please try again",
+ "fUaYQH": "Couldn\u2019t load Paper settings. Try refreshing the page.",
+ "fUjsBI": "Here are some ways to get shared folders ready for the move. Bear in mind that members will always lose access to all of their old team folders.",
+ "fUz1Ci": "To update your business address, ",
+ "fVMRUW": "Bring the power of Dropbox to your Outlook inbox.",
+ "fWazP7": "Cancel",
+ "fWzfms": "You renamed {single_item_name_prev} to {single_item_name_next} in {folder_path}",
+ "fXWmxm": "Connect calendar",
+ "fXXSLA": "{count, plural, one {Are you sure you want to permanently delete {count} item from your Dropbox?} other {Are you sure you want to permanently delete {count} items from your Dropbox?}}",
+ "fY9HQk": "Want to comment on {time_code}?",
+ "fYIjGs": "Upload files",
+ "fYJ2Zy": "Remove members of {team_name}?",
+ "fYsGwY": "Only team admins can change these settings.",
+ "fYxBiJ": "Start by opening Dropbox",
+ "fYxwxo": "Anyone",
+ "fZ/08N": "Visibility",
+ "fZ/5OR": "Activated on",
+ "fZ1ZfV": "the account user",
+ "fZ6chB": "Next",
+ "fZFax9": "If you uninstall the system extension for your team:",
+ "fZbDjn": "An image that shows a custom background and custom logo on a transfer recipient page.",
+ "fZfcZ4": "Name or email",
+ "fZwvxY": "upload to the folder \u2018{folder}\u2019",
+ "faDcx4": "Give HelloSign full access to your Dropbox account.",
+ "fabMtu": "{remainingMb} MB remain of 20 MB file limit",
+ "fahU09": "Access a robust, yet free, set of photo editing tools that let you crop, rotate, resize, apply filters and add text to images. No account needed.",
+ "fak37u": "Require six-digit security code or key in addition to a password to access your account.",
+ "family-join-addon-error": "Your account currently has extended version history, which isn\u2019t supported in Dropbox Family.",
+ "family-join-bullet-age-gate": "You must be aged {ageString} or older to join",
+ "family-join-bullet-family-manager": "Your family manager can add members to the plan or remove them",
+ "family-join-bullet-quota": "Access {tbString} ({gbString}) of storage and premium features at no cost to you",
+ "family-join-bullet-same-account": "If you already use Dropbox, your login info, content and settings remain the same",
+ "family-join-bullet-same-account-with-fsf": "If you already use Dropbox, you\u2019ll keep your own personal account view and login info",
+ "family-join-bullet-sharing-personal-view": "Sharing is simple, plus you\u2019ll have your own personal account view",
+ "family-join-bullet-sharing-personal-view-with-fsf": "Sharing is simple \u2013 everyone on the plan has access to the Family Room folder",
+ "family-join-from-work-role-error": "You\u2019re signed in with a business account. To join, you\u2019ll need to switch to your personal account or create an account using a different email from the one you use for your business account.",
+ "family-join-license-key-error": "Your current plan doesn\u2019t support switching to the Family plan.",
+ "family-join-page-already-in-this-family-error": "You\u2019re already a member of {inviterDisplayName}\u2019s plan.",
+ "family-join-page-embargoed-country-error": "You are not allowed to join the plan.",
+ "family-join-page-iap-mobile-error": "Before you can join the plan, you\u2019ll need to cancel your existing subscription from your mobile device.",
+ "family-join-page-in-two-families-at-once-error": "You can\u2019t be a member of more than one Family plan.",
+ "family-join-page-no-permission-error": "You can\u2019t join the plan at the current time. Refresh this page to try again, or contact the person who invited you.",
+ "family-join-scheduled-downgrade-error": "Before you can join the plan, you\u2019ll need to cancel your scheduled downgrade.",
+ "family-join-subtitle": "{managerName} ({managerEmail}) invited you to their plan",
+ "family-join-title": "Join Dropbox Family",
+ "family-member-remove-error": "Failed to remove the member. Please reload the page and try again.",
+ "family-onboarding-modal-body-v1-first-line": "All plan members can access, add and edit content in the Family Room.",
+ "family-shared-quota-error-message": "Error loading family quota breakdown. Refresh page to attempt reload.",
+ "family-shared-quota-table-everyone-elses-files": "Everyone else\u2019s files",
+ "family-shared-quota-table-using-in-gb": "Using {usage}",
+ "family-shared-quota-table-your-files": "Your files",
+ "family-shared-quota-view-help-link": "How storage works",
+ "fbCZyQ": "Linked apps ({num})",
+ "fbRJzy": "Changes saved.",
+ "fbUmcM": "We encountered a problem",
+ "fbhq8y": "Standard trial",
+ "fcIlGX": "{actor_name} added this file to the {card_name} card in {list_name}",
+ "fcyMEM": "Types of personal information found",
+ "fd1oHs": "Are you sure you want to permanently delete {filename} from your Dropbox?",
+ "fdXzYu": "Copied.",
+ "fe/vea": "Get everything in Standard, plus:",
+ "fe4dA8": "Present like a pro. Add and join Zoom meetings without leaving Dropbox. Learn more",
+ "feGyKt": "Students: submit your assignments with just a few clicks.",
+ "feQlzs": "No data",
+ "fed2+P": "This is helpful if you need more information about a Dropbox purchase on your billing statement",
+ "ferDGi": "Status",
+ "fere+c": "on web",
+ "fetgCI": "You connected this third-party app to your Dropbox account. To find out more about the information this app can share with Dropbox, visit their website",
+ "fetuvN": "Please include a link to the deletion event you would like to undo. See this article on how to find a restoration link.",
+ "feuALE": "API limitUnlimited API access to security and productivity platform partners. {api_quota} API calls/month for data transport partners.",
+ "ffNYyt": "Add another secondary email",
+ "ffW3Dm": "You are not allowed to invite a member with a {domain} email address.",
+ "ffc4Og": "To add this folder, you\u2019ll need {needed} of space in your Dropbox. You do not currently have enough space.",
+ "ffjBJF": "On, return detected",
+ "ffjRA4": "Unfortunately, your carrier isn\u2019t supported at the moment.",
+ "fgeQPX": "{professional_space} of secure storage",
+ "fh5Zfl": "Get {trademark_professional}",
+ "fheYT5": "Your team can\u2019t use Paper yet.",
+ "fhxuOM": "You locked this file",
+ "fi9Okp": "Oops, something went wrong. Please try again later.",
+ "fiDlKT": "Take your files with you, wherever you go.",
+ "fiL806": "View more licence keys",
+ "fiZIqw": "Offline file access",
+ "filSNo": "{name} moved {single_item_name} into this folder",
+ "first name": "Please enter a valid first name.",
+ "fiuCCf": "Secondary email {email} removed.",
+ "fj6DCO": "Ongoing",
+ "fjGEGL": "Something went wrong, but it may be a one-off. Try reloading the page.",
+ "fjUgqX": "Leave",
+ "fkNHq+": "{count} unread",
+ "fkU/W8": "{amount, plural, one {{amount,number} other} other {{amount,number} others}}",
+ "fkpgKo": "We\u2019ll hold a copy of available files these members create or edit.",
+ "flI0+M": "Waiting {ago}",
+ "flOIBl": "I agree to the {trademark} agreement and Dropbox Terms",
+ "flOh9z": "No charge made to your payment method on file.",
+ "flW3ZL": "or create an account",
+ "flaKkC": "First name",
+ "flkJcx": "Only team members",
+ "flows-add-folder-rules-progress-toast": "Creating {folderName} auto-PDF folder...",
+ "flows-add-folder-rules-success-toast": "{folderName} changed to auto-PDF folder.",
+ "flows-create-automated-folder-progress-toast": "Creating {folderName} auto-PDF folder...",
+ "flows-create-automated-folder-success-toast": "{folderName} auto-PDF folder created.",
+ "flows-disable-pdf-rule-success-toast": "Auto-PDF conversion successfully disabled for folder {folderName}.",
+ "flows-enable-pdf-rule-success-toast": "Auto-PDF conversion successfully enabled for folder {folderName}.",
+ "flows-remove-folder-rule-success-toast": "{folderName} has been converted to a basic folder.",
+ "flrvm0": "Print permission",
+ "fmXUzw": "Download Dropbox",
+ "fmhb08": "Manage what's being shared outside {teamName} and invite people you work with to the team.",
+ "fmi87t": "{count, plural, one {{count} video} other {{count} videos}}",
+ "fmq2Vb": "Set the amount of Dropbox space members can use.\n This limit doesn\u2019t include team folders.",
+ "fnAL9V": "{price}/user/month",
+ "fnG2Ew": "This file can\u2019t be uploaded because you are over your storage quota. If you believe this message has been sent in error, try refreshing the page.",
+ "fnOUBR": "You don\u2019t have anything to review.",
+ "fncjX9": "Click 'Open with' and select Pixlr X to open images.",
+ "fnpK7H": "No",
+ "fodvBV": "Failed to copy invitation link.",
+ "foyZyr": "I agree to the ",
+ "fp7TGs": "{count, plural, one {Expires in {count} day} other {Expires in {count} days}}",
+ "fpHm9U": "Centralise your course content in Dropbox, where you can keep it secure. Then, upload lecture slides, videos, reading assignments and more to a course in Canvas. Your students can submit homework assignments from Dropbox to Canvas, as well. You can spend your time on academic work instead of on managing your files.",
+ "fpPsTv": "Send large files to anyone",
+ "fpgILd": "To share this folder, ask someone else for access to edit.",
+ "fphC69": "PM",
+ "fq/eN7": "Keep the business organised",
+ "frldLp": "An error occurred at our end.",
+ "fs/isf": "Accidents happen. Roll back individual files or your whole account, up to 30 days.",
+ "fsBPz+": "2 weeks",
+ "fshp9E": "Let my admin manage this setting",
+ "fsqHOb": "Files added to this folder are automatically saved as PDFs.",
+ "fsynCR": "Company-managed groups",
+ "fuE/wZ": "Delete data from a lost or stolen device, whilst everything is stored safely in Dropbox.",
+ "fuFQob": "Disconnect",
+ "fuFYAE": "Revoke all trusted devices",
+ "fuUmDl": "Collaboration \u2013 any time, anywhere",
+ "fuaonA": "To access {content_name}, add it to Dropbox",
+ "fuoivc": "Use this new email address to automatically save email attachments in your Dropbox folder. Your old address is no longer active.",
+ "fv4OZC": "Uninvite them from the team?",
+ "fvSZVR": "Copy",
+ "fvXagS": "Change address",
+ "fvZIUX": "Sorry, an error occurred. Please try again later.",
+ "fvldrA": "Renaming file\u2026",
+ "fwEw4G": "Getting ready to download\u2026",
+ "fwZe/f": "Couldn't set options for \"{folderName}\"",
+ "fwZwwm": "Downgrade my plan",
+ "fwbFS3": "Yes. The {dropbox_business} base package includes 3 users, but you don\u2019t need to use all of the licences straight away. Since licences can be reused, many of our customers reserve extra licences for contractors or clients.",
+ "fwn0rp": "We\u2019ll charge your PayPal account.",
+ "fwy/H3": "We'll remove some items before sending",
+ "fx6W8j": "N/A",
+ "fxKhBb": "",
+ "fxMWZh": "Choose files to {upload_folder_name}. You can select more than one file at a time. You can also drag and drop files anywhere on this page to start uploading.",
+ "fxVe5P": "Creating too many reports at once. After some finish, you can start more.",
+ "fxzG8m": "With the desktop app, you can easily upload large files and sync them instantly across your devices and with your team members.",
+ "fy/9XT": "To subscribe to this file, create a free Dropbox account.",
+ "fy7UFm": "Ramp up new recruits quickly. Centralise information to help new employees get started, link key resources and create a checklist of to-dos for their first few days.",
+ "fy9qFc": "Error",
+ "fz30j7": "Yes! Please contact our sales team for more information.",
+ "fz7GLr": "File is being uploaded",
+ "fz9og9": "Billing address",
+ "fzCjdt": "Toggle Traffic and insights sidebar",
+ "fzOG6V": "Storage space",
+ "fzd+/H": "Email me about",
+ "fzmr2J": "Enough room for your team to store files, presentations or anything else to work together better",
+ "g+9Rjq": "Your access will be removed, but they won\u2019t be deleted for anyone else",
+ "g+ZeGK": "Help your HR team simplify their work, from internal planning and coordination with hiring managers to onboarding new recruits.",
+ "g+xqHV": "{value} GB",
+ "g/1bHo": "Member type",
+ "g/Ia4W": "Reset custom space limit",
+ "g/R8UD": "Does Dropbox keep a backup of my files?",
+ "g/nUIt": "Legal link",
+ "g/zoMn": "Logo",
+ "g080gq": "Not an active group",
+ "g0jUpN": "Create shared folder",
+ "g0uzu9": "Maximise meeting time by easily presenting a Dropbox file while in a Zoom meeting.",
+ "g139Hz": "To download content again, just open the file. Or right-click, go to Smart Sync and choose Local.",
+ "g1Qc/Z": "That\u2019s too big to save. Try making your watermark smaller.",
+ "g1d9Ks": "Paper is a Dropbox product and is available to all Dropbox customers. You can access your Paper content from the Dropbox website by clicking the Paper tab in the left sidebar. You can also add your Dropbox files (images, PDFs and other documents) directly into a Paper doc. More details here: https://www.dropbox.com/help/paper/dropbox-integration",
+ "g1njQQ": "Are you sure you want to delete {item_count} items from the shared folder \u2018{shared_folder_name}\u2019?",
+ "g1zlIm": "Quickly move your files into Dropbox",
+ "g21+Vk": "View files",
+ "g23qqQ": "You\u2019re changing to {schedule} billing. We\u2019ll charge you {prorated_price} now, which is pro rata for the current billing period. Your plan will renew on {date}. Your new {schedule} total will be {scheduled_total}.{upgrade_warning}",
+ "g2cRE+": "Yes. We have volume discounts as well as discounts for non-profits and educational institutions. Please contact our sales team for more information.",
+ "g2ciy9": "Choose the default Dropbox file browser for your team.",
+ "g2m64r": "Save",
+ "g3PQL4": "You have no apps linked to your Dropbox.",
+ "g3st+I": "No exceptions",
+ "g3t0dr": "Updating {folder_name}\u2026",
+ "g4Q8Ol": "Standard includes:",
+ "g4hBjB": "Manage",
+ "g5OSu/": "Share a link",
+ "g5XGac": "Resolve",
+ "g5XoZ1": "Sent to {recipient_first} and {recipient_second}.",
+ "g5i/rc": "Back",
+ "g60m+k": "The team folder name is reserved.",
+ "g62FEL": "Linux",
+ "g68hNT": "To verify your identity over live support, you\u2019ll need the following PIN:",
+ "g6BxgU": "Never downloaded",
+ "g6VcRe": "Cancel",
+ "g6qXZF": "You don\u2019t have access to traffic and insights for this file",
+ "g6uFpu": "{count, plural, one {Once you've sent the invitations, you\u2019ll have {count} licence remaining. Each person you invite will still need to accept to finish joining your team.} other {Once you've sent the invitations, you\u2019ll have {count} licences remaining. Each person you invite will still need to accept to finish joining your team.}}",
+ "g7It2O": "Creating link...",
+ "g7N60w": "Back to files",
+ "g7Npuz": "Review devices and web browsers",
+ "g7vg1d": "Remove everyone",
+ "g8YNMh": "Activity report icon",
+ "g8qxf9": "See who's visiting",
+ "g8rKMf": "Link",
+ "g95KjY": "This lets members use the file request feature to collect files, even from people with no Dropbox account.",
+ "g971tv": "It looks as though someone changed your access",
+ "g9kzVy": "Sign in as user",
+ "gAU6N5": "You can manage their members, including adding admin permissions.",
+ "gAtFlt": "This list shows the top domains of people outside your team that members are sharing files and folders with",
+ "gC+1Mu": "Quickly send any file \u2014 big or small \u2014 to anyone, even if they don\u2019t have a Dropbox account.",
+ "gC2VXy": "Confirm and send invitation",
+ "gD68Jd": "Advanced sharing controls",
+ "gDbGh9": "Personal",
+ "gDbunk": "Modified {ago}",
+ "gDefE3": "Limit the use of certain Dropbox features on members\u2019 phones and tablets",
+ "gDhD+v": "Edit your files and folders",
+ "gDp0bX": "Add security key",
+ "gDp6RV": "Actions such as move, edit, rename or restore.",
+ "gECQsN": "Enter Vault PIN to delete",
+ "gEIkEu": "Remove contacts",
+ "gEeH+S": "View plans",
+ "gFaiVu": "{num, plural, one {The {trademark_family} plan lets you link as many devices as you need, while {trademark_basic} has a limit of {num,number} device.} other {The {trademark_family} plan lets you link as many devices as you need, while {trademark_basic} has a limit of {num,number} devices.}}",
+ "gH+r8I": "Archiving usually takes a few minutes, but it could take up to a few hours if it\u2019s shared with lots of people. Archiving can\u2019t be cancelled once it has started.",
+ "gHr3dM": "If this HIPAA BAA is terminated earlier than the underlying Agreement: (a) the Customer may continue to use the Services in accordance with the Agreement, but must delete any PHI it maintains in the Services and cease to create, receive, maintain or transmit PHI to Dropbox or within the Services; and (b) Dropbox will not have any obligation to return or destroy PHI transmitted to Dropbox after the termination of this HIPAA BAA and while the Agreement remains in effect.",
+ "gI+OI9": "Off",
+ "gIEeGV": "Go to your team\u2019s admin console?",
+ "gId6o+": "Team members created {num_of_docs} docs when Paper was on. You can export docs or turn Paper back on to restore access.",
+ "gIf9gQ": "Your current plan details (renews as of next billing cycle {next_billing_date})",
+ "gIys9n": "Thanks for verifying your email address: {email}. You can now share and receive files on Dropbox.",
+ "gJ4J7a": "Member will no longer have access to the account",
+ "gJc8rX": "Can I upgrade my existing Dropbox {trademark_basic} or Dropbox {trademark_plus} account? How does migration work?",
+ "gJshIh": "Business resources",
+ "gK4PxX": "Smart Sync, stress-free sharing, offline folders on mobile and {plan_space} storage.",
+ "gKBEZz": "Ticket subject:",
+ "gKiaBi": "using {storage_used} of {quota}",
+ "gL0d6X": "Need help with a billing issue?",
+ "gL1sZK": "Access your attachments from any device by saving them to Dropbox.",
+ "gLMBbD": "Your team",
+ "gM+aTa": "Guest",
+ "gM3r20": "There was a problem completing this request",
+ "gMLJVs": "Download ZIP",
+ "gMMFLT": "Never",
+ "gMMLpm": "Send me HelloSign updates.",
+ "gMMxaZ": "You and every member of your {trademark_family} plan will be downgraded to {dropbox_basic}, which only allows up to {free_quota} of storage.",
+ "gMuHkX": "Mobile app overview",
+ "gN/zWT": "Image editing",
+ "gN2tFu": "What file types can be previewed in a showcase?",
+ "gNJQyO": "No, thanks",
+ "gOSNSg": "Device approvals",
+ "gP9xCB": "When you\u2019re ready to add folders to policy",
+ "gQ2JAx": "Everyone in {team_name}",
+ "gQFV0i": "Step 2 of 3",
+ "gQQ8F8": "Clear all",
+ "gQVZHe": "Members of the file with this link and password can view.",
+ "gQlQAz": "Share files securely with contractors and clients using our advanced sharing features.",
+ "gQq+eT": "Downgrade to {standard_plan}",
+ "gR/Lzm": "Start building",
+ "gR0Vz1": "Having trouble getting a code?",
+ "gRT9o7": "to {domain}",
+ "gRbKFY": "Choose how members can use Paper in Dropbox.",
+ "gRr0Xj": "{count, plural, one {You added {count} item} other {You added {count} items}}",
+ "gSChY6": "{count, plural, one {Anyone in your Dropbox team with this link and the password can view the folder. Expires in {count} day. Downloads disabled.} other {Anyone in your Dropbox team with this link and the password can view the folder. Expires in {count} days. Downloads disabled.}}",
+ "gSFHNP": "Off by default",
+ "gSPM7+": "If you need to expand your crew, your family manager can add members to or remove members from the Family plan at any time.",
+ "gSYRBL": "Explain the issue you've seen",
+ "gTD7Ga": "Sorted by name",
+ "gTTtEu": "You can\u2019t upload any files because your Dropbox is full. Get more space",
+ "gTyXGs": "Social media plan",
+ "gU57tI": "Enable Paper for {team_name}",
+ "gUTeT9": "Downloads disabled.",
+ "gUW9SX": "Unmanaged users who used Dropbox at least once in the past 4 weeks.",
+ "gUZ177": "User is already invited to this team.",
+ "gV1tk4": "You\u2019ve joined the account.",
+ "gVUPfg": "Connect Paper and Slack",
+ "gVXssQ": "Ticket dashboard summary",
+ "gVzSq7": "You don\u2019t have permission to move some of these items. Try moving items individually.",
+ "gW0O1X": "Send an invitation to:",
+ "gWqPD6": "Accepted payment types",
+ "gWxS/S": "No",
+ "gXCsR5": "Filters",
+ "gXPCqU": "Best value",
+ "gXXxNj": "API calls this month: {api_usage}",
+ "gY6USQ": "{count, plural, one {You added {count} item in {folder_path}} other {You added {count} items in {folder_path}}}",
+ "gYl7xx": "Christiaan Gunther, Site Editor of BCBG MAX AZRIA GROUP, LLC",
+ "gYv2NF": "Doc shared with {email}.",
+ "gYw+wG": "Sharing files",
+ "gZF0DX": "The data is accurate when the report is created. The report may not match the dashboard.",
+ "gZOe2G": "External participants",
+ "ga++u3": "{count, plural, one {View all files ({count} hidden)} other {View all files ({count} hidden)}}",
+ "gaNMlz": "Failed to load payment form.",
+ "gbLFmN": "Use a mobile app",
+ "gbLkUN": "Be specific so you can tell each download apart",
+ "gbccCU": "Delete link to \u201c{name}\u201d?",
+ "gbfS6k": "Date:",
+ "gbg3JH": "{count, plural, one {Team you can join} other {Teams you can join}}",
+ "gbibVS": "Disposition",
+ "gbta7Y": "{count, plural, one {Anyone in the {trademark_business} team with this link can edit the file. Expires in {count} day.} other {Anyone in the {trademark_business} team with this link can edit the file. Expires in {count} days.}}",
+ "gbx+V8": "We couldn\u2019t process your photo.",
+ "gcDZFf": "Activity",
+ "gcLx5K": "Preparing for distributed work",
+ "gcrDHz": "We can sync your Desktop and Documents to Dropbox so that you can access them from other devices.",
+ "gd6I9H": "Dec",
+ "gdOmTm": "Make primary",
+ "gddUAB": "If you lose your phone, we can text a code to your backup phone number ending in **{phone_last_two}.",
+ "gdjFbt": "You\u2019ve switched your plan.",
+ "geDX3L": "{trademark_business} provides three plans to fit your team\u2019s needs. The {trademark_business_standard} plan gives your team {standard_plan_size} of shared storage. For teams needing more space, the {trademark_business_advanced} and {trademark_business_enterprise} plans provide as much space as you need.",
+ "geYCWu": "We\u2019re sorry you\u2019re thinking of leaving us, {first_name}. Can you tell us why? We might be able to help!",
+ "gehmZx": "Get professional about sharing",
+ "geiQqX": "No courses",
+ "gek9SL": "Settings for this folder will now be managed by {name}. Bear in mind that if they\u2019re not in your Dropbox team, you won\u2019t be able to manage this folder here any more.",
+ "gekS4G": "Plans & pricing",
+ "gezQGQ": "Network control",
+ "gfASl+": "No legal holds yet",
+ "gfG7zK": "Deleted link to {name}.",
+ "gfZniX": "No files held",
+ "gfeOp7": "Storage limit warning",
+ "gffk/L": "Send to notary",
+ "gfg75+": "Customer support",
+ "gfzKfL": "Once they\u2019ve accepted, you\u2019ll be able to:",
+ "ggNNd9": "Preview files shared in Trello",
+ "ggWnUh": "Company Inc.",
+ "ggdxX+": "Login method",
+ "ghld2g": "Details",
+ "gihGYV": "Please contact Dropbox Support",
+ "gitP0v": "Title",
+ "gj5Nlr": "Whenever you add additional files to this folder, they\u2019ll become accessible to these groups.",
+ "gjD0l7": "When people work on this file, you\u2019ll see their activity here.",
+ "gjbyAR": "This gives you two accounts \u2013 your {work_email} account for {team_name} work\nand a new personal account for your existing files.",
+ "gk12sS": "Learn more",
+ "gkEuQo": "I agree to the Terms and Conditions",
+ "gl4dr7": "{count, plural, one {You\u2019ve linked {count} app to your account. You should remove apps that you are no longer using or that look unfamiliar. Learn more about linked apps.} other {You\u2019ve linked {count} apps to your account. You should remove apps that you are no longer using or that look unfamiliar. Learn more about linked apps.}}",
+ "glJTLk": "Securely send stuff to anyone, even if they don\u2019t have a Dropbox account.",
+ "glQ7vm": "Take the pain out of managing legal documents by signing and storing them in one convenient, organised place.",
+ "glZYBx": "Send reminder",
+ "gn86RL": "{count, plural, one {Email my team admin to keep {business}} other {Email my team admins to keep {business}}}",
+ "gnD97C": "Description",
+ "gnEPL0": "Learn more",
+ "gnuGcb": "Unable to close this window. Please close it manually and return to the previous site.",
+ "gpKXSv": "More actions",
+ "gpdptm": "To create, edit or comment on {product_name}, sign in or create a Dropbox account.",
+ "gpe0AZ": "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna.",
+ "gpe7F8": "Got it!",
+ "gq9/8S": "Failed to delete. Please try again later.",
+ "gqAKGJ": "Info types",
+ "gqBhYf": "You moved this file",
+ "gqNK3P": "Create a team and get access to additional space, advanced sharing features and powerful admin functions.",
+ "gqNtTt": "Your plan is set to be downgraded on {trial_end}. If you downgrade, your team will lose {space} of space, and your active team members will return to their initial space quota. If you want to keep using {trademark_business}, it only takes a few moments to add your billing information.",
+ "gqOg6Z": "Start new transfer",
+ "gqTMCM": "Inbox ({count})",
+ "gqXguU": "Account recovery security issue",
+ "gqYNX6": "Connect another {name} account",
+ "gqZxgF": "Admin session expired",
+ "gqemh4": "Create new account",
+ "gqjwaZ": "Email sent",
+ "gqmbkC": "Oops! It looks as though this file no longer exists",
+ "grlpui": "What is a CNPJ?",
+ "groS5T": "
By default, anyone with a link to the showcase can view it. This means that someone you\u2019ve shared a link with could forward it to someone else. However, you can set it up so that only people you invite to the showcase can view it. This option is available in the sharing settings.
\n
By default, the people you share a showcase with can download and leave comments on the files in it.
\n
Only the owner (or creator) of a showcase can edit it. However, if you have files from a shared folder in your showcase, anyone you\u2019ve shared that folder with can edit the files in it. Those changes would then appear in the showcase.
",
+ "gsFwKW": "{count, plural, one {Members only shared with {count} domain outside your team} other {Members only shared with {count} domains outside your team}}",
+ "gsQQ+Y": "Do you have any volume discounts?",
+ "gsqXw9": "I agree to the HelloSign Terms, Privacy Policy, Refund Policy and Automatic Renewal Terms above.",
+ "gtB5F7": "Members who go over the limit can\u2019t upload or sync their files.",
+ "gtSYO4": "Please complete all required fields",
+ "gtjB22": "You rewound {item_name} to {rollback_date}",
+ "gtleyW": "Advanced user management tools",
+ "gtpnsh": "Facebook",
+ "gtyX8V": "Couldn\u2019t save default editor",
+ "gu67aP": "{cost}/month",
+ "gu8Wtd": "",
+ "gueiVk": "A password manager that syncs across devices",
+ "guiO/P": "Your links",
+ "guzO4O": "Transform docs into presentations",
+ "guzaOE": "Store all of your faxes in one secure place.",
+ "gvR8PU": "Email verified",
+ "gw/4ND": "{label}: not available",
+ "gwMXP9": "Your own space",
+ "gwTkEW": "Allowed for 2 days",
+ "gwYeGe": "Head to your Canvas admin account and enable developer keys for Dropbox under the 'Inherited' tab.",
+ "gwh4Ns": "Updated {date}",
+ "gx89em": "Restore folder",
+ "gxCwIt": "Try reconnecting",
+ "gxEzRN": "Close",
+ "gxO/+x": "Open app",
+ "gy7k3y": "Un-acknowledge",
+ "gymL3m": "Resume after reconnecting to the Internet",
+ "gyyy1y": "Migration in progress ({percent,number,::percent .##})",
+ "gzg7jf": "Not enabled",
+ "gzqK1k": "Set default access for newly created Paper docs. This setting can be changed by members for individual docs.",
+ "h+1seU": "The system extension will be uninstalled",
+ "h+QTqt": "Shared folders you own",
+ "h+RmaB": "Files added",
+ "h+VfyY": "If your files aren\u2019t updated a few minutes after you turn this on, try restarting the Dropbox desktop app.",
+ "h+j0AC": "{count, plural, one {You\u2019re trying to add more devices than your plan supports. Upgrade to {dropbox_plus}\n to stay signed in to more than 1 device at a time.} other {You\u2019re trying to add more devices than your plan supports. Upgrade to {dropbox_plus}\n to stay signed in to more than {count} devices at a time.}}",
+ "h+tuNG": "As an existing {trademark_business} customer, your team has unlimited API calls.Dropbox now has two {trademark_business} plans. These new plans offer unlimited API access to security and productivity partners, and 25,000 API calls/month for data transport partners. On your first renewal date in 2018, if you want to continue having unlimited API calls, we would encourage you to contact support.",
+ "h/4P+h": "{count, plural, one {Restored {count} item, but can\u2019t sync until you free up space.} other {Restored {count} items, but can\u2019t sync until you free up space.}}",
+ "h/OTkF": "Activity filter",
+ "h/f1H9": "3. Download Dropbox",
+ "h/hLSy": "Suggested location",
+ "h/jNg2": "Cancel trial",
+ "h/o1un": "24/7 phone support",
+ "h/xyon": "Ask to join failed. Try again for {receiverEmail}",
+ "h0ogUi": "Please enter a valid password.",
+ "h0vA6Q": "Close",
+ "h0yUbM": "{count, plural, one {{count} item} other {{count} items}}",
+ "h17Xfe": "No lists available",
+ "h1ZrSB": "End the tour?",
+ "h1dLjD": "Next shared meeting",
+ "h2UqcJ": "(team downgraded)",
+ "h39Jkw": "I\u2019m dealing with thousands of files that are two to four gigabytes. Dropbox Business has enabled us to push that data quickly, efficiently and reliably. And I\u2019m honestly not quite sure how we did it before. Very rarely does somebody bring up a service other than Dropbox. It\u2019s the defacto way in the community of sharing data.",
+ "h3kG3E": "{price}/year",
+ "h3tWnF": "Visit our Help Centre",
+ "h3wR04": "Make sure you\u2019re retaining the content you need.",
+ "h4EJqp": "No prior knowledge required! But, to make sure you\u2019re taking advantage of everything {trademark_business} has to offer, we suggest checking out our admin and user guides. Start your free trial.",
+ "h4NBWz": "Please refresh your browser.",
+ "h4OU3d": "Asked to join",
+ "h4S9M8": "Not enough space to access folder",
+ "h4vreR": "personal",
+ "h58mvf": "Off",
+ "h5ZOYA": "{group_name} is now company managed",
+ "h5lQc0": "Cancel Plus trial",
+ "h65ZbA": "Only members with the link can access the Paper doc",
+ "h7QdpZ": "You can restore any version below to make it the current file. All other versions will still be saved.",
+ "h7ca5N": "Google Workspace integration",
+ "h7t7QA": "If you make this move, you'll no longer be the owner of some of the folders.",
+ "h8DYhc": "They can see it and ask to join",
+ "h8MAcH": "Make sure you\u2019ve added the meta tag to the homepage of ",
+ "h8VnsZ": "Ask for more space",
+ "h8k50T": "This person may have been deleted from the team.",
+ "h99g3j": "Resources",
+ "h9EcHm": "{count, plural, one {{count} manually added contact} other {{count} manually added contacts}}",
+ "h9HyxI": "Live chat",
+ "h9UTH1": "Billing history",
+ "h9dOzW": "Space used",
+ "h9ioaY": "Sent",
+ "hA0Lsw": "You don\u2019t appear to be a verified contact for this vault. Please check with the owner.",
+ "hADEDn": "How much data can 1 TB hold?",
+ "hAXZAv": "Find card by title",
+ "hAkFid": "{count, plural, one {This app will be set to default, following the default permission for whether your team can connect apps listed in App Centre to Dropbox.} other {These apps will be set to default, following the default permission for whether your team can connect apps listed in App Centre to Dropbox.}}",
+ "hApMtp": "Recent",
+ "hBBZPJ": "Our business wasn\u2019t satisfied with the way features worked",
+ "hC0iLL": "Can't invite them with that email address",
+ "hC2iIm": "Live chat",
+ "hCAGEJ": "Add from computer",
+ "hCpZct": "Delete undone.",
+ "hCqb3Q": "I understand",
+ "hD3goz": "Dropbox logo",
+ "hDBFiJ": "From PowerPoint",
+ "hDgBBt": "Recents",
+ "hDr6DO": "You shared {single_item_name}",
+ "hE1Ua5": "Get your team ready for a powerful burst of co-creation. Let them know who will attend, how to prepare and what they can expect to deliver.",
+ "hE6l1Q": "Changes made to this file using {app_name} will be saved back to Dropbox. This app will have access to the username, email address and country for your account.",
+ "hELrb9": "{count, plural, one {{name} unshared {count} item in {folder_path}} other {{name} unshared {count} items in {folder_path}}}",
+ "hEQhmw": "For security purposes, we can only provide the email address associated with the account in question to third parties.",
+ "hFDfoh": "Items you recently viewed appear here.",
+ "hFGKUm": "Note: anyone can send attachments to your Dropbox with this address. Only share it with people you trust.",
+ "hFnHZm": "Open in your browser to download",
+ "hG5WRG": "Phone number:",
+ "hGO6A9": "How to tell if this was you",
+ "hGb3Qp": "Settings updated.",
+ "hGbNfq": "Remove {app_name}?",
+ "hGtyf9": "Upload as overdue on {date,date,medium} at {time}",
+ "hH81BT": "Deleted",
+ "hH9uJG": "Pause",
+ "hHO586": "Retention period",
+ "hHhhyq": "Double-check your spam folder.",
+ "hHmfUA": "You need the latest version of Chrome or Edge to avoid issues with your download.",
+ "hHq6X2": "2 GB of space for your team",
+ "hI1zen": "If you already use Dropbox, moving to a {trademark_business} account is easy! All of your content will stay the same \u2013 your files will stay where they are and all of your settings (such as shared folder relationships and linked devices) will remain the same. For admins, all of your team members who already use Dropbox will have the same experience, and anyone without an existing Dropbox account will be prompted to sign up when you send them an invitation. For {trademark_plus} users who switch to {trademark_business}, any remaining credits will be returned as a pro rata refund to the original payment method.",
+ "hIFQE8": "Cancel",
+ "hIFy4P": "(including {tax_rate_str,number,::percent .##} tax)",
+ "hIN6IW": "Cancel request",
+ "hINdXo": "If you delete your account, your data will be gone forever.",
+ "hIOl17": "Top syncing articles",
+ "hIRNbB": "{count, plural, one {Your plan must have at least {count} licence.} other {Your plan must have at least {count} licences.}}",
+ "hIWeAV": "{count, plural, one {{count} selected} other {{count} selected}}",
+ "hIYwWy": "Couldn't remove folder. Please try again.",
+ "hIlNsL": "Created",
+ "hItM9/": "Once you\u2019ve uploaded the HTML file, your domain is ready to be verified.",
+ "hJ33Ip": "For growing teams",
+ "hJASAE": "Successfully disconnected {name}",
+ "hJMzhK": "Powerful sharing and collaboration tools.",
+ "hJV4b3": "If a Dropbox account exists for {email}, an email will be sent with further instructions.",
+ "hJeUi9": "Suggested location: {folder} (selected)",
+ "hJfMW2": "Business for teams",
+ "hJu3Jb": "iPad",
+ "hK3Vsp": "Email",
+ "hKaXB9": "Payments settings",
+ "hKhqIg": "PDF and other file type icons protrude from a blue safe.",
+ "hKz/tt": "Focal length",
+ "hL58Xw": "Restore",
+ "hLKgf8": "In your team\u2019s workspace, you can limit access to entire folders, but not individual files.",
+ "hLLslJ": "Only the owner can change these settings.",
+ "hLTM9f": "Couldn\u2019t connect",
+ "hMBuDN": "Use at least 8 characters, and make sure it\u2019s two bars strong:",
+ "hMD/8c": "Can\u2019t find member",
+ "hMH8kL": "by {actor}",
+ "hMW3Kx": "Having issues with the product",
+ "hMZiKT": "Last sent on {date} by {name}, but you can resend emails as a reminder",
+ "hMjxKh": "Share this folder",
+ "hMyik4": "{count, plural, one {Moved {count} item to {folderName}.} other {Moved {count} items to {folderName}.}}",
+ "hNT7DA": "{count, plural, one {{newCost}/month for {count} user ({currentPlan} is {currentCost}/month for 1 user)} other {{newCost}/month for up to {count} users ({currentPlan} is {currentCost}/month for 1 user)}}",
+ "hNa6bT": "Storage",
+ "hNgE37": "Choose image",
+ "hNqHHt": "Join now",
+ "hOAaKP": "It looks as though {email} has already been invited to join your team. ",
+ "hOSwE1": "Optional",
+ "hOudAi": "Nichole Boatsman, IT Director",
+ "hOw+cd": "Sitemap",
+ "hOwcmv": "Make admin",
+ "hOx+lQ": "You\u2019re cancelling your scheduled plan change. Your Dropbox {plan} plan will be renewed on {date} and you will be billed monthly.",
+ "hP3HgD": "Verify your email",
+ "hPAOZr": "Report as an issue",
+ "hPTQqd": "Dropbox details",
+ "hQ0rRo": "{team_name} has reached the maximum number of team members allowed on Dropbox Basic. Please contact sales to add more members to your team.",
+ "hQ2TEP": "Couldn\u2019t save changes. Please try again later.",
+ "hQMDzJ": "Only the owner can permanently delete",
+ "hQTvPz": "Sophisticated admin, audit, security and integration capabilities",
+ "hQoVo1": "Set your default option: should your new files automatically live on your device (local) or online?",
+ "hR2/Hh": "{count, plural, one {Copied {succesfully_copied_files} of {count} item.} other {Copied {succesfully_copied_files} of {count} items.}}",
+ "hRWIf4": "Use the camera on your phone or tablet to scan the QR code on the screen and download the Dropbox desktop app.",
+ "hRYg9o": "Copy",
+ "hRYthj": "Access has expired",
+ "hRdISa": "Simply add signers by email address to send out for signature requests.",
+ "hRu2DE": "What is the difference between {dropbox_business_standard} and {dropbox_business_advanced}?",
+ "hS5Cvp": "What you picked",
+ "hS7yE9": "Request access pending.",
+ "hSZf0R": "Connect Google Calendar",
+ "hSgU8o": "Default language",
+ "hSlr4k": "Something went wrong. Please try joining later.",
+ "hTBjMZ": "Expand {folderName}",
+ "hTH6PN": "{count, plural, one {Only you can view via this link. Expires in {count} day.} other {Only you can view via this link. Expires in {count} days.}}",
+ "hTmlpx": "Change joining settings",
+ "hTndCE": "Can I share files or folders with {trademark_basic}/{trademark_plus} users if I\u2019m on a Business account?",
+ "hTw//a": "Couldn\u2019t update PIN. Please try again.",
+ "hTzJf0": "Billed yearly (save up to 17%)",
+ "hU1ig4": "Part {index} of {total}",
+ "hUmw6N": "Save as PDF",
+ "hVDi6s": "{count, plural, one {You\u2019re scheduled to be reduced from {old_count} licences to {new_count} licence on {date}.} other {You\u2019re scheduled to be reduced from {old_count} licences to {new_count} licences on {date}.}}",
+ "hVfC/T": "Please note that you have a Dropbox {trademark_plus} subscription managed through the {billing_store}. You must cancel it to avoid being charged when you join this {trademark_business} account.",
+ "hVsohn": "File requests",
+ "hWKAZS": "Create and edit with {app_name}",
+ "hWMuUV": "Separate Dropboxes for personal and work files",
+ "hY0d5Z": "not added yet, in {location}",
+ "hY98fc": "We recommend: {planButton}",
+ "hYCfnh": "{value, plural, one {{value,number} minute} other {{value,number} minutes}}",
+ "hYE87E": "Your plan is set to be downgraded on {trial_end}",
+ "hYItkN": "Create and edit",
+ "hZ+TpT": "File requests",
+ "hZ1eeb": "Search by name or email address",
+ "hZ9a73": "{price} for {licenses}",
+ "hZMv1U": "Downloads",
+ "hZRra4": "You're currently logged in as {name} ({email}) and this account will be the administrator for your new {trademark_business} account.",
+ "hZgiKR": "Select",
+ "hZkCKo": "Move folders",
+ "hZn1zE": "Company name",
+ "hZymwk": "Request access",
+ "haWqwN": "Microsoft Office save location",
+ "hadLkQ": "View Dropbox content",
+ "hbQPvY": "Joining",
+ "hbjEja": "Also remove the {name} folder from my Dropbox.",
+ "hc+1Ri": "{price} / {duration}",
+ "hcS7mL": "{first_admin} and {num_of_rest} more",
+ "hcTWWh": "Sophisticated admin, audit, security and integration capabilities.",
+ "hczh4U": "Deselect all",
+ "hd+jLJ": "Account",
+ "he/OAb": "Not helpful",
+ "heeSqP": "Point your camera at the QR code to download Dropbox.",
+ "heuH3M": "Dropbox logo",
+ "hf0hON": "Google sign-in has been disabled. Sign in with your Dropbox password or ask your Dropbox admin for help.",
+ "hfH1V+": "You need {licenses} more licences to add the {team_name} team.",
+ "hfvm5k": "People with the link can view until {date}",
+ "hg4ta7": "Usage report",
+ "hgAISZ": "Anyone with this link can view the file. Downloads disabled.",
+ "hgaabe": "Premium productivity features and simple, secure file sharing",
+ "hgfkuu": "Install now",
+ "hgpGgc": "Invitation sent!",
+ "hh7boA": "Suggestions",
+ "hhK/pu": "To learn why some files and folders are incompatible with certain operating systems, click here.",
+ "hhZ/qz": "Security alerts",
+ "hhkkVi": "15-day trial",
+ "hhoOQw": "Usage:",
+ "hhptWM": "This file is too big to preview.",
+ "hiHRLr": "Rewind Dropbox",
+ "hiUob7": "Deleted Binder",
+ "hioLXD": "You turned on viewer info",
+ "hith0F": "Videos/images",
+ "hjQOY6": "Other Apps",
+ "hjZImV": "Sign and request signatures for your documents. Track the entire signature process.",
+ "hjhBkZ": "Regardless of who you\u2019re working with or what you\u2019re working on, we have easy ways to share files and folders.",
+ "hjm1hT": "Search results ({total})",
+ "hl1qZM": "\u2013",
+ "hl63LR": "{count, plural, one {Folder will only be visible to members on the web. Members can sync what they need using Selective Sync.} other {Folders will be only visible to members on the web. Members can sync what they need using Selective Sync.}}",
+ "hlOfga": "Open files with {app_name} by selecting it from the Open menu in Dropbox.",
+ "hm26aB": "Move the files you use less often off your computer and into the cloud, saving your hard drive space.",
+ "hmAOD2": "Share any file, big or small",
+ "hmCBEl": "View files on Dropbox",
+ "hmUINz": "What\u2019s the difference between a showcase and a folder?",
+ "hmh3kt": "Recover older versions and restore deleted files.",
+ "hn5b6E": "or",
+ "hnAmTE": "Your transfer has been saved",
+ "hoL8IW": "Free right now",
+ "hoV1bd": "Changes saved",
+ "hoisUP": "Add team folders",
+ "hp1wzi": "Informational",
+ "hpA+QI": "Tap the 'Options' button (\u22ee).",
+ "hpC7/0": "There was a problem unstarring your selection",
+ "hpOZFA": "Removing members from {current_folder}\u2026",
+ "hqCtpe": "Couldn\u2019t update. Try again in case it was a one-off, or reload the page.",
+ "hqH/YD": "Account plan",
+ "hqSsCo": "Upload folder",
+ "hqWZ70": "Select all",
+ "hr57hL": "Your team admin has disabled some email notifications.",
+ "hrSJQL": "1 of 4",
+ "hrTSua": "Adobe RGB",
+ "hrgx67": "Loading folders",
+ "hrvk/J": "right arrow",
+ "hs+RwR": "Member space limits",
+ "hsXGK8": "Reconnect to {service_name}",
+ "hssOFn": "Ask Dropbot",
+ "hsvG4I": "Upload cancelled",
+ "htB2XI": "We also sent you a confirmation email to get started.",
+ "htHRUf": "Some of these items are shared. You no longer have access to any of them, so you can\u2019t restore or permanently delete those items.",
+ "htIrze": "Preview",
+ "hts6Dr": "Suspended members still take up licences but can\u2019t sign in",
+ "hu/463": "Flow",
+ "huBwTA": "View this folder in the admin console",
+ "hunQnq": "Folder history",
+ "hvAv6t": "Copy undone.",
+ "hvVEnY": "Include any specific details you want people to know",
+ "hvbmr4": "Set up personal Dropbox",
+ "hvqdPv": "Monday to Friday",
+ "hwBwEN": "Share files with your Outlook contacts",
+ "hwF6yj": "Recover from accidents or ransomware by reversing all changes to your content at the folder or account level",
+ "hwg2F4": "Remove this export?",
+ "hwnHOl": "You won\u2019t get an alert if someone shares malware with your team.",
+ "hwq/Wo": "Go to the admin console.",
+ "hxDJw2": "The included audit trail ensures actions are tracked and time-stamped",
+ "hxEGcF": "Send big files with Dropbox Transfer",
+ "hy3KfK": "All ready to send",
+ "hyjhAF": "What is the difference between {trademark_business} and Dropbox {trademark_plus}?",
+ "hz+qUq": "{planSchedule} subscription",
+ "hz1weP": "Downloaded",
+ "hzJBex": "Removing...",
+ "i+DKxf": "Auto, fired, return detected",
+ "i+FdYu": "Attach files and compose emails with Gmail",
+ "i+PJQ7": "Password",
+ "i+nVaK": "Lullabot",
+ "i/J8lD": "Learn more about Smart Sync",
+ "i/KiYl": "Error asking {name} to unlock {filename}",
+ "i/ragh": "Weak",
+ "i04Frc": "Coverage.",
+ "i0sxuP": "{group_name} is now user managed",
+ "i1KhGx": "Advanced security controls",
+ "i1dHh4": "{transfer_title} will be permanently deleted and shared links to it will no longer work.",
+ "i1llDx": "{count, plural, one {{count}+ results} other {{count}+ results}}",
+ "i23hig": "Which of the following Vault features is most valuable to you? [Select up to 3]",
+ "i2Xj04": "You edited {single_item_name}",
+ "i3PhyH": "{space} or more of encrypted cloud storage",
+ "i47/vU": "Transfer deleted",
+ "i4Xv9N": "Other",
+ "i4xJK0": "Go to your inbox and click \u201cVerify your email\u201d in the email we sent you.",
+ "i4xoYU": "Invitations sent",
+ "i51PSV": "Cancel processing this export?",
+ "i5Pk4k": "What's the difference between {trademark_business} {trademark_business_standard} and {trademark_business} {trademark_business_advanced}?",
+ "i5Rxy8": "Shared folders will move with their owner to the new team, but their former team members won\u2019t lose access.",
+ "i6213M": "Your account comes with a free trial",
+ "i62rvF": "{current_step} of {max_step}:",
+ "i6x5Em": "Step 2 of 4: How it works",
+ "i7YHkL": "Team collaboration, any time, anywhere",
+ "i7aMt9": "You moved {single_item_name} out of this folder",
+ "i7chva": "create a new account",
+ "i7rShS": "Take a look at what\u2019s shared",
+ "i88LS8": "{count, plural, one {Members of the file with this link and password can edit. Expires in {count} day. Downloads disabled.} other {Members of the file with this link and password can edit. Expires in {count} days. Downloads disabled.}}",
+ "i8CRJi": "Remove domain",
+ "i8w4Al": "External",
+ "i8yCZB": "Visit our Help Centre",
+ "i8ycyk": "Sign out of devices link",
+ "i98Ff5": "Upload",
+ "i9a5v5": "Please change your password",
+ "i9dq7T": "Team members",
+ "iA5Blb": "Unapprove",
+ "iAu2WN": "{count, plural, one {In {count} shared folder with you} other {In {count} shared folders with you}}",
+ "iB4mTw": "To free up space, set all of your files as online only in Dropbox. You\u2019ll still see everything in your account in the Dropbox folder on your computer. Just double-click any file to download it again. Learn more about Smart Sync",
+ "iB9QsT": "Your refund is on its way",
+ "iBIJgM": "Show recovery codes",
+ "iBTG1t": "You got new features for free",
+ "iBVBlk": "Open Microsoft files in Office for the web, without leaving Dropbox. Set your editor of choice as the default, and easily collaborate in real time.",
+ "iBljNn": "Dropbox Customer Service",
+ "iBp3QN": "(prices include GST)",
+ "iBse65": "Try out new ways to protect your stuff in Dropbox. Just added, at no extra cost.",
+ "iC9NTD": "Delete member",
+ "iCGdZd": "Search result {index} of {suggestion_count}: {aria_title} in {location}",
+ "iCdTjS": "Last active {time_ago}",
+ "iCq+2J": "{count, plural, one {{count}file} other {{count}files}}",
+ "iCqcy2": "Approximate location",
+ "iD/2F/": "Background image",
+ "iDA8U1": "Viewer history",
+ "iDLPPu": "You\u2019ve used all your space for this transfer. Remove some files to continue.",
+ "iDkFZl": "Open Dropbox to pair",
+ "iELiKe": "All members will lose access to team files and folders",
+ "iF9AcH": "Sync tasks from",
+ "iFE9SB": "You can view and comment on many file types, including video, directly from Dropbox.",
+ "iFX+XI": "Download",
+ "iFdKJv": "Link copied to clipboard.",
+ "iFgrr6": "Saving PDF in {cdm_tmf_name} folder because you don't have edit access to the current folder...",
+ "iFh+u8": "Waiting for {email} to accept",
+ "iGKSMx": "Send",
+ "iGLEW5": "Someone comments or replies to my comment",
+ "iGSzy9": "You can use this message to explain that you\u2019d like to give them emergency access to your important files.",
+ "iGfiaV": "Add to starred",
+ "iGpADw": "{display_name} and {number} others",
+ "iGy/+d": "Priority",
+ "iHieh5": "{numberOfEmailsToInvite, plural, one {Sending {numberOfEmailsToInvite,number} invitation...} other {Sending {numberOfEmailsToInvite,number} invitations...}}",
+ "iHnMm2": "This will unlink your accounts everywhere. If you added a linked account on your mobile or desktop app, unlinking will remove the last account you added from that device.",
+ "iHrvAa": "Folder created",
+ "iI0W58": "Preview transfer",
+ "iI2vyR": "Keep life organised and work moving \u2013 all in one place",
+ "iI4a2O": "It looks as though they\u2019re already on the list.",
+ "iIJvk8": "refresh the page",
+ "iIPJmE": "Advanced productivity features and simple, secure file sharing",
+ "iIucBq": "Get more space",
+ "iJBP2G": "To",
+ "iJCr3W": "You have no licences available.",
+ "iJfsyD": "Access restricted. Not shared with all members of {parent}.",
+ "iK5+GC": "See all features",
+ "iKrhJI": "Settings for {team_name}",
+ "iL3G6c": "Your team will be signed out of Dropbox",
+ "iL6dYt": "Part",
+ "iLM+Th": "True",
+ "iLRz1S": "Dropbox Professional",
+ "iLtYQ8": "{price} per year. {tax_string}",
+ "iLw/49": "Reports",
+ "iM/K8p": "Show me how to...",
+ "iN+FK7": "{count, plural, one {Anyone in the {trademark_business} team with this link and password can view the file. Expires in {count} day. Downloads disabled.} other {Anyone in the {trademark_business} team with this link and password can view the file. Expires in {count} days. Downloads disabled.}}",
+ "iN0GiQ": "You unlocked this file",
+ "iN7jUB": "Change your password",
+ "iNPp9N": "Where should a record be made when you sign in to this member\u2019s account? If your choice is to notify the member, they will receive an email stating that you signed in to their account.",
+ "iNfEof": "Delete",
+ "iO702J": "1 TB (1,000 GB) of storage space",
+ "iO9fs7": "No results found. Try different keywords.",
+ "iOLwjz": "Couldn\u2019t retrieve shared links. Reload the page to try again.",
+ "iOUGcl": "Change deadline",
+ "iPDKbr": "Try for free with Professional",
+ "iPE+wJ": "I\u2019ve changed my mind \u2013 take me back to Dropbox",
+ "iPVwvJ": "Your free trial ends on {trial_end_date}. If you don\u2019t cancel your free trial by that date, we\u2019ll charge you {total_price} {schedule} (including taxes) until you cancel your plan. Charges won\u2019t be refunded when you cancel, unless it\u2019s legally required. Your payment data is encrypted and secure. All amounts shown are in {currency}.",
+ "iPfB46": "Pause",
+ "iPxFEV": "Import CSV",
+ "iQ7Rjk": "Failed to cancel changes.",
+ "iQQaEB": "Next",
+ "iQWycD": "Coordinate recruitment activities and stakeholders in one place. Consolidate candidate data, manage interview schedules and co-edit interview questions.",
+ "iQcSYs": "Enable or disable the file request feature",
+ "iR68zV": "Lock",
+ "iRKebb": "{lockholder_name} temporarily locked editing for this file {ago}. You can view it while it\u2019s locked, or ask them to unlock it.",
+ "iRMpLo": "Get a new email address to replace the current one.",
+ "iRYhK7": "App Centre",
+ "iRcegI": "Customise settings",
+ "iRdFJf": "Remove",
+ "iRjYtd": "Please enter a valid VAT number (e.g. {examples}).",
+ "iSL0j/": "For teams",
+ "iSu3QF": "Let\u2019s try to change your email address ({email}) from a linked desktop client or mobile app. This will send notifications to all of your linked desktop clients and mobile apps.",
+ "iTWWo2": "We\u2019re sorry to see you go. Let us know why, and we'll try to help or improve our offering in the future.",
+ "iU1Nce": "Smart Sync setting saved.",
+ "iUbSva": "Preparing document for signing...",
+ "iV8q3P": "Get more out of Dropbox by connecting with the tools you love",
+ "iVI2Hm": "Deleted forever.",
+ "iVOKJj": "Export all member data",
+ "iVmeBf": "Disable comments",
+ "iWHTv1": "Phone number",
+ "iWLNiT": "Sundance Institute logo",
+ "iWYk2k": "Colours",
+ "iWehM3": "What does your team do with files?",
+ "iWlgDz": "{count, plural, one {Only you can view via the link. Expires in {count,number} day. Downloads disabled.} other {Only you can view via the link. Expires in {count,number} days. Downloads disabled.}}",
+ "iWnZF3": "Team profile",
+ "iWoouL": "To re-link your Dropbox files on the infected computer, you must first remove\n the malicious software. Dropbox can\u2019t remove it for you, but antivirus software\n can. You can find antivirus software by searching on the web. If a reinfection occurs,\n Dropbox can help you recover your files again. Remember, all of your files are\n already accessible on dropbox.com.",
+ "iWy49e": "{email} is not a valid email address.",
+ "iWzO4p": "Group by",
+ "iXDCUD": "Freeing up space is easy. Move stale files and folders to online-only. They\u2019ll still be visible and accessible from your desktop, even though they\u2019re off your hard drive.",
+ "iXgIdV": "Get {free_months} months free with your first year of {dropbox_plan}*. This offer expires on {expiration_date}.",
+ "iXpEkq": "Nothing, they won\u2019t be deleted forever or hidden. You can permanently delete them in the admin console",
+ "iYKEBU": "Send feedback",
+ "iYXryC": "If you remove a member, copies of any files held for them will be released.",
+ "iYnBgp": "Dropbox Paper docs",
+ "iYuN4k": "Stay secure",
+ "iZ/euB": "A video showing the various features of Smart Sync",
+ "iZ5ZIO": "Integration",
+ "iZQ1UI": "Deliver by copying a link or sending an email",
+ "iZQr78": "{count, plural, one {Only {count} day left} other {Only {count} days left}}",
+ "iZT+Vn": "You don\u2019t have permission to add files to that folder. Please choose another destination.",
+ "iZZqcG": "Let\u2019s get your docs into Dropbox",
+ "iZf9f+": "Showcase icon",
+ "iZo4vO": "Invalid email",
+ "ia70+X": "Do you want to continue using {trademark_business}?",
+ "ia9qta": "edit everyone\u2019s default",
+ "iaAy83": "Manage everything for all admins and members",
+ "ibX+h2": "You are ready to start using Dropbox!",
+ "ibhqsO": "Language",
+ "icJd4i": "Name",
+ "icWO/S": "Choose files to {upload_folder_name}. You can select more than one file at a time.",
+ "icbOz5": "You can can annotate video projects, track review cycles and capture time-coded feedback. The Vimeo Dropbox extension simplifies video sharing and reviews. New users get 30 days of free video review.",
+ "icuzEw": "More options",
+ "idEM1s": "End date",
+ "idHU9i": "The {card_name} card with this file attached was moved to the {board_name} board",
+ "idf9TB": "We\u2019ll send another email to {email} and the other admins in this team.",
+ "idoX4w": "Sign up for Dropbox",
+ "ieZKvO": "{member_name} was removed from your family.",
+ "iedPeh": "Try Plus free",
+ "ieggV3": "Connect",
+ "if/aG/": "Members will now only be allowed to use the Dropbox EMM app. Any members using the normal Dropbox app will be signed out.",
+ "if8xIl": "Owner",
+ "ifEcof": "Yes",
+ "ificAs": "ID",
+ "ifmXs6": "Try {trademarkBusiness} free for {trialDays} days",
+ "ifpyy0": "or",
+ "igA4sB": "Use existing account ending in {last_4}",
+ "ighXud": "It looks as though you have already added that folder.",
+ "igpP7N": "What's Included",
+ "ihiPy5": "No other alert types triggered in the last 7 days",
+ "ii5cqV": "Request to manage this team is pending.",
+ "iiH9u5": "To turn this feature off or create a new email address, open settings.",
+ "iiTwXU": "Wiki \u2192",
+ "iiU9N+": "Looks as if you already have this! Take it for a spin",
+ "iidQeN": "Easily build account plans for every deal you work on. Bring together critical information about your customer, competitors and sales strategy that you can access when you're on the go.",
+ "iiiHMO": "Project management",
+ "iij/7N": "Share your work in the best light",
+ "ijhnb9": "Sharing links externally",
+ "ijtd/5": "Select image",
+ "ik3Lzw": "Alert policy edited.",
+ "ikAVu1": "By confirming, your downgrade to Dropbox Basic will be cancelled.",
+ "ilfKLu": "Filter to {folder_name}",
+ "ils48n": "Be inspired by a team like yours",
+ "im2GDs": "Please select a reason.",
+ "im3MR+": "Asked {name} to unlock {filename}",
+ "imVwQa": "{count, plural, one {{count,number} file} other {{count,number} files}}",
+ "imh4LV": "Attach files to Trello cards or create new ones from Dropbox.",
+ "imqtsa": "Selecting the file allows you to join a Zoom meeting or send a Slack message to those who have access to the file, and also see relevant apps for the selected file.",
+ "inPOPC": "Off",
+ "ini0mY": "Anyone with the link",
+ "ioDRnq": "50-99",
+ "ioEtgN": "Document",
+ "ioU4JD": "Average",
+ "ioVPeC": "Your plan includes as much space as you need and finite API calls.",
+ "iopTgP": "Couldn\u2019t send",
+ "ioscbh": "Extremely satisfied",
+ "iowh4/": "Delete",
+ "ip83aD": "You\u2019ll create a new, personal Dropbox account for your existing files and Paper docs.\nThis will give you two accounts \u2013 your {work_email} account for {team_name} work and your\n{personal_email} personal account for your existing files.\n{team_name} has disabled Smart Sync, so you\u2019ll be signed out of Dropbox and online-only files will be\ndownloaded to your hard drive next time you sign in.",
+ "ipR70/": "Or, cancel your subscription by following these steps:",
+ "ipcJZm": "The group name should be under {max_len} characters",
+ "ipgitK": "Update billing information",
+ "ipw6gY": "Send files to Slack from Dropbox",
+ "ipz8kN": "{price_per_year} per licence over the course of a year.",
+ "iq/tnl": "Please update your billing information",
+ "iqApHe": "Thanks for your feedback",
+ "iqMtOi": "Dropbox",
+ "iqQKbT": "Move to vault",
+ "iqXxFK": "250 characters maximum",
+ "ir1qaF": "We\u2019re trying to log you in automatically",
+ "ir988d": "Next month",
+ "irVxtF": "Couldn't remove you, but it might be a one-off. Please try again.",
+ "irebz4": "Keep work flowing \u2013 on the go",
+ "is1Jb0": "{count, plural, one {Pasted {count} item.} other {Pasted {count} items.}}",
+ "is2NQv": "Find the plan for you",
+ "is9FMB": "Your free trial period won\u2019t be affected, and we won\u2019t charge you until after your free trial ends.",
+ "isbc69": "Just so you know, you can restore {display_name}\u2019s account for 7 days. You can also invite 1 more member at no extra charge.",
+ "isuPZb": "Can I combine Dropbox accounts?",
+ "itZX4g": "Publish video",
+ "itgepM": "Keep doing your best work, without interruption",
+ "iu1NNY": "This item will be deleted, are you sure?",
+ "iuQXiL": "Advanced security features and admin controls",
+ "iud2fN": "No inclusions",
+ "iuxkKs": "Sales template",
+ "ivKW9K": "{trademark_businesss}",
+ "ivclfb": "Traffic and insights",
+ "iwO85Q": "Doing this would put you over capacity. Families can have up to 6 members.",
+ "iwdwdQ": "You\u2019ll be charged {total_price} {schedule} until you cancel your subscription. Previous charges won\u2019t be refunded when you cancel unless it\u2019s legally required. Your payment data is encrypted and secure. All amounts shown are in {currency}.",
+ "iwfQCV": "This usually takes about 15 minutes, but it could take a few hours if you have a lot\n of files in your Dropbox account. You can go ahead and close this window. Rest assured,\n recovery will continue at our end. We\u2019ll email you when your files are ready to\n use again.",
+ "iwxaCb": "Keep the device approved",
+ "ix4+1x": "Choose your space",
+ "ix7pHj": "Or add groups to this team folder.",
+ "ixnIo5": "{plan}",
+ "iy/Jfm": "Cancel",
+ "iylQou": "(including {tax,number,::percent .##} tax)",
+ "iyqtlQ": "Settings",
+ "izeluw": "Grid",
+ "izfEGW": "{remainingLicenses,number} / {totalLicenses,number}",
+ "izgCLA": "Sending invitations",
+ "iznC+q": "Open 'Manage apps' page",
+ "j+AeKy": "Untitled",
+ "j+Fl5g": "{policyName}. Open this policy.",
+ "j+Ib+Z": "From {date}, we\u2019ll charge you {scheduled_total} per month on your IBAN ending {last4}.",
+ "j+fUVt": "Just a click away",
+ "j/dwP3": "Create \"{group_name}\"",
+ "j0CRG2": "Done",
+ "j0m31P": "Upgrade plan",
+ "j0qRv4": "Toggle comments sidebar",
+ "j0yizE": "General information",
+ "j16O/G": "Connected apps",
+ "j1F9Ic": "Forgotten PIN?",
+ "j1nB7Q": "illustration of a man looking at his phone",
+ "j1xV3U": "Close",
+ "j28kk5": "When someone asks to join your team, you\u2019ll see the request here.",
+ "j2wHLa": "Folder hierarchy",
+ "j3YrhH": "Ubuntu 14.04 or higher (.deb)",
+ "j3fR4g": "Archive campaign",
+ "j500HF": "Hide deleted files",
+ "j5NUj6": "This country change isn\u2019t supported.",
+ "j5Qday": "Go to my account",
+ "j5oJ6S": "Unfollow",
+ "j6GFFI": "With {dropbox_paper}, you can collect ideas, create project timelines, assign tasks and review work in real time, from anywhere.",
+ "j6QRoN": "Enter here",
+ "j6si/H": "Sharing settings",
+ "j7O6M6": "Create and continue",
+ "j7hJG8": "Find docs without leaving Slack, and post those links directly to your team.",
+ "j7yig7": "Moved files",
+ "j8bMOR": "Your plan has been automatically downgraded. If you want to continue using it, it only takes a few minutes to add your billing information.",
+ "j8t1Zs": "Yesterday at {timestamp}",
+ "j97pkN": "Other",
+ "j9LwK9": "The passwords don\u2019t match. Please try again.",
+ "j9MFMq": "Allow",
+ "j9UMyF": "Edit",
+ "jA/byg": "With my team",
+ "jA9MMw": "End session",
+ "jAFBRn": "Learn more about {plus}",
+ "jAzCAz": "can edit",
+ "jBym19": "Disable",
+ "jCcjRy": "Loading\u2026",
+ "jCl4y0": "Add teams so you can coordinate settings such as security, billing and more.",
+ "jCptbf": "Manage {team_member}'s files",
+ "jD02CF": "Copy selected file(s)",
+ "jDD++i": "Content stays within the team",
+ "jDHUZe": "You don\u2019t have access to this content",
+ "jDm+wB": "If you don\u2019t recognise this ticket, report it to Dropbox to keep your account secure.",
+ "jE16E1": "Administrative control of {team_name} data",
+ "jEEe3K": "Help to restore and delete files",
+ "jEKnhO": "From Dropbox",
+ "jENkzW": "Cannot add folder. Your Dropbox account is full.",
+ "jETKiQ": "Your Dropbox account space is full",
+ "jF/OmO": "Will you need more than {standard_space_short_form} of space?",
+ "jGBZwN": "Team productivity",
+ "jGBxEZ": "Exceptions list",
+ "jGSF08": "Manage access",
+ "jGSFH4": "Payment details",
+ "jGeIrr": "External branding",
+ "jGhCkM": "Change password",
+ "jGmwKF": "Sign in",
+ "jGw0V/": "{filename} will be gone forever and you won\u2019t be able to restore it. Permanently deleting items won\u2019t free up space.",
+ "jHPjnH": "Invited {user_email}.",
+ "jHXRss": "Couldn\u2019t remove member. Try removing them again.",
+ "jHar3s": "Date",
+ "jIDIpq": "You viewed",
+ "jId+M1": "Version history",
+ "jIeV0e": "That email address doesn\u2019t look quite right",
+ "jJAZ91": "There was a problem disabling your security key.",
+ "jK2/my": "Cannot invite them with that email address",
+ "jKUEit": "The secondary team will become part of your team, and merge their content, members and billing.",
+ "jKcvSu": "New groups",
+ "jKfr1E": "Please enter a comment",
+ "jKmo7D": "Your local currency has changed. Your selected plan\n is {monthly_per_user}/user/month ({annual_price} charged yearly).\nYou\u2019ll only be charged if you don\u2019t cancel your trial before it\nends on {trial_end_date}.",
+ "jLOGFI": "No permissions to share",
+ "jLgzr1": "Primary team",
+ "jLtv48": "Last used",
+ "jMAAU2": "{b}You can view your linked apps here.",
+ "jMSLzz": "Log out of Dropbox",
+ "jMyZGp": "Payment method successfully updated.",
+ "jN1kbT": "{value, plural, one {{value,number} day ago} other {{value,number} days ago}}",
+ "jN5OfV": "People with this link can edit",
+ "jN5Zg4": "Coordinate",
+ "jN8EKr": "Preview link",
+ "jNOY0x": "Add custom branding by choosing a background image and logo for your transfer\u2019s download page.",
+ "jNlrhT": "Click Add to enable",
+ "jO/Gk0": "View groups",
+ "jO8iAS": "View and attach Dropbox files directly in Canvas.",
+ "jOHkqV": "Your move will take about 25 minutes. Some features in Paper may be disabled during that time.",
+ "jP8rwL": "Phone support",
+ "jPSPu2": "This applies to docs shared in the future but not to any docs shared with people outside your team before external sharing was disabled. You can see docs that have been shared with people outside your team in the",
+ "jQ1eDP": "Your Dropbox {plus} plan was activated with a licence key. Your next licence key will be activated on {date}.",
+ "jR0VEh": "Keep the team and purchase {trademark_business} instead",
+ "jR3Yhq": "{active_exports, plural, one {{active_exports} ready} other {{active_exports} ready}}",
+ "jRCvZ9": "64-bit:",
+ "jRRC91": "View invitations",
+ "jRRNIj": "Need to speak to us?",
+ "jRW/3Y": "Anyone in your {trademark_business} team with this link and password can view the file.",
+ "jRdmw9": "name@example.com, example.com",
+ "jRg9vc": "Subject",
+ "jRjIMn": "Fonts",
+ "jS+Fj0": "Sort in descending order",
+ "jS04DJ": "Manage your {biller} subscription",
+ "jSaHiA": "Your account won\u2019t be merged with {team_name} and Dropbox will remove the\n{work_email} secondary email from your current account.",
+ "jSbM1a": "Dentsu Inc logo",
+ "jSmn2k": "Give specific people permission to edit or have read-only access for individual folders.",
+ "jTnbLy": "Account deleted, but you can restore it",
+ "jUFAJz": "Restore & delete",
+ "jURPvf": "{plus_storage_tb} ({plus_storage_gb})",
+ "jURpTR": "Individualised support to help admins manage at scale",
+ "jUzA4E": "Learn about Showcase",
+ "jVeAq0": "Unsynced folders don\u2019t start on members\u2019 computers",
+ "jViA8I": "1. Review subscription",
+ "jW+e5B": "Not sure what to add?",
+ "jWNxHL": "Changed setting to",
+ "jWvR3a": "Shared",
+ "jXCqSS": "{trademark_passwords}",
+ "jXF9I9": "Would you like to open {file_extension} files with {web_editor_name} by default?",
+ "jXQ62U": "{cost} per month",
+ "jXim1P": "You don\u2019t have permission to rename files in this folder.",
+ "jXqkXG": "Drag and drop files into this window to upload.",
+ "jXr05+": "Cancelling trial...",
+ "jYhsC6": "Something went wrong",
+ "jZ8v61": "When users in {domain} are invited",
+ "jZ93So": "Select Add.",
+ "jZMXVZ": "If you think someone else is trying to access your Dropbox account, please let us know.",
+ "jZP27H": "Add from Dropbox",
+ "jZUA7r": "This file cannot be previewed because you are offline",
+ "ja3xlk": "Creative brief \u2192",
+ "ja7gF8": "1. Make sure you have the Dropbox app from the Edu Apps marketplace, or search for it from your admin account.",
+ "jaE2Yv": "Your Family Room folder will be dissolved. All members will receive a copy of the folder in their Dropbox.",
+ "jaUndl": "3 months",
+ "jabBjO": "Stop syncing files from this folder?",
+ "jabE//": "VAT number (optional)",
+ "jauVAp": "With a team",
+ "jb484P": "{vacuuming_policy_max_days} days of file recovery",
+ "jbUImH": "Your current plan is {label} {size}",
+ "jbf/SH": "Add a Zoom meeting",
+ "jdahlv": "Cancel",
+ "jdfLE9": "Recover files",
+ "jdhQTU": "Cancel invitation",
+ "jdk7Bi": "from creation",
+ "jdnaZR": "Deleted files cannot be added to the clipboard",
+ "jdnhLz": "text me the link",
+ "jdwyMe": "Remove from your organisation?",
+ "je8Wzp": "Bring Slack and Dropbox together",
+ "je9GiC": "Revenue driving:",
+ "jeeivT": "Set as default",
+ "jf5VEX": "See details.",
+ "jfFpnu": "Partial",
+ "jfbMQx": "Microsoft details",
+ "jfkoqi": "Make your password a bit harder to guess \u2013 add more numbers, symbols or characters.",
+ "jfyCT3": "Company Inc.",
+ "jgGyr5": "You\u2019re a member of the {team_name} Dropbox account.",
+ "jggo6V": "Join team now",
+ "jgsbng": "May",
+ "jh+GyF": "{count, plural, one {Permanently deleted {count} item.} other {Permanently deleted {count} items.}}",
+ "jhCM8b": "{count, plural, one {Transfers with more than {count} file will take a long time to upload. Consider removing some files to send your transfer faster.} other {Transfers with over {count} files will take a long time to upload. Consider removing some files to send your transfer faster.}}",
+ "jhPyi8": "More space.",
+ "jhbnO0": "Audio files",
+ "jheC87": "close columns modify popover",
+ "jizcxx": "Add, join or instantly start Zoom meetings directly from Dropbox files.",
+ "jjZhiF": "Shared folders",
+ "jjaKZc": "Unlimited storage via Dropbox",
+ "jjd0Gl": "You\u2019re not able to leave the {team_name} Dropbox at the request of your admin. Please contact your admin for assistance.",
+ "jjwM34": "Members",
+ "jkI5tw": "Block",
+ "jkTXs0": "Please enter at least one valid email address.",
+ "jkeVcL": "When you leave:",
+ "jl3Ntn": "{name} turned on viewer info",
+ "jlNRKl": "Previous slide",
+ "jlf+zq": "{name} edited this file",
+ "jmxGJf": "{count, plural, one {Try {dropbox_plan} for free for {count} day when you sign up by {expiration_date}.} other {Try {dropbox_plan} for free for {count} days when you sign up by {expiration_date}.}}",
+ "jnxHng": "Close",
+ "joWGiE": "New request",
+ "jofRGL": "or use existing Dropbox account",
+ "jowUtP": "Try again",
+ "jp8dbl": "Not started",
+ "jpA9+q": "{count, plural, one {Anyone with this link can edit the file. Expires in {count} day.} other {Anyone with this link can edit the file. Expires in {count} days.}}",
+ "jpCK4T": "Edit in {editor_with_lock_string}",
+ "jpM7HQ": "You\u2019ll need to sign in on your computer before you can use this device.",
+ "jqBL8f": "Please enter a valid bank account number.",
+ "jqIjGb": "Upgrade to {dropbox_plus} for more space",
+ "jqiXoh": "Open with",
+ "jqkqwe": "Deleted Family Room folder",
+ "jqqAP2": "This file cannot be previewed",
+ "jrZxPR": "Copy to Paper and make changes or ask for feedback.",
+ "jrkcSi": "Select your content and be ready to sell it to the world within minutes.",
+ "jrp8mr": "Viewing results for\u00a0{query}",
+ "jrzeLR": "Advanced sharing",
+ "jsH+sg": "Learn more about file recovery",
+ "jsKn7O": "From",
+ "jsRFFw": "Weren't expecting that?\n No worries, feel free to close this page and go back to whatever you were doing.",
+ "jsWdPR": "Dropbox makes it easy to send files big and small, and collect everyone\u2019s comments in one place. Viewers can access links and preview over 150 file types, as well as add comments and read yours \u2013 even if they don\u2019t have a Dropbox account.",
+ "jt1FPT": "Let\u2019s go",
+ "jt3SDw": "Name or email",
+ "jtRued": "No, thanks",
+ "jtc7VA": "Folder activity",
+ "jtf26E": "User research report",
+ "juL9cJ": "Update access to this file?",
+ "juQS1k": "Launch from Dropbox",
+ "jv7Bnm": "We\u2019ll alert you if a member shares sensitive information outside your team. Make sure that scanning and labelling is on too.",
+ "jvUwnG": "This file is password protected",
+ "jvXMKz": "2 of 3",
+ "jvj9Gv": "Create external sharing report",
+ "jvqk4F": "Protect your peace of mind",
+ "jvxZmK": "Learn how to manage cookies in Microsoft Edge.",
+ "jw1rtm": "Limited access",
+ "jwCux9": "{number} more",
+ "jwL3/i": "Remove admin",
+ "jwZnwu": "Keep work moving \u2013 even when you\u2019re on the go \u2013 with simple mobile sharing.",
+ "jx/RSW": ". If it still doesn\u2019t work, please try a different verification method or ",
+ "jxjvN9": "We\u2019ll let the owner know whenever you change these settings",
+ "jybGUg": "Loading",
+ "jyiB1b": "{count, plural, one {Try {dropbox_plan} for free for {count} day when you sign up by {expiration_date}*.} other {Try {dropbox_plan} for free for {count} days when you sign up by {expiration_date}*.}}",
+ "jzlUGo": "No boards found. Try different keywords.",
+ "k+KZGw": "No credit card needed",
+ "k+pBNG": "Something went wrong. Try importing the CSV again.",
+ "k+wEik": "Security check-up tool",
+ "k/ikjr": "Supplied by your identity provider. Members will be redirected to this page after they log out.",
+ "k0bKME": "Support admins can help members with limited tasks, including password resets. Are you sure you want to continue?",
+ "k12g71": "({size_in_megabytes} MB)",
+ "k1SvNl": "Convert {display_name}\u2019s account to individual Dropbox Basic account",
+ "k1tyt5": "Request declined",
+ "k2WBHu": "Agree",
+ "k2bVak": "Loading your recent items",
+ "k2kOPm": "Trusted devices revoked.",
+ "k30SzK": "Off",
+ "k3Efe1": "How much space has your team used?",
+ "k3LUkX": "Anyone in your Dropbox team with the link can view this file",
+ "k471uF": "The new team might have different settings for things like security or groups that members will need your help setting up.",
+ "k48Xfi": "{count, plural, one {Move {count,number} member to {team_name}?} other {Move {count,number} members to {team_name}?}}",
+ "k4it0G": "Hi, {first_name}, Before you cancel your {dropbox_trial_plan_name} trial, please select a reason below or write your own response at the bottom:",
+ "k4wMx0": "Migration scheduling failed. Please try again later.",
+ "k59Ekd": "Add an email or domain",
+ "k5IBRK": "Unable to complete changes. Please try again.",
+ "k5ONol": "Facebook message",
+ "k5WYg5": "email@example.com",
+ "k5rVZH": "name@email.com",
+ "k5x+Be": "Allow them to connect as many devices as they want to",
+ "k6iceH": "2 GB of storage space",
+ "k7NT+h": "Advanced sharing and sync",
+ "k8Mc9B": "Protect your transfer with a specific expiry date up to 1 year away",
+ "k8PU/Y": "See what files are about without opening them. Preview files in Slack.",
+ "k8RbN0": "By request",
+ "k8YyVZ": "All actions you perform while signed in as {name} will be recorded in the activity log.",
+ "k90RIN": "That didn't work for some reason",
+ "k96ADH": "Size of your organisation",
+ "k9A6sA": "Priority email support",
+ "k9LVWK": "Manage team to-dos with task assignments, due dates and reminder notifications.",
+ "k9ZJuB": "Keep this name as short as possible. This is the name that will be displayed to team members on all platforms. Changing your team name will rename the Dropbox folder on all team members\u2019 computers.",
+ "kA8gdS": "Tasks",
+ "kALZQB": "The maximum amount you can send in a single transfer",
+ "kAM8sM": "I can\u2019t reset my PIN this way",
+ "kAvWhK": "You\u2019ve lost the additional space you\u2019ve been using and access to powerful features such as the admin console, extended version history and Smart Sync. Add your billing info now and you can pick up where you left off.",
+ "kBJj0f": "There was an error whilst uploading your file.",
+ "kBU+3Q": "Your account will be downgraded to {dropbox_basic} and you\u2019ll lose access to {trademark_family} storage and features.",
+ "kBkLSN": "Restoring\u2026",
+ "kBx05Z": "Cancel your {trademark_business} plan",
+ "kBxooo": "Organise team members by the groups they work in. Then give access to everything they need \u2013 and nothing they don't.",
+ "kBy1Ss": "Vault has been deleted",
+ "kC/bFO": "Illustration of an upgraded admin console.",
+ "kC5IWs": "Merge into a primary team",
+ "kCFv91": "To",
+ "kCeQQa": "Choose a different folder",
+ "kCkFri": "Feb",
+ "kDN/V9": "deleted team folder",
+ "kDhNGp": "Did you know you can cancel your account instantly without the need for an agent to\n assist you? You must be the team admin of the account to cancel your Dropbox\n subscription. Find out who your team admin is.\n To cancel, sign in with your team admin account and click\n Cancel your Business subscription\n to be taken directly to your cancellation page.",
+ "kDhrxK": "In order to finish uploading {filename}, you need to add more storage to your Dropbox.",
+ "kDkfmv": "Copying a folder into itself isn\u2019t allowed.",
+ "kE1eOU": "Sophisticated control and security features",
+ "kE7BEY": "Activities:",
+ "kEPEG/": "Who can invite?",
+ "kEjniT": "One plan for everyone",
+ "kF0BIo": "Select type",
+ "kF9jCS": "Sync",
+ "kFIgsQ": "This gives the reseller access to the admin console as an administrator.",
+ "kFNhCf": "Set a custom space limit for this member. {first_name} is currently using {usage}.",
+ "kFTZ1t": "How teams of all sizes use Paper",
+ "kFn6nV": "Can\u2019t find it here? Check out our Help Centre",
+ "kFyzJs": "You",
+ "kG/lBo": "Rotation",
+ "kG5dg/": "When a hold is released, we stop holding copies of any files these members edited",
+ "kG9/VJ": "Your team isn't sharing folders with {userFullNameOrEmail} any more.",
+ "kGQG4U": "WARNING: You\u2019re working in production.",
+ "kGTK+0": "Your current {billing_schedule} total is {total}.",
+ "kGj+8t": "Create space used report",
+ "kGrR3C": "You can decrease costs by removing licences that your team isn\u2019t currently using.",
+ "kGwAJO": "Sample email",
+ "kH07jA": "Manage membership",
+ "kH2CbI": "Account access and security",
+ "kHlg2I": "Delete",
+ "kHube8": "This app no longer has access to your files because you deleted its app folder. You will need to reinstall the app for it to work again.",
+ "kHypS6": "Continue",
+ "kIBlZy": "Below 50",
+ "kIWJ9o": "{count, plural, one {You\u2019ll be charged {new_amount_with_tax_rate_str} to add {count} licence pro rata for the current billing period. From {next_billing}, your new {schedule} total will be {total_amount_with_tax_rate_str}.} other {You\u2019ll be charged {new_amount_with_tax_rate_str} to add {count} licences pro rata for the current billing period. From {next_billing}, your new {schedule} total will be {total_amount_with_tax_rate_str}.}}",
+ "kIc7/9": "{standard_space} of secure storage space",
+ "kIjBHp": "Offload the busywork",
+ "kIpt1I": "Invite members",
+ "kIsBrZ": "Send up to 100 GB per transfer, with customisation options",
+ "kIwRvQ": "End tour",
+ "kJ19st": "Your group must have a name.",
+ "kJ1NVK": "Move items?",
+ "kJA8ZB": "Your request to join {team_name} has been sent",
+ "kJNmy9": "We didn't find any files or folders that will cause syncing problems in either of your Dropboxes.",
+ "kJUE9p": "Sync",
+ "kJlFFC": "Keep working smoothly with {dropboxProfessional}",
+ "kJo5Yt": "Created by",
+ "kJuUzF": "Show admins",
+ "kKQZ9z": "Manage files",
+ "kKQbe+": "
{name},
Which account would you like to connect to the computer {device_name}? If you didn\u2019t request this, please close this browser tab.
",
+ "kKbOL4": "Members of the folder with this link can view the folder.",
+ "kLiPVQ": "Events",
+ "kLkljh": "Videos",
+ "kLq59d": "Device approvals",
+ "kMDxiK": "Folder",
+ "kMNOpp": "Download Dropbox for Mobile now",
+ "kMRv0l": "Shared folders you don\u2019t own",
+ "kMTd0v": "Notify me",
+ "kMZoFx": "By confirming, the scheduled change will be cancelled.",
+ "kMisuu": "{license, plural, one {
/ user,
starting at {license} user
} other {
/ user,
starting at {license} users
}}",
+ "kMzWSX": "History",
+ "kN2jS7": "I signed in successfully",
+ "kOBO/B": "There was a problem completing this request.",
+ "kOMHR0": "{count, plural, one {{count} more member} other {{count} more members}}",
+ "kONgwJ": "Your version of Dropbox was purchased through a Dropbox reseller, so you\u2019re not able to merge into another team.",
+ "kOQNUE": "Get started",
+ "kOXRXq": "Open classification",
+ "kOb587": "/",
+ "kOdY2i": "Replace original",
+ "kP+cJM": "Your team will become part of the primary team",
+ "kPvGgb": "I agree to the Dropbox Business Agreement",
+ "kPvon3": "By downgrading your account, you will also lose access to these important features:",
+ "kQAuKf": "Smart Sync is available on selected Dropbox plans",
+ "kQDw1e": "This Dropbox {plus} plan was activated with a licence key. The plan will be renewed on {date}.",
+ "kQgvhd": "You\u2019re the owner",
+ "kRLsxP": "You moved {single_item_name} from {src_folder} to this folder",
+ "kSeZc+": "Incompatible files and folders",
+ "kTKmYr": "How can Paper help your team?",
+ "kTq6n5": "Save settings",
+ "kTr/8f": "Select all",
+ "kU/sNc": "example@example.com",
+ "kU2r/y": "Try again",
+ "kU4PMt": "Too many invalid codes. Try again in a few minutes.",
+ "kUkCc0": "Add more",
+ "kVEMPr": "Remove",
+ "kVKiLA": "Submit",
+ "kVqbiG": "Cloud editors",
+ "kVwtlK": "This file was added to the {card_name} card in {list_name}",
+ "kWJg9m": "Use the security check-up tool",
+ "kWMR2U": "2. Click Share and select Canvas.",
+ "kWU7Pc": "You\u2019ll save {savePercentage,number,::percent} per licence over the course of a year.",
+ "kWjJlf": "Please enter a valid billing postcode.",
+ "kWp5fF": "Mar",
+ "kWt7lm": "Millions of people use {dropbox_plan} to get more done. With {dropbox_plan} you get:",
+ "kXFsGC": "Create new request",
+ "kXN5sP": "You are also the admin of {team_name} {trademark_business} team. Please contact your account team to cancel your subscription.",
+ "kXptr+": "The owner of some of these shared folders isn\u2019t a member of {team_name}.",
+ "kXrb9A": "Signing out won\u2019t delete any of your files.",
+ "kYNT0T": "Here's the plan we recommend",
+ "kYTbas": "Sent to {name}",
+ "kYZMk+": "Off by default",
+ "kZv7c4": "{numOfMembers, plural, one {{numOfMembers,number} member} other {{numOfMembers,number} members}}",
+ "kaL/cd": "The number of users associated with your plan.",
+ "kac+ml": "Sign in",
+ "kak6Po": "Disconnect {app_name}?",
+ "kayNoT": "Company-managed groups",
+ "kb+66G": "Very strong",
+ "kbGAuG": "PIN and auto-lock to protect final contracts and legal docs",
+ "kbsmZh": "Great!",
+ "kc7uwV": "FamilyPlanOverviewLink",
+ "kcn535": "Compress, edit or sign PDFs. Convert to Word, PowerPoint, Excel and JPG from your browser.",
+ "kd4HJI": "How do I check the remaining space on my Dropbox account?",
+ "kdfCsg": "Search meeting recordings and transcripts",
+ "kdizeA": "Couldn\u2019t find the file.",
+ "kdkdHg": "You\u2019ve been invited, {first_name}. Join the {team_name} Dropbox account and work better together.",
+ "kdoJ8S": "Buy it",
+ "keT34m": "If you need help with a billing issue on your account, please sign in first.",
+ "kej4BW": "Stay with {dropbox_family}",
+ "kf09Vd": "{percentage,number,::percent .##} discount",
+ "kfg1Pg": "Oops! It looks as if you may have forgotten your password. Click here to reset it.",
+ "kfhlgf": "Version history",
+ "kfohK7": "1 hour",
+ "kg9ICw": "Cell contents look incorrect",
+ "kgnA+o": "{total_licenses}",
+ "kgnHFO": "(you)",
+ "kgtBuL": "Turn off",
+ "kguHb6": "Syncing",
+ "kh/GYX": "{count, plural, one {Contact your {team_name} admin to upgrade the team} other {Contact your {team_name} admins to upgrade the team}}",
+ "kh5DKh": "Identity provider sign-in URL",
+ "kh62rs": "Pin \u201c{name}\u201d to...",
+ "ki4GVX": "Approving membership request for {email}.",
+ "kiIqI2": "{name} renamed {single_item_name_prev} to {single_item_name_next}",
+ "kiNZb2": "View file activity",
+ "kis3VH": "Canvas",
+ "kj4Hlb": "Following",
+ "kj7lJe": "Continue to editor",
+ "kjKY36": "We\u2019re sorry you\u2019re thinking of leaving us, {first_name}. By cancelling, you\u2019ll lose the following features:
{transfer_send_size_limit} send size on transfers
Custom branding and logo
Custom expiry dates
Passwords to protect your transfer
",
+ "kjL8Gu": "Save signed documents",
+ "kjnuLN": "General",
+ "kkDDtH": "Because you\u2019re using a company email address with your Dropbox account, the {team_name}\nadmins would like you to join the shared {trademark_business} account or change your email.\nWhat would you like to do? Learn more",
+ "kkTRZE": "Work on your Microsoft Office files with others by connecting Microsoft Office and Dropbox. All edits are automatically saved to Dropbox in real time.",
+ "kkZFs+": "computer",
+ "kl3TP5": "Retail",
+ "kl814b": "What is {trademark_business}?",
+ "klM4mG": "The online upload limit is 300 MB. You can upload larger files with the Dropbox desktop application.",
+ "klOp/1": "Uploading file to Canvas...",
+ "kleJEv": "Leave group",
+ "klqzm6": "Invited {user_email}.",
+ "klwYHA": "Minimum 6 characters",
+ "km+4dK": ".{extension} files can\u2019t be previewed from an archive file.",
+ "kmb+og": "Only team admins.",
+ "kmgDsS": "This helps us suggest better ways to use Dropbox.",
+ "kn0aTF": "List",
+ "knOTX9": "Dropbox automatically backs up your files, pictures and folders in one secure place.",
+ "knPNIT": "Show in File Explorer",
+ "knoSPB": "Only team admins have permission to create this report.",
+ "ko38VZ": "For productivity",
+ "koMmbb": "{count, plural, one {Anyone in the {trademark_business} team with this link and password can view the file. Expires in {count} day.} other {Anyone in the {trademark_business} team with this link and password can view the file. Expires in {count} days.}}",
+ "kocx8E": "User presenting a file in Zoom from Dropbox.",
+ "kopGCT": "Use at least 8 characters and make sure it's two bars strong",
+ "kou/7m": "Invited {email}.",
+ "kp9e20": "Only you can view this link.",
+ "kpH+QX": "Take a moment to review all the progress you\u2019ve made.",
+ "kq/D9n": "Send files by email, create new docs, request signatures with HelloSign \u2013 directly from Dropbox. Spend less time switching between apps and work with the tools you use every day, in one place.",
+ "krtLLj": "Credit card required",
+ "ksdkTA": "Suspend {display_name}",
+ "ksjqrM": "Anyone in your Dropbox team with the link can view this file. Downloads disabled.",
+ "kt0bw5": "From team",
+ "kt7BVE": "My Dropbox",
+ "ktJrGc": "Over 200,000 companies use {trademark_business} every day for work.",
+ "ktpG9L": "Save \u2018{name}\u2019 to my Dropbox",
+ "ktpzw0": "Try {product_name} for free",
+ "ku7o1P": "Breadcrumb overflow",
+ "ku8IMl": "Activate",
+ "kuFRq0": "Only people invited",
+ "kuOXRg": "You have selected the maximum number of users allowed using this page.\n You can contact us if you need additional users.",
+ "kuUQ0r": "To get set up, enter a new email address for your personal account. Then you can decide which files will live in each account.",
+ "kuja1y": "The folder name can\u2019t end with a dot (.)",
+ "kvVtLe": "Two-step verification disabled.",
+ "kvY6vL": "User management admin",
+ "kvj0Bl": "There was an internal Dropbox error, but we can still help you use Rewind.",
+ "kvwOAp": "Archive version",
+ "kw0vLh": "Send invitations",
+ "kwG+lC": "How should your files sync?",
+ "kwHYHw": "Press Esc to exit fullscreen",
+ "kwKKh2": "Do your best work with {dropboxProfessional}",
+ "kx/Ja1": "ISP",
+ "kx4aSx": "View all",
+ "kxLiiI": "Remove from my Dropbox account?",
+ "kxsLrJ": "or purchase {trademark_business} now.",
+ "ky7rEH": "Monday",
+ "kyfaP9": "Add another one",
+ "kzDJ/C": "{member_name} can still access this folder",
+ "kzTnND": "{numYears, plural, one {Get {discount,number,::percent .##} off {numYears,number} year of {dropbox_plan} when billed yearly*. This offer expires on {expiration_date}.} other {Get {discount,number,::percent .##} off {numYears,number} years of {dropbox_plan} when billed yearly*. This offer expires on {expiration_date}.}}",
+ "l+D8z5": "Amount of data",
+ "l+Lp/V": "Need help?",
+ "l+Mf7Y": "Allows editing.",
+ "l+Y42I": "Add email addresses to send out signature requests.",
+ "l+e9nl": "Stay organised and on track from pre- to post-production. Keep everything your team needs in one place \u2013 scripts, music, video, timelines and budgets.",
+ "l+zfU9": "Back to bank",
+ "l/9ohN": "Invalid password",
+ "l/IULL": "iPhone",
+ "l/XSM9": "All",
+ "l/akBu": "Remove filter",
+ "l/c1nt": "Sub-total",
+ "l/iY2C": "when billed monthly",
+ "l/lvUk": "Save to my Dropbox",
+ "l/r0sF": "Browser:",
+ "l08JFQ": "Invite {user_name}",
+ "l0PRXC": "Nothing happened on this day",
+ "l0ZD6o": "{trademark_business} provides three plans to fit your team\u2019s needs. The Standard plan gives your team {space} of shared storage. For teams needing more space, the Advanced and Enterprise plans provide as much space as you need.",
+ "l0i2GT": "Upload",
+ "l0ld2A": "There was a problem displaying your policies. It\u2019s probably a one-off error at our end.",
+ "l13UyS": "Once you\u2019ve filled out the CSV, import it.",
+ "l13WV9": "{name} turned on commenting for {entity}",
+ "l1F+Fk": "As much encrypted storage as needed",
+ "l1R9Tk": "Transfer settings",
+ "l1acJS": "Settings",
+ "l1qgCR": "Already a member",
+ "l1su7t": "Dropbox created. Now download the free desktop app",
+ "l2Mi0q": "Remove your access to this file?",
+ "l3EMEK": "Create transfer",
+ "l3ZNyl": "{name} rolled back {single_item_name}",
+ "l3iAJV": "Go to Trello",
+ "l3jFkr": "Try free for {trial_days} days",
+ "l3mcOc": "Link to restart the download",
+ "l46MMy": "Edited",
+ "l4GYZh": "{supportLanguage} support isn\u2019t currently available. Try chat or email for additional help.",
+ "l4OzW8": "Default workspace updated.",
+ "l4t3NF": "You\u2019re already using this as a secondary email. Remove it",
+ "l5AyQn": "Sorry, your phone code has expired. Please log in again.",
+ "l692Qy": "Share",
+ "l6HDHG": "An image of Apple and Microsoft logos to demonstrate that Smart Sync works on both operating systems",
+ "l6L9q8": "Creating new shortcut",
+ "l6fwd2": "{trademark_business} accounts, pricing and more",
+ "l6rBEu": "Control who can see and join your Dropbox team",
+ "l7Ekii": "Download log",
+ "l7h1V3": "Do you want to delete {file_name}?",
+ "l7h9oT": "Cover image of a product for sale.",
+ "l7p3Z8": "Failed to submit feedback. Please try again.",
+ "l81CUR": "Couldn\u2019t retrieve shared folders. Reload the page to try again.",
+ "l829x/": "false",
+ "l8BtlU": "Get space for all of your photos, videos and projects in one place.",
+ "l8Iecq": "Centralise team content",
+ "l8iaTW": "Action",
+ "l8r7nu": "Open",
+ "l98l5t": "People can edit, delete, comment on and add the files to their Dropbox",
+ "lAN2y9": "Plan your project",
+ "lAgVxS": "Company-managed group",
+ "lBA2wJ": "Documents",
+ "lBUQ9Z": "Prevent new users from seeing this ad",
+ "lBd15f": "You cannot change plans at the current time.",
+ "lBq44Z": "Save changes",
+ "lButVe": "This alert is triggered when a team member moves a large amount of content.",
+ "lDCOvP": "Couldn\u2019t save watermark. Please try again later.",
+ "lDS3dm": "Watermarking",
+ "lDhFjo": "Delete link",
+ "lEOstJ": "Joining...",
+ "lElTYu": "{member_name} can still edit this folder",
+ "lF/7ht": "It looks as though your DocuSign account does not have permission to send envelopes. Please contact your DocuSign admin.",
+ "lFJXM6": "{count, plural, one {Expires in {count} minute} other {Expires in {count} minutes}}",
+ "lFOYmy": "How to resolve a 'Banned links: shared link or file request not working' error message",
+ "lFR1Ef": "Do today",
+ "lFkZSV": "Working all over the world with Lonely Planet",
+ "lG1K3n": "Showing your recently accessed items",
+ "lG9gS/": "Enter the security code generated by your mobile authenticator app to make sure it\u2019s configured correctly.",
+ "lGGaj4": "Jan",
+ "lGKgGQ": "No members have space limits.",
+ "lGYwqE": "Select Create or Create new file from any folder in Dropbox.",
+ "lGkgJP": "Turn on alerts for ",
+ "lGpNw6": "Cancel link",
+ "lGq+yR": "Anyone in your Dropbox team with the link and password can view this folder. Downloads disabled.",
+ "lH2xzI": "You don\u2019t have permission to export docs.",
+ "lH7b+k": "Alerts",
+ "lHdaP6": "Lock editing",
+ "lHeu8B": "What is the difference between {trademark_business} Standard and {trademark_business} Advanced?",
+ "lIUM0e": "Unlock editing",
+ "lIWNFp": "Couldn\u2019t report this ticket. Please try again.",
+ "lIkHQt": "Ask to unlock",
+ "lJ0c1o": "Only customer support can restore this team member\u2019s access.",
+ "lJ8Pin": "It\u2019s hard work to impress a client. But Dropbox has your back \u2013 from first draft to final deliverable. Manage your time, your tools and all of your projects more efficiently.",
+ "lJEvbU": "Images",
+ "lJYRuM": "Retention",
+ "lJcU11": "Email your transfer to see who views and downloads it.",
+ "lJg1SY": "Restrict the number of devices per member",
+ "lKbROR": "PDFs",
+ "lL5U1Y": "Try free for {trial_days} days",
+ "lM4h1U": "You have a merge request that\u2019s in progress. Once it\u2019s complete, your team can send another one.",
+ "lMKjGJ": "Classification",
+ "lMd9CF": "Create unmanaged users report",
+ "lMeT1E": "Couldn\u2019t remove. Try again in case it was a one-off, or reload the page.",
+ "lMqVLz": "{num_suggested, plural, one {Thanks for your suggestion! We\u2019ve sent it to the team admin.} other {Thanks for your suggestions! We\u2019ve sent them to the team admin.}}",
+ "lMrq9s": "Example: ",
+ "lN11v3": "Security check",
+ "lN4p6H": "Link your team account",
+ "lN9om8": "Couldn\u2019t save changes. Try again, or contact us for help.",
+ "lNSexB": "Because this member was suspended when their account was in a deleted status, they\u2019ll still be suspended after the account is restored.",
+ "lNU//O": "Close modal",
+ "lO6IaQ": "Date format",
+ "lO7Hdy": "Your trial will end on {trial_end}. If you downgrade, your team will lose out on {space} of space, and your active team members will return to their initial space quota.{br}{br}If you want to keep using {trademark_business}, it only takes a few minutes to add your billing information.",
+ "lOT6IE": "You have unsaved changes.",
+ "lOd3yV": "Cancel plan",
+ "lPtN7+": "In order to remove your admin permissions, you must first give admin permissions to someone else on your team. You can do this by clicking the gear icon to the right of a team member\u2019s name and selecting \u201cGive admin permissions\u201d.",
+ "lQ5OJn": "Try Dropbox Plus to access your vault",
+ "lQqagN": "Member not found",
+ "lRG4Y3": "The {team_name} team will be permanently deleted and all members will be removed. Your team\u2019s folders will be converted to shared folders, nested shared folders will be flattened and your {team_name} groups will be deleted. Every member\u2019s account will be converted to a personal Dropbox.",
+ "lRIjKv": "{service_name} settings",
+ "lRkUos": "To add a team folder, you\u2019ll need to be an admin for both Dropbox and Salesforce Marketing Cloud.",
+ "lRm5uJ": "Your files are syncing again and you\u2019re good to go.",
+ "lS4c0W": "Billing information",
+ "lSIfyF": "Folder filter selector",
+ "lSeE1e": "A CSV report will be saved in your Dropbox Business Reports folder. We\u2019ll email you when the report is ready.",
+ "lSeM2c": "Select Google Docs, Google Sheets or Google Slides.",
+ "lSwz5n": "Deleted Paper doc",
+ "lSxVrY": "Got it",
+ "lTASPN": "Make sure you don\u2019t get charged for your Dropbox {trademark_plus} subscription",
+ "lTBbKl": "You control all subdomains except:",
+ "lTIn1A": "Something went wrong while uploading this file. The file name contains an invalid character.",
+ "lTKjEc": "We've sent you another code. It may take a few minutes to arrive.",
+ "lTOxVL": "{count, plural, one {{count} error} other {{count} errors}}",
+ "lTRVQL": "Share {folder_name}",
+ "lULsLt": "Anyone with the link and password can view this folder",
+ "lUcC9S": "Protect your user\u2019s accounts by using secure authentication methods such as two-step verification or SSO.",
+ "lUdY7W": "Limit who can be added as a member of this folder.",
+ "lUdlLb": "Avatar for {name}",
+ "lV7lqz": "Spot",
+ "lVEpBU": "Please enter the account holder\u2019s name.",
+ "lVUBzk": "You've only got {remaining_space} of space left, which might not be enough. Upgrade from 2 GB to 3,000 GB \u2013 and get extra features too.",
+ "lVmbnv": "If you\u2019d like to allow the use of third-party cookies, follow the instructions below for your browser.",
+ "lWGuPm": "viewed {ago}",
+ "lWPbUP": "We sent a code to your phone number ending in {last_two_digits}.",
+ "lWUf/y": "Replace a Canvas file if its name matches this one",
+ "lX6ewN": "Try free for 14 days",
+ "lXgJ7v": "{count, plural, one {Block {count,number} app?} other {Block {count,number} apps?}}",
+ "lXua//": "Admins",
+ "lYBgSZ": "Your team will be merged into this primary team soon. ",
+ "lYaw9D": "not added yet, in {location}",
+ "lYuN9K": "{initiator_name} (admin) initiated file recovery. This could take up to a\n few hours if there are a lot of files in your Dropbox account. You can go\n ahead and close this screen. Rest assured, recovery will continue at our\n end. We\u2019ll email you when your files are ready to use again.\n {br}{br}\n Please work with {initiator_name} to remove the ransomware from the\n infected computer.",
+ "lZ3sPD": "Your DocuSign account has restricted access",
+ "lZHT/D": "By cancelling {trademark_business}, you will lose:",
+ "lZWYYh": "{count, plural, one {Add {count} activity} other {Add {count} activities}}",
+ "last name": "Please enter a valid surname.",
+ "lbMG2X": "Search by your files\u2019 contents \u2013 without worrying about remembering the file names.",
+ "lbSEi4": "Once you accept the request:",
+ "lbndFp": "{num_suggested, plural, one {{num_suggested,number} invitation sent to admin.} other {{num_suggested,number} invitations sent to admin.}}",
+ "lcZCGf": "You ({name}) can edit",
+ "ldZiaj": "Gather up the important stuff",
+ "ldinwL": "Account transfer tool",
+ "ldvfuJ": "Before you can manage this domain, you\u2019ll need to complete one of these tasks.",
+ "le+3CZ": "No link created yet",
+ "leHpBD": "Your Dropbox will stop syncing",
+ "leM4vR": "This lets members download and use the Paper desktop app.",
+ "leOvZx": "Active",
+ "leZEaY": "Schedule a time for us to move your team\u2019s docs to Dropbox.",
+ "lefsX0": "{price}, excluding taxes",
+ "lehi6h": "Only enterprise admins can update",
+ "leoBCD": "Transfer data from your existing solutions with 1 billion included API calls per month to data transport partners. For additional data transport needs, please contact support.",
+ "lfdYKG": "{count, plural, one {Moved {succesfully_moved_files} out of {count} item to {folderName}.} other {Moved {succesfully_moved_files} out of {count} items to {folderName}.}}",
+ "lfq+HN": "Something went wrong. Please try again later.",
+ "lfrxLt": "Send or request documents for signature. Compliant with electronic signature regulations.",
+ "lfz3xn": "Available add-ons",
+ "lg43ur": "Enable or disable reseller support",
+ "lgSSK4": "Send or request documents for signature. Compliant with e-sign regulations.",
+ "lggZdA": "Multi-account login modal",
+ "lh5V7r": "monthly",
+ "lhKaOC": "Back",
+ "lhi2BY": "A drawing of a security guard preventing someone from entering a restricted area",
+ "lhk+nP": "After you create a retention policy, it\u2019ll appear here, so you can get reports or content.",
+ "lhzBKS": "Sharing {folder_name}\u2026",
+ "lhzTwh": "{id_string} will lose access to all {team_name} groups. {first_name}\u2019s account will be converted to a personal Dropbox.",
+ "li5upG": "Select next file (hold Shift to select range)",
+ "ligM/M": "Use your favourite collaboration tools",
+ "lisaeg": "Please enter a positive integer",
+ "lj3d2i": "No transaction history",
+ "lj4pan": "How Smart Sync works",
+ "ljMGdZ": "Work efficiently with teammates and clients, stay in sync on projects, and keep company data safe \u2014 all in one place.",
+ "ljVFCM": "Form for entering credit card information",
+ "ljW3Gx": "On by default",
+ "ljfv4E": "Lock editing",
+ "ljvDJ8": "Get documents signed with HelloSign, a Dropbox company",
+ "lkVLik": "\u2191",
+ "lkc6sQ": "Copy link",
+ "llnumb": "We\u2019ll create a HelloSign account for you automatically.",
+ "lnDPvm": "Close tip",
+ "lnNoXw": "Report started. We\u2019ll email you when it\u2019s ready.",
+ "lo/jpa": "preview this folder",
+ "loKd8B": "Teams you manage",
+ "loShlb": "Duration",
+ "loVWWm": "Marketing",
+ "lon/VQ": "Sent today",
+ "lpaQyB": "Remove admin privileges from {display_name}",
+ "lq7OOe": "What's the difference between {trademark_business} {standard_display_name} and {trademark_business} {advanced_display_name}?",
+ "lqogWt": "On {default_on_date}, Dropbox Paper will be turned on for your team. Paper comes free with all Business accounts.",
+ "lrQa4y": "Remove request to join",
+ "lrUESB": "All team admins will receive a copy of team files and folders",
+ "lrf+bf": "Set who can create, rename, move or delete items at the top level of the team space.",
+ "lrtvuX": "{plan_name} trial",
+ "ls1Yxs": "No suggestions right now",
+ "ls2FuR": "Show acknowledged",
+ "lsDA7h": "Sign-out URL: {url}",
+ "lu9pXH": "Yes",
+ "luV4IR": "Filters",
+ "lugJj9": "This export is quite big, so we\u2019ve broken it into several parts. Be sure to download everything.",
+ "lugWbo": "IT / Information Security",
+ "lujuec": "We were unable to complete your request.",
+ "luoF2E": "Sync, share and back up files directly from your hard drive. Download the desktop app now.",
+ "lv9xHm": "Change capture settings",
+ "lvGBGL": "Tidy up by year",
+ "lvYIwW": "Pending",
+ "lvdhhJ": "Change your selection",
+ "lvqTgn": "100-249",
+ "lvvy0T": "2. Enter payment details",
+ "lw1vdF": "Add and remove members, manage groups, and view team activity feed.",
+ "lw7vcu": "To purchase, please add your billing information.",
+ "lwDdPo": "Check out our Help Centre",
+ "lwMCYw": "name@example.com",
+ "lwq/Vu": "We sent a code to your phone.",
+ "lwyNeC": "Restrict sharing to team",
+ "lxAskD": "Add a personal Dropbox to keep your personal and work files separate.",
+ "lxNU0Z": "You don\u2019t have permission to change the settings on this file.",
+ "lxsjma": "Here are the folders you\u2019re currently sharing",
+ "lxspej": "Bits per sample",
+ "lxyCXy": "email me the link",
+ "ly/8VG": "{count, plural, one {{count} day left to accept} other {{count} days left to accept}}",
+ "ly1XN5": "Duplicate",
+ "lyCL5/": "Dropbox has sent a verification email to {email}. Check your inbox and click on the link in the email to finish updating your {team} email. If you can't find it, check your spam folder or click the button to resend the email.",
+ "lytkUs": "Make team admin",
+ "lyxkIn": "{count, plural, one {Invitation sent} other {Invitations sent}}",
+ "lz7DG7": "You\u2019re all set up and ready to use Dropbox with your team.",
+ "lzKC+S": "To view or restore all {file_count} files, visit the Event details page.",
+ "lzRy0P": "Keep everything you need in one place",
+ "lzZHyl": "As much space as needed",
+ "lztSxU": "Why aren\u2019t my photos appearing in the mobile app?",
+ "m+ZGp8": "Order summary",
+ "m+cPZv": "VAT",
+ "m+lYKP": "Sophisticated admin and audit capabilities to manage complex teams and data security.",
+ "m+pG8Y": "Change line colour",
+ "m/6Y+C": "Couldn\u2019t connect with {provider}",
+ "m/PiqD": "API calls this month: {apiPercentage,number,::percent .##} of {api_quota}",
+ "m0WS+a": "Downloading",
+ "m0jewu": "Stay secure with Dropbox",
+ "m0z9z6": "Are you sure you want to make {user_name} an owner?",
+ "m1ZBqW": "Anyone",
+ "m1hLUr": "Spaces",
+ "m28/B2": "Description:",
+ "m29oRc": "Sync this folder automatically to members\u2019 computers",
+ "m3kx6R": "{completed_docs} of {total_docs}",
+ "m4L2ag": "Revoke admin privileges",
+ "m4P3CO": "Confirm removal",
+ "m4RmFp": "Revoke token",
+ "m4b4bb": "To share this file, ask someone else for access to edit.",
+ "m4yPTk": "{cost}/user/year",
+ "m5C1qx": "2 of 4",
+ "m5HwtG": "Previews for {extension} files are limited",
+ "m5LWaK": "Undo",
+ "m5MNvs": "Phone support during business hours",
+ "m5kUfa": "{count, plural, one {You were removed from {count} item} other {You were removed from {count} items}}",
+ "m5kdkX": "Drop image here",
+ "m6/l0s": "Add any email address that ends in {oneDomain}",
+ "m61RGf": "Accept invitation",
+ "m68P5T": "There was an error sending this reminder.",
+ "m6TLUI": "Billing options",
+ "m6YJXG": "At the office. At home. Or around the globe. With {trademark_business}, everything your team needs is in one place. And it\u2019s instantly accessible anywhere you need to work.",
+ "m7+KB1": "These members are not required to use EMM.",
+ "m7IdAm": "{userCount, plural, one {when billed yearly, {userCount,number}+ user} other {when billed yearly, {userCount,number}+ users}}",
+ "m7zp3J": "Deselect all files",
+ "m8JXXD": "Send",
+ "m8bz7x": "All of your files, everywhere you are",
+ "m8oaq6": "Your trial ends today",
+ "m93xIq": "Team admins can only rewind their own folders and folders they can edit",
+ "m96IvY": "Starred {itemName}.",
+ "m9b0kY": "With our family plan, up to six members can back up files from their PCs or Macs, manage online account details with {passwords}, and save sensitive documents in {vault} \u2013 all under one bill.",
+ "m9spTH": "{DROPBOX_PASSWORDS} lets you seamlessly sign in to websites and apps by storing your passwords. The Passwords app remembers your usernames and passwords on all your devices, so you don\u2019t have to.",
+ "mALmar": "Edit the details",
+ "mAU7ay": "Great! Now copy the link",
+ "mAtx6/": "Dropbox {plus} 1 TB",
+ "mBi+1q": "Verify your work email address and finish setup on web",
+ "mBryLc": "Recommended for most teams. Members will be required to create secure passwords.",
+ "mBshLe": "Details",
+ "mC8LRm": "day",
+ "mCoSKq": "Please log in with your paired account, {email}",
+ "mDTfdW": "Below are some articles with information on common account downgrade and deletion questions.",
+ "mDrYnG": "{value} MB",
+ "mDs8EZ": "Online only (recommended)",
+ "mE4fZ4": "Court-admissible audit trail",
+ "mEUFdD": "{count, plural, one {{count} expiry date} other {{count} expiry dates}}",
+ "mEzdR+": "Admin controls and priority support",
+ "mF3ymz": "This .{extension} file is password protected.",
+ "mFVtnn": "Remove me",
+ "mFXmY0": "Show keyboard shortcuts",
+ "mFbB59": "Compress, edit or sign PDFs.",
+ "mG6ORh": "{count, plural, one {Already working with {count} team member} other {Already working with {count} team members}}",
+ "mGDfDi": "Team member",
+ "mGKQIe": "They\u2019ll also lose access to the Family Room folder.",
+ "mGLTNU": "Ready to download?",
+ "mGPZBF": "{focal_length} mm",
+ "mGnlBs": "Expand",
+ "mGoGDg": "Let\u2019s start by moving any folders you share with your team here. That way, everyone can always find what they need.",
+ "mHIANQ": "Chris Burgess, VP of IT",
+ "mHIpiE": "It looks as though you've already asked to join a different team.",
+ "mHLfrd": "Set up app",
+ "mHmoC1": "Connected to Slack",
+ "mHwVxm": "Invite some friends to join Dropbox",
+ "mIBcFr": "Lets members share their work with style using Dropbox Showcase.",
+ "mILGK3": "{filename} will be gone forever for everyone, including anyone still using the shared folder. Permanently deleting folders won\u2019t free up space.",
+ "mIVTjA": "Brainstorming",
+ "mIrTc0": "Their team admins will get an invitation",
+ "mJ9IWs": "You\u2019ll be charged {prorated_price} for the new billing schedule, pro rata for the current billing period.",
+ "mJnMrM": "Unknown",
+ "mKGo4j": "Get started connecting {serviceName}",
+ "mKXhFc": "An error occurred",
+ "mKtWIH": "Can I have fewer than {min_users} users on my account?",
+ "mL9XU3": "from {team}",
+ "mLjImS": "You have access to view this folder",
+ "mMKYfC": "New email",
+ "mMOTlg": "Apps with Dropbox access",
+ "mN88wt": "Cancel",
+ "mNLw1N": "I\u2019m having trouble with a shared folder",
+ "mNZ4jC": "Dismiss",
+ "mNi7Xx": "Only the owner can add people.",
+ "mNmI/a": "{showcase} is part of {dropbox_professional}",
+ "mO3cx4": "Please enable browser cookies to use the Dropbox website.",
+ "mO42hX": "{trademark_business} accounts",
+ "mOJi1I": "I agree to the Dropbox Terms",
+ "mOtyYS": "Restore or delete",
+ "mP1Q+W": "2. Invite your team members",
+ "mP8hiX": "Edit change",
+ "mPIBsk": "Delete file?",
+ "mPVdtX": "Ignore",
+ "mPVqeh": "This gives members the option to back up folders automatically on their computer. Everyone will get their own My Mac or My PC folder that isn\u2019t shared with the rest of the team.",
+ "mPhnVF": "You deleted {single_item_name}",
+ "mPuMoY": "{name}\u2019s calendar",
+ "mQR4oE": "Creating report. We\u2019ll email you when it\u2019s ready.",
+ "mQmZS9": "Live chat with Dropbox Support",
+ "mR7qxf": "Email attachments will be saved to this folder:",
+ "mRCTvJ": "Cancel link",
+ "mRDH8c": "Share to begin receiving insights",
+ "mRqHbI": "Your email address",
+ "mRtsI4": "device removal failed",
+ "mRvPwy": "Limited time trial offer",
+ "mSjmSo": "Dropbox",
+ "mSm+HP": "Recommended add-on for you",
+ "mT/SpT": "Set priority",
+ "mTAkPe": "These people gave you access to their files in Dropbox Vault. The owner will be notified if you download. About trusted contacts",
+ "mTG0Fd": "You\u2019re changing to a {trademark_business} {plan} plan. Starting from {date}, your new {schedule} total will be {recurring_total}. Your plan will be renewed on {renewal_date}.",
+ "mTHPqW": "Yesterday",
+ "mTVxlH": "Legally required:",
+ "mTbyll": "",
+ "mTmRKr": "Quickly add files to your Dropbox desktop folder, and access them easily anywhere.",
+ "mU6Spv": "Name or email",
+ "mUQPVD": "Bring this doc to life",
+ "mUXcXH": "You can ask the person who shared the link to invite you directly.",
+ "mUfPXD": "Add email addresses",
+ "mV6Js2": "Send a link",
+ "mVC4Qa": "Turn off",
+ "mVEUU0": "Earn more space ({current_space} earned)",
+ "mVnbhn": "Personal",
+ "mW0Mg3": "Your team\u2019s move is scheduled for:",
+ "mWRQ+X": "Before you can accept this invitation, you will need to cancel your scheduled downgrade.",
+ "mWWQev": "The Dropbox system extension has been turned off. Please sign in again.",
+ "mXcPpx": "IBAN ending in {last_4}",
+ "mY+P4M": "{count, plural, one {Anyone in your Dropbox team with this link can view the folder. Expires in {count} day.} other {Anyone in your Dropbox team with this link can view the folder. Expires in {count} days.}}",
+ "mY0jaN": "Choose how members can use Google Docs, Sheets and Slides in Dropbox.",
+ "mYGncD": "Name your shared folder",
+ "mYMm2a": "means the Health Information Technology for Economic and Clinical Health Act, which is Title XIII of the American Recovery & Reinvestment Act, and the regulations thereunder, as amended.",
+ "mYfn1X": "For effortless backups, get the app",
+ "mZo8K4": "{app_name} needs access to files you select",
+ "mZsz9G": "How locking works",
+ "ma216W": "The group name should be under 140 characters",
+ "maHKpa": "IP address",
+ "maSIf0": "See meetings you share with others",
+ "maSQGe": "Confirm cancelled change",
+ "mb54XE": "Extension updated.",
+ "mbovsD": "Create new content",
+ "mc08lh": "Which team folder you do want to access from Content Builder?",
+ "mc6Hd7": "Skip for now",
+ "mckYQj": "{trial_days_left} days left in your free trial",
+ "mdOJpc": "One safe place for all of your stuff",
+ "mdbgLV": "Not formatted quite right",
+ "mdhFnj": "You edited ",
+ "meRhZz": "Dropbox was successfully installed.",
+ "megHQj": "Responsible for payments and contract renewal.",
+ "men45k": "3. Enter payment details",
+ "mfGNdu": "Google Docs, Sheets and Slides",
+ "mfLT9G": "Failed to load modal",
+ "mfWC8r": "New team folder",
+ "mgY3e9": "There was an error completing this action.",
+ "mgYQKB": "Skip",
+ "mgikY5": "A security key allows you to complete two-step verification securely and conveniently when logging in to Dropbox. Learn more",
+ "mgq+D9": "Set an expiry date",
+ "mh4Q6C": "{count, plural, one {{count} member folder is full} other {{count} member folders are full}}",
+ "mhBa/a": "We can\u2019t find the HTML file",
+ "mhH2yN": "Logins",
+ "mhwwhK": "Keep your stuff safe with {dropbox_plan}",
+ "miE3lp": "Video comment",
+ "migX9v": "Members can sign in with SSO or password",
+ "miobx3": "Sign up for free",
+ "miukx7": "See how Paper can make your ideas better and brighter.",
+ "mj6gWY": "Something went wrong. Please try again.",
+ "mjG96z": "Transfer",
+ "mjV5dY": "Remove all devices",
+ "mjghJc": "I can\u2019t recover my account using this page",
+ "mjhU6d": "Create your account",
+ "mjljKx": "Edit photos and images.",
+ "mjsOTf": "Calendar and Contacts",
+ "mk1JKj": "When an existing or new app is listed in App Centre, team members will be blocked from connecting to the app.",
+ "mk3vac": "plans and upgrades",
+ "mkCWlR": "{filename} and {file_count} other {item}",
+ "mkG9ta": "Are you part of {team_name}?",
+ "mkObi6": "Create password",
+ "mlXeFC": "Colours",
+ "mliYD5": "{count, plural, one {You\u2019ll be charged for {additional_licenses} more person,{white_space}} other {You\u2019ll be charged for {additional_licenses} more people,{white_space}}}",
+ "mlqeI5": "Keep shared files organised, up to date and secure",
+ "mm0vG7": "Open folder activity",
+ "mn1OBo": "Disable",
+ "mnOOD/": "More actions",
+ "mnP38t": "Now add your team Dropbox",
+ "mnhDAU": "Sign in to continue",
+ "mnql+p": "36,036 days is the maximum",
+ "mo52uK": "Invite more members for free during your trial period.",
+ "moPhW/": "You shared this file in Slack",
+ "mpPvPV": "Your session has expired. Please sign in again to continue.",
+ "mpaAQH": "Unshared '{'name'}'",
+ "mpdvwi": "Selected",
+ "mppZEu": "Go to folder",
+ "mq1Y/D": "Admins in the secondary team won\u2019t automatically become admins in your team. You can add admin privileges back after the merge.",
+ "mqp+1n": "Sign in to websites and apps easily with Dropbox Passwords. Automatic sync to all of your devices allows you to access your passwords anywhere.",
+ "mr/NHg": "Creating report.",
+ "mr2WgN": "You will lose access to advanced sharing controls, remote wipe and other features of {current_plan_name}. To keep these benefits after your trial period, buy {current_plan_name} now.",
+ "mr7C8W": "For every friend who joins and installs Dropbox on their computer, we\u2019ll give you {bonus_per_referral} and your friend {friend_bonus_amount} of bonus space (up to a limit of {max_referral_bonus}). If you need even more space, upgrade your account.",
+ "msVXSB": "About moving members",
+ "msYW/D": "Invite your coworkers to Dropbox to make it easier to access files and work with {teamName}, without waiting for you.",
+ "msj5kh": "Hold name",
+ "msv6ib": "{count, plural, one {We\u2019d love to make your {trademark_business} experience even better.\n You can help us do that by answering a quick question.} other {We\u2019d love to make your {trademark_business} experience even better.\n You can help us do that by answering a few questions.}}",
+ "mtKRqh": "Improve productivity",
+ "mtVCQ2": "Please test this app",
+ "mtpoLW": "Overview",
+ "muDHPB": "Continue",
+ "muFB6o": "Get help",
+ "muNFvG": "Couldn\u2019t add image from Dropbox. Please reload the page and try again.",
+ "muP0dn": "You\u2019ll have access to your plan until {date}. After that, your backup will remain available but it\u2019ll be limited to the 2 GB storage quota of the Dropbox Basic plan. If you exceed your quota, automatic backups will stop.",
+ "mvOTrD": "in Paper",
+ "mvwSL1": "People we think you work with have joined these teams",
+ "mw6e6v": "Load older versions",
+ "mwEu6q": "Need help deciding? Take a look at our ",
+ "mweUml": "Can I have fewer than 3 users on my account?",
+ "mwg+wc": "Tell us what you think",
+ "mx5U0y": "you@mail.co.uk",
+ "mxCRTY": "Domain",
+ "mxHtEA": "Team name",
+ "my14++": "Zoom share dialogue",
+ "myHu+G": "Sharing and collaboration are just as easy with {trademark_business} as they are with Dropbox Basic or {trademark_plus}. You can add collaborators to shared folders so they always have the most up-to-date versions of files they're working on together, or you can send a copy of a file or folder instead. Plus, with {trademark_business}, admins can control sharing permissions and see audit logs of sharing activity.",
+ "mzS/Nw": "Your plan includes {quota} of space and {api_limit} API calls.",
+ "mzdTJq": "Get started with Paper templates.",
+ "mzikUe": "Change",
+ "mzy+1c": "Zoom",
+ "n+NENR": "Go from {basic_space} to {space} of storage space, and unlock premium features",
+ "n+T5bi": "{teamName} team account",
+ "n+uvlj": "Enter your Dropbox password to download",
+ "n/JoQ4": "Unlink {device_name}",
+ "n/Q7Zp": "Purchase {trademark_business}",
+ "n/R4Jp": "Term.",
+ "n/Wxkk": "Oh no!",
+ "n062nX": "Download",
+ "n071Q5": "Other",
+ "n0cvb8": "Thanks for verifying your email address {email}. Your account has been changed successfully.",
+ "n0kScC": "Version:",
+ "n17xGq": "COVID article",
+ "n1Nx/q": "Direct download",
+ "n1Po5D": "Select View site information {lock} on the left of the address bar.",
+ "n1zYou": "Retry",
+ "n2RKZS": "{familiar_name}, thanks for participating in {offer_name}.",
+ "n2gLkM": "{plus_vacuuming_policy_max_days} days",
+ "n3JFMB": "Cancel",
+ "n3PO1l": "Sending message...",
+ "n3SU35": "{dropbox_business} provides three plans to fit your team\u2019s needs. The {trademark_business_standard} plan gives your team {standard_space} of shared storage. For teams needing more space, the {trademark_business_advanced} and {trademark_business_enterprise} plans provide as much space as you need.",
+ "n46caf": "Buying on Dropbox",
+ "n47BCO": "{count, plural, one {{count} team} other {{count} teams}}",
+ "n4bpuy": "Exclude current month",
+ "n4fAB+": "Got it",
+ "n4m0yv": "Disable two-step verification",
+ "n4o67d": "Undo failed.",
+ "n4ojia": "User",
+ "n4vtwy": "Looks as though you don\u2019t have a work Dropbox yet",
+ "n52N16": "Layout",
+ "n5lUbq": "Be specific so you can tell each export apart",
+ "n6HjLb": "The {team_name} {business} trial has ended",
+ "n6en0o": "Purchase",
+ "n7TBjV": "Custom build your own Paper templates",
+ "n7dIq9": "Dropbox {trademarkProfessional}",
+ "n7drWm": "Select all files",
+ "n7x16A": "Zoomed in/out too much",
+ "n82jLM": "Request failed",
+ "n8EwXc": "Content calendar \u2192",
+ "n8SWpH": "High",
+ "n8X+HI": "If you remove your admin permissions, you\u2019ll no longer be able to upgrade or delete your team, change team settings, or remove invited and existing users.",
+ "n8aZAa": "Members with the link",
+ "n92loR": "View members",
+ "n9Od3w": "Eng: @rick, @karen, @mary",
+ "n9YlGq": "down arrow image",
+ "n9gJfZ": "You have access to edit this folder",
+ "n9nJwy": "With {plan_space} of space and powerful sharing features, {dropbox_plan} keeps your stuff accessible and safe wherever you are. For a limited time, get {discount,number,::percent .##} off with your first year of {dropbox_plan}!*",
+ "n9yYUb": "Please submit your information and a {trademark_business} representative or reseller will get in touch with you",
+ "nAk2mg": "{displayName} will be notified if you download",
+ "nAwKbF": "Bear in mind that if they have a shared link to this file, they might still be able to view or edit it.",
+ "nB/pls": "Password",
+ "nB93ha": "Unreadable text",
+ "nBT7AS": "You can annotate video projects, track review cycles and capture time-coded feedback. The Vimeo Dropbox extension simplifies video sharing and reviews. New users get 30 days of Vimeo Pro with free review and advanced analytics tools.",
+ "nBVvrz": "Find out how Dropbox can help you get \u2013 and stay \u2013 focused.",
+ "nBgj3Q": "{name} will be saved to your personal Dropbox account and synced to any connected devices.",
+ "nBhcVL": "We can move your docs {now}. However, we recommend in the evening or at the weekend.",
+ "nCBn3i": "Share ideas in real time",
+ "nCBxgl": "Control access with password protection",
+ "nCQtVq": "Which device are you having problems with?",
+ "nCZAww": "Sending...",
+ "nCsvOW": "Failed to load notifications.",
+ "nD+cIf": "Close",
+ "nD7sOl": "Sharing date",
+ "nDofxz": "Illustration of a group of people",
+ "nDvVuA": "Job title:",
+ "nDw6hl": "Grow bigger, brighter ideas with Dropbox Paper",
+ "nFcWg2": "Opening files",
+ "nG1sYn": "Dropbox Rewind lets you restore any files, folders or even your entire Dropbox account.",
+ "nGnLxa": "Request access for:",
+ "nGu7YN": "You can\u2019t import over 1,000 people in one go",
+ "nHKL5p": "Size slider",
+ "nHOq1c": "Members of the file with this link can edit. Downloads disabled.",
+ "nITGKN": "Free",
+ "nIWB/K": "Can I change the currency on my Dropbox subscription?",
+ "nIdCxe": "Open requests",
+ "nJ1acE": "Account capture",
+ "nJAbBx": "The member has no access to Dropbox for now.",
+ "nJGEFH": "Pin",
+ "nK3mdw": "This won\u2019t delete the Dropbox Passwords app or any of the accounts you saved there.",
+ "nKTH5m": "You were removed from {single_item_name}",
+ "nLLL8d": "View-only in {current_editor}",
+ "nLtLrY": "Check back here once someone shares something with you.",
+ "nM32P+": "Add branding with your photo or logo",
+ "nM5Fv4": "Last month",
+ "nMBhV+": "Create",
+ "nNOUrK": "Your team",
+ "nOBhEP": "Delete",
+ "nOO9Qi": "OK",
+ "nOS+/t": "Expand module",
+ "nOuyMw": "Save it for later in your Dropbox account",
+ "nOygV6": "Connect the tools you already use",
+ "nPGI06": "Collapse",
+ "nPLVOL": "Member\u2019s content will immediately be transferred to {email}",
+ "nPTUr8": "Prevent deletion of data for a certain period of time",
+ "nPnx0l": "You also have a {team_name} {trademark_business} account. Please contact your admin to downgrade that account.",
+ "nQ45Jp": "Confirm cancellation",
+ "nQPthO": "Something went wrong. Please try again or visit our Help Centre page.",
+ "nQmO1L": "We had problems loading your events feed. Please try again later.",
+ "nQncys": "You\u2019ll no longer get notifications about \"{folderName}\"",
+ "nQys0m": "Add URL",
+ "nR3PAi": "Suspended members",
+ "nR7iek": "Branded sharing",
+ "nRDdm5": "Send a password reset link to your devices?",
+ "nRYN3i": "{count, plural, one {Sending invitation} other {Sending invitations}}",
+ "nRgwkK": "Step 2/2: choose your billing period",
+ "nS8yQU": "
Automatically back up one computer \u2013 regardless of size \u2013 for half the price of Plus.
{backupPlanName} is $5.99/mo and lets you easily recover your files if things go wrong.
",
+ "nSIWcw": "Has expiry date",
+ "nSQHN7": "For complex teams",
+ "nST3rs": "Add your payment information now to set up your subscription to be renewed automatically when it expires",
+ "nSmYxv": "DELETED LIFE VAULT FOLDER",
+ "nStYNE": "Why does my bank statement show multiple charges for one upgrade?",
+ "nTGYX9": "As",
+ "nU3TuP": "Sticker: {description}",
+ "nU90w+": "We cancelled the account recovery request. If you think someone else is trying to access your Dropbox account, please let us know.",
+ "nUAdnG": "Email, name or group",
+ "nV2Prb": "What happens when you cancel Dropbox {plan}",
+ "nV4dvn": "Your transfer is good to go",
+ "nVRR28": "{count, plural, one {{successCount} of {count} file uploaded. Try the other {failureCount} again.} other {{successCount} of {count} files uploaded. Try the other {failureCount} again.}}",
+ "nVU2en": "They can still access Dropbox through previously linked devices, however. You can see and unlink those devices on their member page.",
+ "nVmCfa": "Expires on {date_string,date,::yyyyMMdd}",
+ "nW2iLc": "Multiple users commenting and sharing feedback about an image.",
+ "nWHtlz": "Downgrade vault",
+ "nWR7ib": "Don\u2019t worry, removing {export_name} won\u2019t delete any files. But if you want to download these files in the future, you\u2019ll need to create the export again.",
+ "nX7qGU": "Price",
+ "nYBDhA": "BlackBerry",
+ "nYf519": "Leave feedback on this moment with a time-coded comment.",
+ "nYiQFV": "Are you sure you want to cancel {trademark_business}?",
+ "nZ/TMQ": "Folder is in {path}",
+ "nZAbRg": "Apply this policy to some folders",
+ "nZhREZ": "We were unable to complete your request.",
+ "nZtxjD": "{count, plural, one {Anyone in your Dropbox team with the link and password can view this file. Expires in {count} day.} other {Anyone in your Dropbox team with the link and password can view this file. Expires in {count} days.}}",
+ "na/t5a": "Products",
+ "naRCjx": "Google Calendar",
+ "naZScv": "More about what files are held",
+ "nacs1m": "member page",
+ "najQtK": "1. Select the file you\u2019d like to upload.",
+ "nans2u": "To share this Dropbox file, just copy the URL from your browser. Bear in mind that anyone with the URL may be able to edit.",
+ "nbCsok": "Are you sure you want to add admin permissions for {display_name}?",
+ "nbcoHm": "You restored {single_item_name} in {folder_path}",
+ "nbpOQc": "Top team and admin articles",
+ "nc1GMq": "We couldn\u2019t process your background image.",
+ "ncI9A1": "Groups make it easier to share with common lists of people in your team.",
+ "nchDM4": "Policy type and duration",
+ "nd23j7": "To see folders shared with you, you need to verify your email address.",
+ "ndMNx/": "Created folder {folder_name}.",
+ "neBk7u": "Dropbox Paper",
+ "neZirb": "
{name},
Would you like to connect this computer to your Dropbox account ({email})? If you didn\u2019t request this, please click 'Cancel'.
",
+ "nf00nr": "Preferences",
+ "nfEJVj": "This link is password protected",
+ "nfH4Fc": "3 of 4",
+ "nfkI3y": "Fine-tune",
+ "nfpb7D": "Upgrade to {trademark_name}",
+ "nfqCOo": "For some reason, we couldn\u2019t install the extension.",
+ "ngKwi5": "If you already have the Dropbox app, just go to preferences and click Backups.",
+ "ngkt2k": "Storage",
+ "ngoQaW": "Can\u2019t load activity \u2013 to try again.",
+ "nh12tG": "Admin",
+ "nh4ZGk": ".pptx, .docx, .rtf, .azw4, .ppsx, .ps, .ai, .papert, .odt, .pps, .binder, .paper, .pptm, .docm, .wpd, .djvu, .epub, .ppsm, .gslides, .mobi, .doc, .eps, .ppt, .odp, .gdoc, .dwg",
+ "ni0VpI": "",
+ "niJq3p": "Contact your admin to add more space.",
+ "niYQeL": "View settings",
+ "niYoXM": "To",
+ "nin8N7": "Changed email",
+ "niuDq6": "Looking for something?",
+ "niud+E": "Download",
+ "nivPJP": "Public sharing policy",
+ "njWYJj": "Set for how long members can be idle while signed in to dropbox.com.",
+ "njxK7y": "",
+ "nk7m1x": "Invalid email address",
+ "nkCWjP": "Upgrade",
+ "nkG7su": "Unsuspend {display_name}\u2019s account",
+ "nkY8sK": "
Using a strong and unique password ensures that only you can access your Dropbox. Please change your password now to ensure that your account is secure.
{pw_policy}Learn more about how to set a strong password.
",
+ "nkYDxb": "The members who are moving",
+ "nksSmj": "Clear your manually added contacts?",
+ "nlxpt6": "Storage space is shared by all members of the Family plan.",
+ "nm04vK": "Create new folder",
+ "nmYCpq": "Anyone using the Paper desktop app will be signed out. This won\u2019t uninstall the app from their computer.",
+ "nnFfUf": "Authenticator app",
+ "nnde/l": "Get {space} of space to store and share all my files",
+ "noEdGR": "The secondary team will use your billing info, and you\u2019ll need a licence for every new member.",
+ "noGS9i": "Lock your vault with 1 click",
+ "nomYjM": "Bank",
+ "noyhQI": "Presentations",
+ "npviR9": "Deleting group...",
+ "nq1HqC": "edit",
+ "nqVXmb": "Members can\u2019t edit top-level folders, but admins can edit them here. Change setting",
+ "nr9Ux4": "Currently, security keys are only supported in Google Chrome, version 38 or higher.",
+ "nrqPdY": "User access updated.",
+ "nrthCd": "Invite team members to upload shared work to Dropbox",
+ "ns0ERj": "Continue with cancellation",
+ "ns3cFM": "Reload",
+ "nsIJp1": "Edit EVH add-on",
+ "nsMBgM": "To sync the recovered Dropbox files on {infected_user_familiar_name}\u2019s\n computer, {infected_host_name}, you must first remove the ransomware.\n Dropbox can\u2019t remove it for you, but antivirus software can. You can find\n antivirus software by searching the web. If a reinfection occurs, Dropbox can help\n you recover the files again.",
+ "nsN1Q2": "You're joining a work-related Dropbox account. If there's anything personal in there, we'll help you create a separate account to keep it private.",
+ "nsfCAf": "To free up {xgb} GB, set all of your files as online only in Dropbox. You\u2019ll still see everything in your account in the Dropbox folder on your computer. Just double-click any file to download it again. Learn more about Smart Sync",
+ "nsh0or": "deleted video",
+ "nswDHh": "You can add your payment information now to set up your subscription to be renewed automatically when your keys expire.",
+ "ntEVA+": "We\u2019ll let {name} know you uploaded files.",
+ "ntHoPL": "I agree to the Dropbox Terms",
+ "ntVDje": "Drag and drop tasks into your open calendar slots below, or in the pane to the right.",
+ "ntZqC3": "Verify your secondary email before swapping.",
+ "nubVED": "Find what you need faster",
+ "nujFg2": "HIPAA support is not currently available for Passwords.",
+ "nuqQkL": "Remove {name}\u2019s admin role",
+ "nv3jy/": "Editing locked. Now only you can make changes.",
+ "nvLizJ": "Pick a date and time to move",
+ "nvkATX": "Invite members to your team",
+ "nvlC/2": "Upgrade",
+ "nwGXdb": "The percentage of active, suspended and invited licences.",
+ "nwQfHP": "We\u2019ve got your back",
+ "nwmSUT": "What happens to my free trial?",
+ "nx1w5T": "Allowed for 1 day",
+ "nxIFEk": "No need to fill up people\u2019s inboxes. Just attach a Dropbox link instead.",
+ "nxVDYw": "You do not have permission to edit this folder",
+ "nxhAca": "Confirm changes",
+ "nxrAQw": "No flash",
+ "ny0ovp": "Learn more",
+ "nyEngX": "Dropbox brings your files and cloud content together, so that your PowerPoints can live next to your Google Docs, Trello boards and any other files you may need.",
+ "nyrsTE": "Sorry, in order to perform this action, you need to add more storage to your Dropbox.",
+ "nyuorm": "Ask the person who sent you the transfer for help.",
+ "nyy+ht": "Colleagues can ask to join your team",
+ "nz2Zjl": "You\u2019ve organised your files \u2013 now get plenty of space and features for peace of mind. You\u2019ll even be able to get to your files when you don\u2019t have Internet access.",
+ "nzAl0Q": "Keep teams flowing",
+ "nzICZX": "You can request documents for signature or send out signed documents from Dropbox. New users get free unlimited signing for 3 months.",
+ "nzQo09": "Can view",
+ "nzqkZQ": "Add to {cdm_tmf_name} folder",
+ "nztJ46": "How to change your Dropbox billing information",
+ "nzubao": "Your email address",
+ "o+5hmU": "Delete \u201c{group_name}\u201d?",
+ "o+CHKf": "+{count}",
+ "o+JBUo": "We were unable to fetch two-factor status.",
+ "o+fjzx": "An abstract illustration of your current storage plan, compared with {dropbox_plus} and {trademark_professional}, in the shape of a triangle.",
+ "o+sT31": "Close",
+ "o/EyS0": "Surname",
+ "o/eqtb": "Remember that, after downgrading to {trademark_basic}, your account will go from {current_plan_space} to {free_quota} of space (plus any bonus space earned previously).",
+ "o/pyAF": "Get organised. Stay focused. And bring content, collaborators and tools together in one place. Welcome to your team\u2019s smart workspace.",
+ "o/xoxI": "Dropbox Paper won\u2019t be turned on automatically.",
+ "o15ZmC": "Some of these items are shared. You no longer have access to some of them, and other people might have changed them since you removed them.",
+ "o19fmC": "Unsupported path provided {path}.",
+ "o1Lvfy": "Connect to your favourite tools",
+ "o1Ssj/": "We\u2019ll email this member to let them know they can sign in again.",
+ "o1Wy7v": "{audio_freq} kHz",
+ "o2uL8S": "Share \u201c{folder_name}\u201d with everyone who can access \u201c{parent_folder_name}\u201d?",
+ "o38k+W": "Switch trial",
+ "o3Djy2": "Select tile",
+ "o3Pr5y": "Links with no password, viewed by someone outside your team",
+ "o3mRdr": "Excel for the web",
+ "o3rTDK": "Tell me more",
+ "o4Frl+": "You have {remaining_space} remaining \u2013 you will only be able to view requests that are within your quota.",
+ "o4tdpN": "Couldn\u2019t save the preference you selected this time.",
+ "o541DB": "Dark",
+ "o5oFaO": "Send us a tweet",
+ "o6Oqk/": "More templates",
+ "o6VCdg": "Only specific dates",
+ "o7C6SM": "until we release them publicly.",
+ "o7NttS": "Check out our FAQs",
+ "o7QVkN": "0-60",
+ "o7VMxD": "How we\u2019ll move your team\u2019s docs",
+ "o7po3R": "Access every file and folder in your Dropbox account from your computer, using virtually no hard drive space.",
+ "o81APx": "Traffic and insights",
+ "o8EPDH": "Upgrade to add logo",
+ "o8FIhI": "From builders to film-makers, see why people love Dropbox.",
+ "o8Ovrb": "Copy",
+ "o8UHK5": "Visa",
+ "o8u5jd": "File name",
+ "o96TiK": "Create",
+ "o9O3cO": "1 user",
+ "o9iQdR": "Don\u2019t cancel",
+ "o9mqwS": "Explore everything Dropbox has to offer.",
+ "oA46AW": "Updated {time_ago} by you",
+ "oAiPnw": "{member_name} will only be able to view this folder, and new members of {parent_folder} won\u2019t be able to access it automatically.{br}To add more people to this folder in the future, you\u2019ll need to invite them directly.",
+ "oB7Vaf": "If you downgrade, your team will lose out on {space} of space and your active team members will return to their initial space quota.",
+ "oBo1/X": "Let us know more about why you\u2019re cancelling:",
+ "oBpryc": "Personal information labelling",
+ "oCPrYU": "Company logo",
+ "oCrSN0": "Keep changes",
+ "oDIAM/": "Upload by {date,date,medium} at {time}",
+ "oDy6M3": "Recommended add-on",
+ "oEGZHf": "Copy public link\u2026",
+ "oENeDN": "Owner email",
+ "oEguDz": "Couldn\u2019t add some people to this doc. Try inviting them instead.",
+ "oFA/9f": "Sign-in failed. If you\u2019d like to sign in with Apple again, see how in our Help Centre. You could also sign in with your Dropbox account email and password.",
+ "oFDCFq": "We couldn\u2019t move your folders. Please try again later.",
+ "oFHvou": "Everything in {advanced}",
+ "oFUGWn": "Yes",
+ "oFanUK": "Copy Zoom cloud recordings to Dropbox?",
+ "oFcSSl": "and more",
+ "oFzeNH": "Are you sure you want to leave?",
+ "oG9oIy": "Your agreement has been signed successfully and will be uploaded to your Dropbox shortly.",
+ "oGBPah": "Your own space",
+ "oGCt5e": "Your existing Dropbox files will live here. To get set up, enter a new email address for your personal account.",
+ "oH+eDK": "Add more files",
+ "oHBKTq": "File too large",
+ "oHMH6/": "or sign in to your account",
+ "oHNNG5": "Security keys are currently only supported with Google Chrome version 38 or higher, and Firefox version 60 or higher.",
+ "oHZbXS": "To subscribe to this file, sign in to Dropbox.",
+ "oHpGsH": "See plan details",
+ "oIbZQo": "Attribute",
+ "oIyP4b": "Send to {name}",
+ "oJVrbs": "Your trial will be automatically upgraded to a Dropbox {plus} account in the next 48 hours.",
+ "oJghFv": "Sharing made simple",
+ "oJw4g4": "Unknown",
+ "oK0AGt": "yearly with monthly billing",
+ "oK0WuD": "Keep your team seamlessly in sync",
+ "oK1+ka": "Choose a unique 6-digit code that you\u2019ll use to unlock your vault on all devices.",
+ "oKDqmU": "Your current members want you to invite these people so they can work together in Dropbox.",
+ "oKFqyL": "Request sent successfully",
+ "oKO81V": "Dropbox App Centre",
+ "oKTCoc": "Check out the best way to create and build on ideas with your team.",
+ "oKXvEm": "Your {trademark_business} account will be downgraded on {date}.",
+ "oKoKom": "Discard and continue",
+ "oKv5aq": "Document",
+ "oLEaCW": "You can select yearly or monthly billing before entering your payment details.",
+ "oM4CwI": "This link code is invalid. Please try again.",
+ "oMOGk0": "Scrolling list of files, showing multiple users who have access to each file type.",
+ "oMVDF7": "Payments and billing",
+ "oMWVkR": "Back",
+ "oNZBs/": "Domains",
+ "oNk+Hz": "0-35000 or leave blank",
+ "oNm7rV": "Pricing",
+ "oNuOaL": "Expense",
+ "oO6gez": "Single sign-on (SSO) integration",
+ "oOHggg": "Get a link",
+ "oOTndc": "Edit preferred 2FA method",
+ "oP3/4M": "{remainingLicenses, plural, one {{numMembers} members \u2022 Add {remainingLicenses,number} licence} other {{numMembers} members \u2022 Add {remainingLicenses,number} licences}}",
+ "oPPpOc": "Contact Dropbox",
+ "oPfJiI": "Secure eSignatures for any documents with HelloSign by Dropbox",
+ "oPivFQ": "Password-protect this link for viewing the file.",
+ "oPu2wG": "Change folder name",
+ "oQ/5ii": "Built for your most important files",
+ "oQlMDm": "Apr",
+ "oQnu9f": "Extensions in 'Open with' menu",
+ "oRar4M": "You\u2019ve imported contacts from the following mobile devices.",
+ "oS1+mX": "Are you sure you want to remove the shared folder {filename} from your Dropbox? This folder will stay shared with any existing members. You can add it again later.",
+ "oSMOwx": "You don\u2019t have access to some of those files. To perform a restore, untick the files you don\u2019t have access to and try again.",
+ "oSMrQu": "{count, plural, one {Anyone in your {trademark_business} team with this link and password can view the file. Expires in {count} day. Downloads disabled.} other {Anyone in your {trademark_business} team with this link and password can view the file. Expires in {count} days. Downloads disabled.}}",
+ "oSU2pc": "You're invited! Join the {teamName} account and work better together.",
+ "oTEqgI": "deleted executable",
+ "oTIViq": "The folder \u2018{folder_name}\u2019 has been moved",
+ "oTRjTU": "Delete extension",
+ "oTjpov": "{numMonths, plural, one {{name}, get {discount,number,::percent .##} off {numMonths,number} month of {dropbox_plan}*} other {{name}, get {discount,number,::percent .##} off {numMonths,number} months of {dropbox_plan}*}}",
+ "oTlo1p": "10 minutes",
+ "oU0z79": "Pin {num} items to...",
+ "oU1i4H": "Switch account?",
+ "oUOZLa": "Go to dropbox.com/paper or get the Dropbox Paper app for iOS or Android.",
+ "oUP+qL": "On",
+ "oUVqsi": "Add folder to {cdm_tmf_name} folder",
+ "oUlEeK": "Connected teams",
+ "oVP6dB": "Remind yourself which download is which",
+ "oVsu3Y": "Check All cards or Create new card.",
+ "oVzqwq": "Link to manually download the app",
+ "oW4yFu": "Preview instead",
+ "oWO0ug": "Add, remove and manage member accounts",
+ "oWR0DH": "Send",
+ "oWVzHR": "Need more help?",
+ "oWfH5u": "You can\u2019t cancel an active federation",
+ "oWtMAW": "Member will still have access to Paper docs they own that aren\u2019t shared",
+ "oX7L4J": "Active members",
+ "oXILe3": "Loading",
+ "oXLIPe": "Click a button and Paper will automatically turn your doc into a professional-looking presentation.",
+ "oXQEPW": "From",
+ "oXiCBT": "Failed to load modal.",
+ "oXsYye": "Hold a copy of any available files that members edit between these dates. Once you activate the hold, you can\u2019t change these dates.",
+ "oY3P97": "Step {step} of {total_steps}",
+ "oYMnkP": "You edited this file",
+ "oYSO1Z": "Please save your other changes before making them here.",
+ "oYp4Dw": "Don\u2019t cancel",
+ "oYxhVB": "Recipient required",
+ "oZ87NQ": "{number, plural, one {Viewed {number,number} min ago} other {Viewed {number,number} mins ago}}",
+ "oZDQ32": "Organise team content in a central workspace",
+ "oZL+9Z": "No, thanks",
+ "oZNXJZ": "It looks as though you\u2019ve already asked to join this team.",
+ "oZnLvd": "Guest team name",
+ "oa0cHO": "Name",
+ "obAVjB": "Make every interaction an opportunity to impress with {showcase}. Share your work with partners and clients easily, track progress, and keep tabs on who\u2019s seen what \u2013 all in one place.",
+ "obFNpg": "Move left",
+ "obSlFz": "Sorry, this file name isn\u2019t allowed.",
+ "oc5Lmu": "We\u2019ll label a file if it contains any of the info types below.",
+ "ocI36k": "{count, plural, one {Your {count} existing shared folder invitation in your {team} Dropbox will be removed if you change your email address.} other {Your {count} existing shared folder invitations in your {team} Dropbox will be removed if you change your email address.}}",
+ "ocRCHp": "Remote wipe status",
+ "ocgQTp": "Files can\u2019t be uploaded after the deadline",
+ "ocsN4r": "Dropbox interface for file transfers.",
+ "odl67p": "Search members",
+ "odpVRo": "Who can access",
+ "ods6gH": "Start free trial",
+ "oeASwG": "Continue upgrading to add the shared folder to your Dropbox.",
+ "oeH3nJ": "Dropbox Business",
+ "oeHz+T": "Couldn\u2019t update sync default for these folders. Try again.",
+ "oeNPkV": "More actions",
+ "oeXEgT": "Video editing",
+ "oezDDh": "32-bit",
+ "of/6qv": "List",
+ "ofLB4B": "{count, plural, one {Doc shared with {count} person.} other {Doc shared with {count} people.}}",
+ "ofO6WA": "Something didn't work, we were unable to link your card at this time. Return to your banking app and try again",
+ "ofvIui": "Download",
+ "ogPuVL": "Combine with team account",
+ "ogpNz8": "48 hours",
+ "ogxGtl": "dropbox.com",
+ "oh288L": "{count, plural, one {{count} admin} other {{count} admins}}",
+ "oh2tHX": "Current members",
+ "ohTQwA": "Invited",
+ "ohUZkz": "Live chat support",
+ "ohh7kh": "Remove my access",
+ "ohhbvQ": "Dropbox location",
+ "ohm049": "Team admins (including you)",
+ "ohsPNV": "Set for how long members can stay signed in to dropbox.com",
+ "oi0zm4": "Stop saving email attachments to Dropbox?",
+ "oi9ssi": "Download the app again.",
+ "oiEZPZ": "Cancel this merge?",
+ "oiPyQG": "Click to jump to a page",
+ "oicFVh": "Jump to the latest version of files from Trello",
+ "oifcwV": "Top account access and security articles",
+ "oirOyz": "Uploading\u2026",
+ "oj0t4N": "Creating suggestions for you",
+ "oj1myK": "Items you viewed recently will be displayed here",
+ "ojNoDZ": "File size cannot be more than 20 MB",
+ "ojSZu3": "See space usage",
+ "ojSogg": "Updated. You can double-check in the preview. ",
+ "ojkQfv": "Versions",
+ "ok71Ya": "Add members:",
+ "ok8Odj": "{trademark_sync_everything}",
+ "okAqt3": "Time of sign-in",
+ "okic6x": "per licence/month",
+ "omTab8": "You won\u2019t get an alert if a member shares an unusually large amount of data with people outside your team, which increases the chance of data loss",
+ "omUhTI": "Remove from Dropbox",
+ "omXczy": "Send",
+ "on00GM": "Next",
+ "on0Nju": "Rewinding to an earlier time\u2026",
+ "onOPHb": "Mytaxi",
+ "oncw2h": "Dropbox Paper",
+ "onubGk": "Billed yearly",
+ "ooDtnA": "Update your title",
+ "ooNdL7": "{gigabyteSpace}",
+ "ooTeZE": "That\u2019s all that happened",
+ "ooaUAP": "Create a new address",
+ "oor0f7": "Before you can upload files, you need to get more space.",
+ "oosCM3": "Switch account",
+ "opGguN": "Unused space ({freeSpace})",
+ "opIYM7": "Choose files to move",
+ "opuMLm": "Open my Dropbox",
+ "opwyb5": "University of Sydney",
+ "oqMULo": "Try again",
+ "oqW97K": "Sort by",
+ "oqcApb": "Your team admin has disabled all email notifications.",
+ "oqwS3H": "Manage the visibility, access and download permissions of everything you share.",
+ "orKaOG": "No access to report",
+ "orL+7x": "{member_name} can still view this folder",
+ "osCkIy": "At the bottom, next to 'Allow', select Add.",
+ "osTei0": "{count, plural, one {{count} file request was closed because the folder was deleted or you no longer have permission to edit the request folder. To reopen it, click \u2018Reopen\u2019 and choose a new folder.} other {{count} file requests were closed because the folders were deleted or you no longer have permission to edit the request folders. To reopen them, click \u2018Reopen\u2019 and choose a new folder.}}",
+ "osWcoo": "and {howMany} more",
+ "osYzDp": "Sync default",
+ "osl3qq": "You need a Dropbox {trademark_plus} or Business account to do this.",
+ "ot8ivW": "Invalid password.",
+ "otsE6R": "Too many members to restrict access. Try adding specific people to a new folder.",
+ "ouKfC+": "Enable comments",
+ "ouOuQF": "Install Dropbox on other computers you use",
+ "ouVx+5": "Admin dashboard to monitor sign-ins, devices and sharing activity",
+ "ov0fmg": "File recovery and version history",
+ "ovBgtz": "Forgotten your password?",
+ "ovaGPh": "Unable to load campaigns",
+ "ovhQZO": "Anyone in your Dropbox team with the link can view this folder. Downloads disabled.",
+ "oviAE3": "Try Professional for free",
+ "ow64Ns": "Invite members",
+ "owqExx": "{price}/family/month",
+ "owv/8t": "It is the parties\u2019 intent that any ambiguity under this HIPAA BAA be interpreted consistently with the intent to comply with applicable laws.",
+ "owvZ8t": "Managing this team is disabled.",
+ "ox2GQ/": "Open {folderName}",
+ "oxZeg7": "Anyone with this link can view the file.",
+ "oyC3Ha": "Unshare",
+ "oyDWAD": "How viewer info works",
+ "oz0V3s": "We were unable to unsubscribe from the file.",
+ "oz4auQ": "Close",
+ "ozBFaQ": "Click for more",
+ "ozRPYZ": "Number of users",
+ "ozstUd": "Send and share your Dropbox files on Gmail without leaving Dropbox. Choose a file, click 'Open with' and send the file with Gmail.",
+ "ozwny6": "Trusted team",
+ "p+J/9i": "{number, plural, one {Viewed {number,number} month ago} other {Viewed {number,number} months ago}}",
+ "p+qbry": "Confirm plan",
+ "p+tBI0": "View or edit",
+ "p/EeZW": "Delete",
+ "p/kUhO": "You don\u2019t have any groups yet.",
+ "p/mBGn": "Enter email addresses",
+ "p/vXRj": "Bring Zoom and Dropbox together",
+ "p0AvaL": "use another account",
+ "p0ZP1q": "Update email",
+ "p0waTh": "{showcase} is available for {trademark_business} Advanced and Enterprise users",
+ "p1EB+W": "You don\u2019t have permission to create a link to this file",
+ "p1FXFw": "People can edit, delete, comment on and add the file to their Dropbox",
+ "p1Pu8m": "Give your team a single view of all bugs. Create a shared bug tracker to capture, prioritise, assign and resolve bugs and issues.",
+ "p1ixxr": "For 15 or more licences, we accept payments by bank transfer. Please contact sales for an invoice.",
+ "p28rXC": "We\u2019ve successfully updated your account\u2019s billing information.",
+ "p2o5/+": "A shared link with your current sharing settings will be created for each item.",
+ "p3Vuim": "Make sure moved members can keep access to shared folders",
+ "p3bBTz": "An error occurred while saving to your Dropbox",
+ "p41TEs": "Days",
+ "p4Roc1": "Failed to add the shared folder.",
+ "p4X4PM": "Your changes will be applied to this team folder and any folders inside it.",
+ "p4fl6+": "Configure which features users have access to.",
+ "p4gcrG": "Integrations",
+ "p4xE80": "Links could stop working if they were created by a member who\u2019s moving.",
+ "p51v5t": "Store and sync your passwords across devices to sign in to websites and apps seamlessly. Only you can access your passwords \u2013 not even Dropbox can.",
+ "p58M12": "Creating new folder\u2026",
+ "p5OhNM": "Try free for {duration}",
+ "p5d0Ik": "Add your professional branding to shared files and folders.",
+ "p6H6bn": "Dropbox Paper is a new type of doc where teams can create together in a single space.",
+ "p6SPzn": "Online only",
+ "p6Z2iI": "Cancel",
+ "p6s3Z6": "Thanks for verifying your email address: {email}. You can now register API apps.",
+ "p6vtg+": "Individual",
+ "p7/5aE": "Create new account",
+ "p74dHz": "Your changes will become permanent.",
+ "p7AEI6": "Current browser",
+ "p7Q4jy": "New last",
+ "p7Y98q": "Showcase isn\u2019t available for teams who\u2019ve signed a HIPAA Business Associate Agreement.",
+ "p7bS//": "Admins only",
+ "p7gKoP": "Dropbox doesn\u2019t offer HIPAA support for Paper and Showcase at the moment.",
+ "p7uvd6": "Go to the partner portal",
+ "p87qAX": "Did you know you can request an instant refund for your account without the help of an agent? You must be the team admin of the account to request a refund of your Dropbox subscription. Find out who your team admin is. To request a refund of your subscription, sign in with your team admin account and click Request a refund of your Dropbox Business subscription to be taken directly to your cancellation page.",
+ "p8Qlvq": "Get Dropbox for desktop",
+ "p8kNzp": "Every version",
+ "p9C+y6": "Paste undone.",
+ "pA8w8P": "Legal holds",
+ "pAFsgL": "Cannot attach item",
+ "pAHD/N": "Report generation failed.",
+ "pAHhp/": "You\u2019ve chosen to transfer account files to a suspended member, {name}. This member won\u2019t be able to access any files until their suspension is lifted.",
+ "pAS2H5": "Couldn't copy, but it might be a one-off. Try reloading the page or ask us for help.",
+ "pApXZD": "Ctrl + v",
+ "pB0i/M": "Add folder to Dropbox",
+ "pBBkBv": "sharing activity report.",
+ "pC9IJd": "Accepted",
+ "pCBnN5": "Last sent on {date}, but you can resend emails as a reminder",
+ "pCTnJk": "Access on web",
+ "pCUIin": "{count, plural, one {Pasted {succesfully_copied_files} of {count} item.} other {Pasted {succesfully_copied_files} of {count} items.}}",
+ "pCdNnf": "Open in desktop app",
+ "pCtGKa": "Store PDFs next to Google Docs or any other file type. Now all of your project content lives in one place. And it\u2019s available automatically from any linked device.",
+ "pCwgi6": "Share files using {app_name} by selecting it from the Share menu in Dropbox.",
+ "pDYnvf": "Anyone in your Dropbox team with this link and the password can view the file. Downloads disabled.",
+ "pDnAQ5": "Show",
+ "pDtCQY": "More stories",
+ "pEl8uI": "Your {email} files will be in a private folder that only you and your admin can access.",
+ "pEsVhG": "Upgrade to Professional",
+ "pEzMEI": "Choose the permission for this app.",
+ "pFCFTf": "Dropbox Rewind ({maxRewindDays}-day history)",
+ "pFFWiX": "Computer backup",
+ "pFdCbC": "for the new billing schedule,",
+ "pGFAXd": "finite",
+ "pGqywX": "Work better together with {trademark_business}",
+ "pHFNKD": "The watermark could not be saved because the file was moved or deleted.",
+ "pHgeOK": "5 years",
+ "pHnGhq": "With {plusSpaceLongFormRounded}, you\u2019ll have plenty of room for files from all of your linked devices, stored securely in one organised \u2013 and easily accessible \u2013 place.",
+ "pHnJw0": "Download",
+ "pHsXLD": "Manage your team in the admin console",
+ "pI6QTt": "Restored version",
+ "pIGRYv": "Latest version",
+ "pIGUaD": "Just a couple more steps to set up Smart Sync, and you\u2019ll be ready to use Dropbox.",
+ "pIItso": "Please take a moment to review your Dropbox account to keep it secure.",
+ "pIK927": "This HTML file has a unique verification code tied to your account. After you download the file, we\u2019ll tell you where to upload it.",
+ "pIM+Sj": "Copy link",
+ "pJBjrf": "Store and sync your passwords",
+ "pJD2b7": "You can create a shared folder here.",
+ "pK5LJK": "Zoom out",
+ "pKMyCw": "Sign in to your existing account",
+ "pKNwhV": "We\u2019ve sent an email to {user_email}. Click the verification link in the email to continue.",
+ "pKneSX": "Request signatures, fax and edit",
+ "pL0M9g": "Add arrow",
+ "pL65cy": "To Support Individual Requests.",
+ "pLigS6": "Allow your team to enable camera uploads?",
+ "pLoES3": "Add your logo",
+ "pM+XGv": "Next slide",
+ "pMKGmg": "You need to sign in to see files and folders in your personal Dropbox that may cause syncing problems.",
+ "pMQcbv": "Compare plans",
+ "pMY2WY": "2. Click Select file to retrieve. Or just search for Dropbox files in the Canvas content editor.",
+ "pMeTFx": "You can now manage {team_name}",
+ "pMfs41": "You've used {usage} of {quota} ({percent,number,::percent})",
+ "pMvVuy": "{count, plural, one {Already sharing {count} folder with your team} other {Already sharing {count} folders with your team}}",
+ "pNbN+L": "{count, plural, one {Anyone with the link can view this file. Expires in {count} day. Downloads disabled.} other {Anyone with the link can view this file. Expires in {count} days. Downloads disabled.}}",
+ "pNfyG2": "Import from Gmail",
+ "pNyBcR": "Approve the request to join your team?",
+ "pO8IP6": "Your {plan} plan will be renewed on {date}. {billing_summary}",
+ "pOQued": "Share with members",
+ "pOXUrc": "File has no data, try adding again",
+ "pObRZH": "Your ticket history",
+ "pOrrz7": "You will no longer be able to sign in to the trusted team\u2018s admin console. If you want to regain access, they will need to send you a new trusted team request.",
+ "pPFsa4": "Show who viewed this file to team members and people who can edit.",
+ "pPonxL": "We\u2019re currently experiencing issues with our live support services (phone and chat). We\u2019re aware of the issue and are currently investigating.",
+ "pQ+CTN": "Successfully logged out of remote web session.",
+ "pQ9utX": "Optional",
+ "pQR6Hz": "When you disband:",
+ "pQrSTh": "{gigabyteSpace}",
+ "pR7fxF": "Other details",
+ "pRO4np": "Edit hold",
+ "pRd5Xx": "Open in Gmail",
+ "pRfx2F": "User management admins can add, remove and manage member accounts. Are you sure you want to continue?",
+ "pSiFZ2": "Scheduled billing period",
+ "pT4bcK": "Done",
+ "pTHVq3": "This Dropbox is only for work, and {team_name} will have admin control of this account.",
+ "pTMcB4": "Sign in with Apple",
+ "pTruEZ": "Now",
+ "pU/As6": "As activity occurs",
+ "pUBm7w": "Renaming failed.",
+ "pUKCTq": "Early access features haven\u2019t been subjected to the same reliability, availability and security testing as our publicly released features. Features in early access are subject to our",
+ "pV/Btf": "Continue",
+ "pVEqbN": "{paymentInfo}{br}{br}Charges will continue until you cancel, and previous charges won\u2019t be refunded unless it\u2019s legally required.",
+ "pVN801": "Save",
+ "pVNGVr": "Version ID",
+ "pVmsqE": "This Addendum is applicable (a) only to the Included Functionality and (b) only to those End User Accounts in a Dropbox team for which an Administrator, as an authorised representative of the Customer, has entered into this HIPAA BAA through that team\u2019s admin console. If the Customer manages multiple Dropbox teams and intends that all End User Accounts in the Customer\u2019s teams are covered by this HIPAA BAA, the Customer will need to enter into a separate HIPAA business associate agreement for each team via each team\u2019s admin console. Dropbox may expand the scope of the Included Functionality by providing written notice to the Customer, on which date this HIPAA BAA will automatically apply to the additional new functionality and features identified in that notice. If the Customer downgrades to a Dropbox service that is not included in the Included Functionality: (a) all obligations of Dropbox under this HIPAA BAA will terminate; (b) Dropbox will not have any obligation to return or destroy PHI transmitted to Dropbox after the termination of this HIPAA BAA and while the Agreement remains in effect; and (c) the Customer certifies that it has deleted any PHI it maintains in the Services and has ceased to create, receive, maintain or transmit PHI to Dropbox or within the Services. The Customer is solely responsible for ensuring that this downgrade will not cause the Customer or Dropbox to violate any applicable laws or regulations.",
+ "pW/ahW": "Continue with Dropbox",
+ "pWAwtE": "{name} moved {single_item_name} into {dst_folder}",
+ "pWUWWJ": "Not added",
+ "pWWaTq": "Allow admins to create groups that members can\u2019t modify",
+ "pWpyyE": "Sign in as member settings",
+ "pXTGpc": "Cancel your {trademark_business} subscription",
+ "pXao+C": "Close",
+ "pY6EzI": "Sorry, we couldn\u2019t find that target in your workspace",
+ "pY6KPZ": "{count, plural, one {{team_name} and {count} member} other {{team_name} and {count} members}}",
+ "pYAdxo": "{owner} ({team}) shared this with you.",
+ "pYEmSX": "Get Dropbox Plus to access files on your desktop while saving hard drive space.",
+ "pYtBgL": "This alert is triggered when a team member shares a file containing malware.",
+ "pYzGgU": "You may want to refer to them later",
+ "pZ5e/J": "\u2318 + Opt + {key}",
+ "pZSH2r": "Online-only files will take up hard drive space",
+ "paEy7B": "Select a file to see more details",
+ "padKbf": "Device",
+ "pakmyA": "Restore and delete files",
+ "pani5K": "Before you continue with your {trademark_business} purchase, please note that you have a Dropbox {trademark_plus} subscription managed through the {billing_store}. You must cancel it to avoid paying for two subscriptions.",
+ "pao+4G": "{name} renamed this file",
+ "paoscA": "Next",
+ "papAzf": "Edit, convert or annotate PDFs.",
+ "papBji": "Turn on",
+ "paxTZY": "{price} per {duration}",
+ "pbCwXC": "Dropbox Spaces",
+ "pbHfjm": "Members of {team}",
+ "pbK/Es": "See more details",
+ "pbYebK": "Tick this box so others can see your message when viewing this file.",
+ "pbumCN": "Access your files from anywhere with the Dropbox mobile app, and never miss a beat. You can even mark files and folders for offline access to make them available if you lose your Internet connection.",
+ "pbwqN9": "Remove",
+ "pc2qFp": "Advanced sharing controls",
+ "pcahlJ": "Devices and browsers reviewed",
+ "pcsTpL": "The zip file is too large.",
+ "pdDzm5": "This information can help you understand how your team usually uses Dropbox",
+ "pdENbn": "To enable Smart Sync, the Dropbox app must be\n installed with admin privileges.\n See if this affects your team by creating a Smart Sync readiness report.",
+ "pe8rcQ": "{count, plural, one {{filename} and {count} more item will be gone forever and you won\u2019t be able to restore them. Permanently deleting these items won\u2019t free up space.} other {{filename} and {count} more items will be gone forever and you won\u2019t be able to restore them. Permanently deleting these items won\u2019t free up space.}}",
+ "peFM3z": "Get Dropbox for personal use",
+ "penoSl": "Incorrect password. Please try again.",
+ "pepzFx": "On",
+ "pewwTv": "Set reminder",
+ "pezXnL": "View in app",
+ "pf47Pj": "Shared by",
+ "pf4y9P": "Move and rename files and folders in your Dropbox desktop folder",
+ "pfP1bY": "files illustration image",
+ "pfRbg3": "Member",
+ "pfzCOV": "Shortcut",
+ "pg9VBq": "Inviting...",
+ "pgBOLS": "If you remove a member, copies of any files held for them will be released and any exports that include their files will be removed.",
+ "pgC8uf": "Jane Smith",
+ "phqFAm": "The report includes the following:",
+ "piCn4s": "Share from Dropbox",
+ "piLFgU": "Invite your friends to join Dropbox and, for each one who installs Dropbox, we\u2019ll give you both {bonus_per_referral} of bonus space. If you need even more space, upgrade your account.",
+ "pibsYB": "Get advanced protection for company data",
+ "pifqnI": "You\u2019re currently on the {plan} plan, billed {schedule}. Your current {schedule} total is {recurring_total}.",
+ "pjDgz+": "Your transfer is on its way",
+ "pjef8d": "Work across devices",
+ "pjvZAD": "Send new code",
+ "pjyJun": "{count, plural, one {Couldn\u2019t delete {count} item.} other {Couldn\u2019t delete {count} items.}}",
+ "pkffme": "Preview next file",
+ "plBc8p": "File info",
+ "plHZl8": "Calendar",
+ "pllUQE": "Failed to download zip file.",
+ "plrOWA": "for the new plan,",
+ "plszlY": "Add OAuth redirect URI",
+ "plus-plus-more-actions": "More actions",
+ "pmEWSx": "Please enter a name that has {max_len} characters or less.",
+ "pmeVK5": "Remove {user_name} from plan?",
+ "pmkY4K": "{price} per month when billed yearly",
+ "pn1QE8": "Showing a preview for the content of sheet `{name}` is not yet supported",
+ "pnPTCp": "Log in successful.",
+ "poBxY2": "just now",
+ "poOIkv": "The easiest way to keep everyone organised",
+ "poQ8Ok": "Sort & preview files",
+ "poQPIW": "Edit policy",
+ "pompma": "Expired",
+ "poz0DD": "Previous first",
+ "pp6VNv": "Choose logo",
+ "pp9ILf": "Just now",
+ "ppfHwd": "You only have {storage} MB of space left in Dropbox.",
+ "pptEMp": "You can sign in to their admin console and adjust any settings such as security and sharing.",
+ "pqI08/": "Reset all members\u2019 passwords",
+ "pr57uQ": "Please enter a valid surname.",
+ "pr8wRm": "When should we move your team\u2019s Paper docs?",
+ "prLeJU": "{count, plural, one {{filename} and {count} more item will be gone forever for everyone, including anyone still using the shared folders. Permanently deleting folders won\u2019t free up space.} other {{filename} and {count} more items will be gone forever for everyone, including anyone still using the shared folders. Permanently deleting folders won\u2019t free up space.}}",
+ "psEScp": "Dropbox Paper is a new type of doc where teams can bring ideas to life in a single space.",
+ "psKHIM": "Could not attach item",
+ "psVIP5": "Tasks marked as complete here will unstar the email in Gmail automatically.",
+ "ptO1tM": "1 of 2",
+ "ptZ96W": "Unlock account",
+ "puUyqi": "Priority chat, email and business hours phone support",
+ "pv7yxv": "Cancel",
+ "pvLtDn": "These members won\u2019t be included in space limits and will have unlimited space.\n You can set custom limits on the individual\u2019s member page.",
+ "pvR+AO": "Upgrade",
+ "pvTd9t": "Allow Dropbox traffic for members only",
+ "pw/NZ0": "Remove",
+ "pw6Etg": "The folder name contains invalid characters",
+ "pwAu0w": "{space_quota}",
+ "pwmhyJ": "Now, let\u2019s zoom in",
+ "px0EJi": "Yes! You can change your payment method at any time.",
+ "pxGZm3": "New folder",
+ "pxf8F/": "Anyone in the {trademark_business} team with this link and password can view the file.",
+ "py5dlR": "Control who can create groups",
+ "py6ABK": "Start free trial",
+ "py8IGt": "3 years",
+ "pyKRcp": "Installation and desktop app issues",
+ "pyUCBn": "County",
+ "pyhY+s": "New users will join the team as soon as you invite them",
+ "pz/yrN": "Disconnect Zoom",
+ "pz0pE7": "Recent searches",
+ "pzO4Cd": "Active",
+ "pzXaHT": "Uninstall",
+ "pzXj86": "Password control",
+ "q+pC64": "Yes, I\u2019ve removed the ransomware from\n {infected_host_name}",
+ "q/uR05": "Get started with a Paper template",
+ "q08CHI": "GET THE FREE APP",
+ "q0DZmp": "Dropbox {plan_name}",
+ "q0Deoy": "Want to join the team with another email address?",
+ "q0SCGK": "New state",
+ "q0Xzd7": "Limited preview",
+ "q0Ydw5": "We were unable to uninstall the app. Please try again.",
+ "q0qppQ": "Use existing card ending in {last_4}",
+ "q1EqaH": "Learn more about {trademark_business}",
+ "q1L2OY": "{team_name} will soon be merged into your Dropbox team",
+ "q1rO5Z": "1 minute",
+ "q21u99": "Min {min_cost}/month",
+ "q2FKAy": "Last activity: {last_activity}",
+ "q2FM3d": "You\u2019ll need to create a second Dropbox account to keep work and personal files separate.",
+ "q2Th0X": "Disabled by your admin",
+ "q2bp4O": "While this hold is being updated, you can\u2019t edit, export, release or create a summary",
+ "q2fnyc": "{name} will have access to the admin console and {role_name} permissions. ",
+ "q2iccY": "Since",
+ "q2nsQW": "It looks as though you\u2019re trying to move a lot of stuff. {dropbox_basic} has a limit of {basic_space_quota}. Upgrade to {dropbox_plus} and get:",
+ "q2sIur": "A user is any person or role in your team with a unique email address. Each team member should have his or her own user licence. Users can link their Dropbox accounts to as many of their devices as they like (PCs, phones, tablets, etc.) at no additional charge.",
+ "q2skMY": "{count, plural, one {Anyone in your {trademark_business} team with this link and password can view the file. Expires in {count} day.} other {Anyone in your {trademark_business} team with this link and password can view the file. Expires in {count} days.}}",
+ "q2smew": "Error requesting call",
+ "q3KPUy": "To add or change a VAT number or request a tax refund, contact support.",
+ "q4/3wb": "Changes to this setting were not applied. Try again in a few minutes or contact support.",
+ "q4Ievc": "Cancelling your Dropbox {trademark_plus} subscription in the {billing_store} will not affect your {trademark_business} account.",
+ "q4nQXE": "Placement",
+ "q4sK13": "Invitation method",
+ "q4sw/l": "{trademark_business} accounts",
+ "q53NSg": "FAQs",
+ "q5IDfL": "Single admin login to manage multiple teams",
+ "q5LxGC": "You don\u2019t have permission to delete files in this folder.",
+ "q5XxwP": "Request sent.",
+ "q5dnyB": "{countDisplay} members",
+ "q67EUi": "Billing",
+ "q6W///": "To save hard drive space, right click on a file or folder, go to Smart Sync\n and choose online only.To sync content to your computer again,\n just open the file. Or right click, go to Smart Sync and choose Local.\nLearn more",
+ "q6m+2V": "{count, plural, one {Members of the file with this link and password can view. Expires in {count} day.} other {Members of the file with this link and password can view. Expires in {count} days.}}",
+ "q8Uy9s": "Your plan can be billed either yearly or monthly.",
+ "q8j/Yf": "Stuff you add here is automatically shared with your team.",
+ "q976ux": "You are already in a session.",
+ "q9IMae": "Amount",
+ "q9Lfl1": "You already have access.",
+ "q9LvRh": "Remove yourself as a trusted contact?",
+ "q9bBTQ": "Renew your account",
+ "q9p/of": "Select all",
+ "q9pobO": "Skip",
+ "q9yzUT": "Show {howMany} more",
+ "qAhMHO": "Key added.",
+ "qAkazE": "Administrative tools",
+ "qArP+G": "Start meeting notes",
+ "qB+2aM": "Join a team",
+ "qBCNfN": "Set team security and sharing permissions, manage admins and members.",
+ "qBSm4T": "You\u2019re not an admin for that Dropbox account",
+ "qBczQg": "How to get more space on your Dropbox account",
+ "qBpbaD": "Start numbered list",
+ "qCD/5i": "You\u2019re an admin for {host_team_name}, so we\u2019ll just take you straight to the admin console.",
+ "qCO+rN": "Collaborative work",
+ "qCzRTi": "Invoices and receipts for Dropbox subscriptions",
+ "qDI6Kp": "Web",
+ "qDYIgp": "Licence keys will be applied before any other form of payment method",
+ "qF9jH/": "Only from specific members",
+ "qFSjFH": "Try Dropbox Standard free for 30 days \u2013 no credit card required.",
+ "qFVQer": "Empty table",
+ "qFiAKo": "Planning to keep lots of data here?{br}Choosing this option can affect performance during the initial sync. Instead, clear the tickbox to let members sync only the content they need. Learn more",
+ "qFr8lq": "Tasks are synced from issues assigned to you.",
+ "qG3VMJ": "Manage access",
+ "qGjq97": "One Park Place / Hatch Street Upper / Dublin 2 / Ireland",
+ "qGq7mR": "New card",
+ "qH//qr": "Updating prices...",
+ "qH3QQm": "{dropbox_family} user",
+ "qHAlmH": "If you change your mind, you can still find it in your Dropbox app preferences.",
+ "qHChXk": "Sign-in approved",
+ "qHlb+A": "Extracting {file_name} to the {cdm_tmf_name} folder because you don't have edit access to the current folder \u2013 {time_remaining}.",
+ "qI5wEh": "Go to Help Centre",
+ "qIBZpx": "Upgrade to upload",
+ "qJ1kF5": "Send request",
+ "qKcsua": "Showcase is off by default for Enterprise teams. Today, Showcase doesn\u2019t support certain Enterprise features, including EMM, network control and device approvals. If your team is interested in enabling Showcase but makes use of these features, please be advised that these features are not currently supported by Showcase.",
+ "qKjTE6": "HR",
+ "qKw4US": "Collaborate",
+ "qKy/7I": "Column order",
+ "qL/GCx": "Tables",
+ "qLFsSc": "All devices",
+ "qLPMn5": "View on dropbox.com",
+ "qLPTw+": "How Rewind works",
+ "qLearS": "Video production plan",
+ "qLuZMM": "Send members a reminder?",
+ "qM1YcI": "{price} charged monthly",
+ "qM3BaJ": "Add an optional message...",
+ "qMMLEM": "Get the app",
+ "qN97Zx": "Mac",
+ "qNWaEl": "Uninstall the Dropbox system extension from your team\u2019s computers?",
+ "qO60N2": "Couldn\u2019t generate report. Try again once your other reports are complete.",
+ "qO62Db": "Audit logs with file event tracking",
+ "qO7xrs": "Folders, even entire projects, are just a click away. Open a file and it's synced automatically to your hard drive \u2013 it\u2019s that simple.",
+ "qP+0qH": "Cancellations",
+ "qP/KUy": "Finished restoring files.",
+ "qPChcb": "Is this related to a refund?",
+ "qPNKY9": "Link your personal account",
+ "qPYbFt": "Unable to connect {name}",
+ "qQ5fmk": "Nothing to summarise",
+ "qQI88A": "Invitations pending",
+ "qQWLzj": "Everything in {name}",
+ "qQZCs0": "Bring Dropbox Business to your business.",
+ "qQhzrN": "Copyright",
+ "qQllCR": "Give everyone access to the info they need. Organise key data, link important docs together and drop files into a centralised doc that teams can edit and access.",
+ "qR8UiH": "Collaborate with anyone in just a few clicks.",
+ "qRTK38": "Member of {teamname}",
+ "qRmALY": "You\u2019re all ready to install Dropbox on your computer",
+ "qRxCKl": "{trademark_business} is more than just secure file storage \u2013 it\u2019s a smart workspace where teams, tools and content come together.",
+ "qSWNUl": "Off",
+ "qSbKO6": "Protect your organisation",
+ "qSkDre": "See plan details",
+ "qSwUz+": "How to recover deleted files in Dropbox",
+ "qT1l41": "MP3, WAV, MID and more",
+ "qT7k0C": "upload to the folder \u2018{folder}\u2019 in your {team_name} Dropbox",
+ "qTxTQV": "You unarchived the {card_name} card with this file attached",
+ "qTxsJd": "Working with me",
+ "qV779v": "Send notifications to",
+ "qVc83D": "On",
+ "qW+bA1": "Improved document completion rates up to 96%",
+ "qW1J59": "1 day",
+ "qW3q74": "The password you entered is incorrect. Please try again.",
+ "qWDshh": "Everyone in {team_name} ({member_count_string})",
+ "qWHg+M": "Emailing...",
+ "qWMBWe": "{max_file_size} MB",
+ "qWYefQ": "Delete team",
+ "qWYni+": "Please update your billing information to change your plan.",
+ "qWyvXD": "Trusted teams",
+ "qXAvFp": "Downloads",
+ "qXBE0s": "An older version of a folder",
+ "qXHfbG": "Free trial ended on {date}",
+ "qXY4zf": "Remove watermarking",
+ "qYLW3N": "We\u2019ve received your help request and will be in touch as soon as we can to help you with your issue.",
+ "qYZxKw": "For members over the device limit, this will automatically remove and disconnect their oldest\n devices (by last activity) to meet the limit.",
+ "qYkIw8": "Your free trial period won\u2019t be affected. You won\u2019t be charged until after your free trial ends on {trial_end_date}, and your plan will transition without interruption.",
+ "qZG35t": "Email preview",
+ "qZTFM0": "Can\u2019t create folder.",
+ "qZU5kf": "Invite with a link",
+ "qZpUNY": "The folder \u2018{path}\u2019 has been deleted.",
+ "qaFEBf": "Only you have access to this folder",
+ "qaOkkY": "Set up",
+ "qaluwB": "Primary",
+ "qb5Ds+": "Take advantage of training and other resources for partners.",
+ "qboPoB": "On",
+ "qc+cIe": "What would you like to tell us about?",
+ "qc2+KU": "Everyone who can access {parent_folder_name} will be able to access this folder.",
+ "qcHpky": "Members of the file with this link can view.",
+ "qcJdtH": "Deliver any files quickly and easily",
+ "qcOd04": "Remove device",
+ "qcYVue": "Incoming",
+ "qd4DrR": "{filename} can\u2019t be opened. You may be able to recover this file. Why can't I open my web-based file?",
+ "qd97v7": "Now download the free desktop app.",
+ "qdLIlc": "Under 'Privacy and security', click Site settings {chevron_right} Cookies and site data.",
+ "qdXrq7": "Report still being created. We'll email you when it's ready.",
+ "qdc4tz": "New features and updates",
+ "qdhfl4": "Are you sure you want to remove extended version history? Once you remove it,\n you won\u2019t be able to add it back again. Your plan will change from one year of\n version history to the Dropbox {plan} length of {days} days\n of version history.",
+ "qdjxLY": "Uninvite",
+ "qeAbuo": "Error linking your computer to your account.",
+ "qeRA7T": "{count, plural, one {Move {count} item to\u2026} other {Move {count} items to\u2026}}",
+ "qeaYa+": "Andrew Hall, Product Manager",
+ "qfF5dJ": "From",
+ "qfM8P6": "Email input",
+ "qfrsGB": "Admin creates a report in Dropbox Business insights dashboard for members outside team",
+ "qgCi5t": "Man walking down a street.",
+ "qgM6UX": "Change confirmation modal",
+ "qgeqX/": "Default sharing settings",
+ "qh9CE5": "by {locked_by}",
+ "qhG5Ev": "You archived the {card_name} card with this file attached",
+ "qhHpFU": "These devices are linked to your personal Dropbox account.",
+ "qhHpfg": "Access folders wherever you are, even with no Internet connection.",
+ "qhjIx0": "500-999",
+ "qi/kLt": "5000+",
+ "qi9JJx": "Enable Showcase",
+ "qiGMuD": "Put your documents, photos and media into your Dropbox folder on one computer and they\u2019ll automatically appear on any of your other computers that also have Dropbox installed. Learn more",
+ "qioX4z": "Remove members of \u201c{folder_name}\u201d folder?",
+ "qix+X+": "With Smart Sync, online-only files save hard drive space and are ready when you need them.\n Local files are downloaded to your hard drive and are always available.",
+ "qiyW2s": "Basic",
+ "qj0V4t": "{plan_size} of space for secure storage",
+ "qjiCgI": "{in_progress_exports, plural, one {{in_progress_exports} preparing\u2026} other {{in_progress_exports} preparing\u2026}}",
+ "qjpddh": "Easy way to get legally binding eSignatures",
+ "qjqn3o": "Work with external clients",
+ "qjrF3n": "Edit backup method",
+ "qk2EK9": "On 31 January, Showcase is going away. Whilst we're sad to say goodbye, we've added some new tools we think you'll like even more.",
+ "qkhEgf": "Ai Ando, Account Supervisor{br}Dentsu",
+ "qklV/o": "Plan billed yearly",
+ "qkmyRi": "This link allows viewing. Now copy and share it.{br}{copiedUrlDisplay}",
+ "qkudum": "This folder will be saved instantly to your Dropbox and downloaded to all of the computers linked to your account.",
+ "qmJ/KK": "From",
+ "qmkIog": "You haven\u2019t given any third-party apps access to your Dropbox account.",
+ "qmmFch": "Did we label the right info types? Anything we missed?",
+ "qmzNq4": "You purchased Dropbox {dropbox_plan} through Google Play.\n To make changes to your subscription, visit the Google Play Store.",
+ "qn5twm": "Member requests were sent to the admin",
+ "qnWrSp": "You\u2019ll join the team using {email}, and we\u2019ll help you sort your personal files into your new account. ",
+ "qoTF5e": "Your account won\u2019t be merged with {team_name}, but you need to change the email address you\u2019re\nusing with it.",
+ "qoTmgt": "Retry",
+ "qoinF9": "You can switch to your other Dropbox at any time.",
+ "qokNeH": "Try free for {trial_days} days",
+ "qonAGY": "This sheet is loading",
+ "qoo+pW": "Remove",
+ "qoqdPt": "Welcome to Dropbox!",
+ "qouiYu": "Your shared folders/files will show up here so they\u2019re easy to find.",
+ "qp3NgR": "You",
+ "qpSeLW": "Connect Dropbox and {app_name}",
+ "qpa1ie": "Reset two-step verification for {user_display_name}",
+ "qpkffV": "If you think this was a mistake, invite them to join on the Members page.",
+ "qpwvDp": "Brand guidelines",
+ "qq+9Xu": "Shared meetings",
+ "qqXJyB": "Need to send more than {file_size_limit}? Upgrade to {premium_product_name} to send up to {premium_file_size_limit} per transfer for {plan_price}.",
+ "qqzCr0": "Please close the other tab and try again.",
+ "qr5jLe": "The desktop app syncs files on your computer to dropbox.com, so you can get to your stuff from anywhere.",
+ "qrH/PP": "Import Google contacts",
+ "qrJLL0": "Your admin has required that you enable two-step verification. Please log in to dropbox.com from a web browser to do so.",
+ "qrfmd1": "Your current plan details (your {trade_mark} subscription ends on {next_billing_date})",
+ "qrxq+C": "{br}{br}We added a folder called Dropbox (pre-recovery) to the\n computer that includes everything {infected_user_familiar_name} had in their\n Dropbox before we restored it. This folder won\u2019t be synced. It will contain\n encrypted files, but this doesn\u2019t mean their computer is infected. If\n anything is missing in Dropbox, check that folder first. Otherwise,\n {infected_user_familiar_name} can delete the folder.",
+ "qsSZwj": "You don\u2019t have permission to perform this action.",
+ "qtEHDj": "Can\u2019t upload to Dropbox",
+ "qtMP6G": "Trusted team admins can:",
+ "qu/Xu2": "Resubscribe",
+ "quIclB": "{count, plural, one {Anyone in your Dropbox team with the link can view this folder. Expires in {count} day. Downloads disabled.} other {Anyone in your Dropbox team with the link can view this folder. Expires in {count} days. Downloads disabled.}}",
+ "quJo6h": "Folders",
+ "qumvpA": "Restricted Use of Services.",
+ "qur9Nb": "Before exploring your vault, set a 6-digit PIN that you\u2019ll use to unlock it on all of your devices.",
+ "qvN0R5": "Create account",
+ "qvPLEV": "Set up BAA",
+ "qvh/5X": "Education",
+ "qw0cNj": "BETA",
+ "qwTaiu": "Get a quick response from the Dropbox support team for anything that comes up.",
+ "qwWPBM": "Cancel",
+ "qwd/ep": "Create a central source of truth for your team. Gather requirements, add code snippets and designs, and get input from stakeholders where everyone can be involved.",
+ "qx0cgi": "Back",
+ "qx0o+q": "Invite team members to join you.",
+ "qx99Uk": "A version needs to be approved before the campaign can be approved",
+ "qxJhIS": "Recycling:",
+ "qxOb+s": "Disband team and log out",
+ "qxfDnR": "Loading...",
+ "qxgfih": "External domains",
+ "qxj4ZU": "Hide certain members from directories and suggestions",
+ "qxnFAj": "If you require an invoice to make a payment, please contact our sales team.",
+ "qy/LOK": "{count, plural, one {When you submit this form, you\u2019ll be billed straight away for your {trademark_business} subscription\n and any additional licences, but you\u2019ll receive the remaining {count} day of your trial for free.} other {When you submit this form, you\u2019ll be billed straight away for your {trademark_business} subscription\n and any additional licences, but you\u2019ll receive the remaining {count} days of your trial for free.}}",
+ "qy1Y7J": "Web browsers",
+ "qy79ri": "Your account will be downgraded to {dropbox_basic}, and you\u2019ll lose access to the plan\u2019s storage and features, and the Family Room folder",
+ "qyUkt9": "Cancel",
+ "qyfA3K": "new-campaign-name",
+ "qymE+7": "{userCount, plural, one {{userCount,number}+ user} other {{userCount,number}+ users}}",
+ "qzHXcn": "Your changes have been discarded.",
+ "qzZUVc": "Create a new link",
+ "r+IKuD": "Suggested contact from your domain",
+ "r+xJ//": "{count, plural, one {As a member of the parent folder listed below, {member_name} can still view the contents of \u201c{content_name}\u201d.} other {As a member of the parent folders listed below, {member_name} can still view the contents of \u201c{content_name}\u201d.}}",
+ "r0YtNn": "Use security alerts to track threats in your organisation.",
+ "r0vhjJ": "Go back",
+ "r1Kfvk": "Successfully connected your Google Calendar",
+ "r1SqDA": "Dropbox Transfer is the safe, easy way to deliver final files of any size to colleagues and clients. Set custom passwords and expiry dates to protect your work, and confirm delivery with download notifications.",
+ "r1wY/6": "When they\u2019re totally full, folders will stop syncing and members won\u2019t be able to add new files. To get more space, upgrade to {trademark_business}.",
+ "r2H8hJ": "Scope.",
+ "r2WuDp": "New comment",
+ "r2s2Or": "Simple, secure file storage and sharing, with built-in tools to help you get and stay organised.",
+ "r2uRtk": "Automatic time zone",
+ "r3T3xT": "Copy",
+ "r3W9KO": "Jun",
+ "r3oIqT": "Choose your plan",
+ "r3vKLt": "The document was archived.",
+ "r3vXam": "What\u2019s changing?",
+ "r409m+": "Go back one week",
+ "r43Wgi": "Two team members using Dropbox to collaborate on work from a laptop",
+ "r43yZS": "Avoid being charged for your Dropbox {trademark_plus} subscription",
+ "r445sC": "Members removed from {folder_name}.",
+ "r4d7qa": "Manage everything for admins and members in this team.",
+ "r4pJfS": "Dates",
+ "r4whCV": "Choose your billing cycle",
+ "r53Tuh": "Open Information blade",
+ "r5DO+A": "Frequently asked questions",
+ "r5Iy0S": "{name} \u2192",
+ "r5WMyk": "Extension removed.",
+ "r5k+Ef": "{count, plural, one {{count} file uploaded} other {{count} files uploaded}}",
+ "r60TD+": "Optional",
+ "r60eQJ": "Oops! No contacts here.",
+ "r6cBCT": "From {transition_date}, your new {schedule} total will be {recurring_price}.",
+ "r6me8b": "{device_name} unlinked.",
+ "r6q13e": "Shared folder",
+ "r89T4k": "You're low on space",
+ "r8Mpyq": "{owner_name} ({owner_team_name})",
+ "r8NbJ9": "Too many incorrect attempts. Please try again in a few minutes.",
+ "r8n/88": "You restored {item_name}",
+ "r92/D4": "Deliver large files easily with {dropbox_transfer}. Request content directly from any client. Sign contracts in seconds. And get credit for the hard work by adding your branding to shared links.",
+ "r98g8J": "Moved or renamed",
+ "r9HHX9": "Keep your files private with multiple layers of protection from the service trusted by millions.",
+ "r9dVED": "Your plan includes as much space as you need.",
+ "rAPGQb": "Can\u2019t open this folder",
+ "rAbvnu": "Account:",
+ "rAl/Dl": "We have received your request and will get back to you shortly.",
+ "rAo2Vy": "Deactivated",
+ "rB4BsH": "Suggested team members",
+ "rB5wvQ": "Report period:",
+ "rBSlLP": "There was a problem dismissing your selection",
+ "rBUZLr": "{count, plural, one {You and {count} other edited this file} other {You and {count} others edited this file}}",
+ "rBgywO": "Name was invalid.",
+ "rCRRO0": "Resolve tickbox",
+ "rCUwSi": "How version history works",
+ "rCzwEP": "Remove my admin permissions",
+ "rDZCUy": "Please make sure you\u2019re logged in with the correct account and click the button below to verify.",
+ "rEOsfj": "Delete link to \u201c{filename}\u201d?",
+ "rEWs7c": "They\u2019ll no longer be an admin, and they won\u2019t be able to access their team\u2019s admin console.",
+ "rEk4Rp": "Office add-in",
+ "rF8YNu": "Rewind",
+ "rFTQ8h": "The Dropbox website requires JavaScript.",
+ "rFwHYL": "You don\u2019t have permission to add to this folder.",
+ "rGM0cW": "1 item couldn\u2019t be permanently deleted",
+ "rGOfhl": "Dropbox learn",
+ "rGVw1L": "View users",
+ "rGwHrj": "Created shared folder, failed to sign in, reset password",
+ "rH6G4E": "Right arrow",
+ "rHOoG3": "Light",
+ "rHRVYx": "by {event_name}",
+ "rHXOII": "Reset membership",
+ "rI2kiM": "Select files",
+ "rIF3oV": "Uploads will be disabled one day after the deadline.",
+ "rIir19": "Dropbox",
+ "rJEV8X": "Dropbox folders",
+ "rJHa1d": "Go up a folder",
+ "rJPZ7z": "Team members",
+ "rJUHer": "Tell us what you like or don't like",
+ "rJUytN": "Go forward one week",
+ "rK0mlB": "Sync all of your passwords to Dropbox Passwords",
+ "rKBrhz": "If you work on files with other people, here\u2019s how to prevent unwanted changes.",
+ "rKue5Z": "Invite a team",
+ "rKv3OG": "
No, anyone you\u2019ve shared a showcase with can view it, even if they don\u2019t have a Dropbox account.
\n
However, to leave comments on your showcase, the people you\u2019ve shared it with will need a Dropbox account and need to be signed in to that account.
",
+ "rKzsbt": "Manage account",
+ "rLKCEv": "FTP",
+ "rLKsQF": "Only the owner of {file_name} can move it to the {team_name} team space.",
+ "rLPr3P": "Let me know when someone downloads",
+ "rLQ0Wi": "Restricted Disclosure.",
+ "rLQXz1": "Desktop & web",
+ "rLXEzj": "Work photo",
+ "rLgZyR": "{price}/month (save {savings})",
+ "rLhqjo": "You create lots of great work, especially when you collaborate with clients and your team. And as projects add up, your hard drive space eventually runs out. But with Smart Sync, space is no longer an issue.",
+ "rLjiMm": "deleted font",
+ "rLpqKx": "The owner hasn\u2019t granted you access to share this file. Please ask them to grant you access.",
+ "rM13pn": "Or find out more about {shortBackupPlanName}",
+ "rM9AyJ": "Created",
+ "rMXssg": "Allow members to lock editing of a file while they\u2019re working on it",
+ "rMu3ZT": "Couldn\u2019t upload. Try again in case it was a one-off, or reload the page.",
+ "rN5x2A": "upload to your team\u2019s workspace",
+ "rNMBTS": "{value} KB",
+ "rNUov2": "Your current plan doesn\u2019t support switching to the Family plan.",
+ "rNrCBf": "Audio",
+ "rO5uvf": "You turned on commenting for {entity}",
+ "rOCA1A": "Settings",
+ "rOEIS1": "What do you do?",
+ "rOFcNI": "(Includes 2 months free)",
+ "rOHvMe": "Quickly share work, photos and even large folders with anyone.",
+ "rP6UV8": "An error occured while sending the email",
+ "rPSCOl": "Invite to join",
+ "rPaNGq": "When people share folders and files with a secondary email, content is automatically routed to this Dropbox account. How do secondary emails work?",
+ "rPshns": "If selected, the corresponding 'Remind me later' button text value can be set by the version",
+ "rQBbRC": "IP address",
+ "rQJFG5": "As much space as you need",
+ "rQOIK5": "Contact name",
+ "rQbc7J": "Sign-in required for this link",
+ "rR3L5Q": "Yes. At the checkout, you have the option to send this gift later.",
+ "rRDvGe": "Email link",
+ "rRJb6A": "I have uploaded the HTML file",
+ "rRTQRh": "{infected_user_familiar_name} can now access their recovered files at\n dropbox.com. These files are also ready to be synced to the affected\n computer. Depending on the Internet connection, it might take a little while for all\n files to be synced to that computer. For added security,\n {infected_user_familiar_name} will need to sign in when accessing Dropbox on their\n desktop. Once {infected_user_familiar_name} signs in, Dropbox will start\n syncing.",
+ "rRXTCc": "Couldn\u2019t create report. Please try again after the current scan.",
+ "rSAb+a": "Unmanaged users",
+ "rSHYZt": "Choose files to add to the {team_name} team folder. You can also drag and drop files onto this page to upload them. Anyone who joins the {team_name} Dropbox will have access to files in the team folder.",
+ "rSX+PZ": "Open in Jira",
+ "rSeA97": "More",
+ "rSy2De": "BINDER",
+ "rTT3LL": "Have a look at our paid plans",
+ "rTaV0v": "This will put the folder over its limit of {member_limit} members. Learn more.",
+ "rTbWXd": "Very strong",
+ "rTqbgt": "Sign in to {host_team_name}?",
+ "rU+yHG": "Maine Pointe Consulting company logo",
+ "rU7/HG": "Time\u2019s not up",
+ "rV+Py+": "Couldn\u2019t save markup. Refresh the page to try again.",
+ "rV0u1M": "views",
+ "rVBnmq": "Thanks for confirming.",
+ "rVKxGd": "7 days is the minimum",
+ "rVqtj7": "You and your family can sign in from anywhere and from any device: Windows, Mac, iOS and Android. Whether you\u2019re at home or on the go, personal and family content is always within reach.",
+ "rVup3h": "Continue without making changes?",
+ "rVyj57": "We hope you enjoy the new design.",
+ "rVz+0L": "{count, plural, one {{name} added {count} item} other {{name} added {count} items}}",
+ "rW6ePW": "This includes all files and folders outside the purple member folders. It comes with 2 GB of shared space. Learn more",
+ "rWEPV0": "Shared folder, {alt}",
+ "rWb8d2": "Dropbox doesn\u2019t support your browser. For a better experience, upgrade to the latest version of a modern browser such as Chrome, Firefox, Edge or Safari.",
+ "rWnLvq": "Page {page}",
+ "rY7b9W": "Team members with edit access can add people.",
+ "rYiGmY": "Email",
+ "rYkZrO": "Event",
+ "rZcZPA": "Error loading calendar events",
+ "rZjT/5": "You\u2019re the only one here",
+ "rZnlRM": "Red",
+ "rZtGe7": "Admin role",
+ "ra1icr": "Export to\u2026",
+ "raJYDl": "Keep your stuff safe with {dropbox_plan}",
+ "raLp6W": "Sign in",
+ "rawfdP": "Launch plan \u2192",
+ "raxpN5": "Code",
+ "rbSlq+": "Dropbox Family space",
+ "rcbdKo": "Sync your passwords and access them across devices",
+ "rcp4Rc": "We\u2019ve sent an email to {user_email}. Click the verification link in the email to continue.",
+ "rd8+Mu": "deleted image",
+ "rdpIKz": "Redirecting you to the file preview.",
+ "reDVDJ": "Communication",
+ "reTJtz": "Roles & statuses",
+ "rew2qC": "Surname",
+ "rfJRAQ": "{currFileIndex} of {totalPreviewableFiles}",
+ "rfpSm4": "Want more devices linked, {space_short_form_tb} of space and more? Upgrade to {dbx_plus}",
+ "rg/kpn": "Remove {user_name} from '{'group_name'}'",
+ "rgDvLb": "Check team activity to see all files",
+ "rgIel5": "Our business needed features that {trademark_business} doesn\u2019t have",
+ "rgQEf4": "You are changing to {schedule} billing. From {date}, we\u2019ll bill you once a month. Your new {schedule} total will be {scheduled_total}.",
+ "rgYQhy": "User management admins",
+ "rgvTb4": "What is the difference between Smart Sync and Computer Backup?",
+ "rh8wwv": "Free trial (no credit card needed)",
+ "rhXtn/": "We were unable to complete your request.",
+ "rhrYre": "Let team members copy Zoom cloud recordings to Dropbox automatically",
+ "rhtU/5": "Options for team member {name}",
+ "ri+YoJ": "Plan",
+ "ri68pm": "Copy the link",
+ "riHCIk": "More than 500,000 teams use {trademark_businesss}",
+ "ribcyl": "Use text messages",
+ "rihiFD": "Something went wrong. Please try again.",
+ "riqC16": "Access all of your Dropbox files from your desktop without taking up all of your hard drive space.",
+ "rj7/iE": "Disconnect {workspace_name}?",
+ "rjbpT/": "Name",
+ "rjoHwX": "Canvas integration",
+ "rjtXU9": "Create group",
+ "rjzWWE": "Meeting notes",
+ "rkKFQh": "Security codes will be sent to your mobile phone",
+ "rki01J": "Purchase now",
+ "rl500C": "The owner hasn\u2019t granted you access to this link",
+ "rldvVA": "256-bit AES and SSL/TLS encryption",
+ "rlsxW9": "Dropbox Transfer",
+ "rmYhno": "Access restricted. Not shared with everyone in {team_name}.",
+ "rn6IdR": "Saving...",
+ "rnNUn1": "Generate new codes",
+ "rnb7YE": "Insert {description}",
+ "rnh6DR": "Remove manager permissions from {name}?",
+ "rnnqHp": "To",
+ "rnuyM8": "Creating view link...",
+ "rnywgf": "Couldn\u2019t save preference",
+ "rnzApw": "Layout",
+ "roSJGZ": "Tasks help you manage work across all of the places where you do work. It works particularly well after you\u2019ve connected a couple of different apps.",
+ "rocNNI": "You\u2019re signed in as {logged_in_name}.",
+ "rp1Lxc": "Couldn't copy the link.",
+ "rp1wT2": "Please enter a valid contact telephone number.",
+ "rpSaTb": "Previous groups",
+ "rpYp9O": "Groups",
+ "rqS5l+": "Add trusted contact",
+ "rqVsJS": "Your account will be merged into the {team_name} Dropbox account, where you\u2019ll have\na private area for your stuff. {team_name} admins will be able to manage your files and Paper docs.\nYou\u2019ll sign in with {work_email}.",
+ "rqoF7x": "Mark as unread",
+ "rs4C4L": "We couldn\u2019t find a Dropbox account for {email}. Would you like to create one?",
+ "rsdCyM": "Postcode",
+ "rskFRz": "Free trial ends on {date}. To keep {trademark_business}, add your billing info.",
+ "rt+Eez": "Skip",
+ "rtO4xq": "Verified",
+ "ru4Qhg": "If you remove {name}, they won\u2019t be able to see future changes to this shared folder. Bear in mind that anyone who can access {parentname} will still be able to access this folder.",
+ "ruR+3P": "Install Dropbox app",
+ "ruXNAR": "We couldn\u2019t find a Dropbox account matching the email address {responseemail}. Sign up for a new account or get help signing in to an existing account",
+ "rugm6C": "Settings & sign-in",
+ "rulDg+": "Team collaboration",
+ "rupZo7": "To help you download Dropbox, we\u2019ll add a temporary extension to your browser.",
+ "ruwa4d": "Remove extended version history",
+ "rvADKY": "Are you sure you want to delete {filename} from the shared folder \u2018{shared_folder_name}\u2019?",
+ "rvkufC": "Your markup will be lost if you exit before saving this file.",
+ "rwVLmk": "The other team retains content using the data governance add-on. The content will be lost if you merge without the add-on. Contact us for help or talk to your Dropbox representative to purchase the add-on.",
+ "rwgI/k": "Whether you prefer comments, requesting docs or private feedback \u2013 these tools can help.",
+ "rx1/M7": "Chat with sales",
+ "rx1FQL": "If you already use Dropbox, moving to a Business account is easy! All of your content will stay the same \u2013 your files will stay where they are, and all of your settings (such as shared folder relationships and linked devices) will remain the same. For admins, all of your team members who already use Dropbox will have the same experience, and anyone without an existing Dropbox account will be prompted to sign up when you send them an invitation. For {trademark_plus} users who switch to {trademark_business}, any remaining credits will be returned as a pro rata refund to the original payment method.",
+ "rxUEj5": "{count, plural, one {Let {count} member know you unlocked editing:} other {Let {count} members know you unlocked editing:}}",
+ "rxk1CD": "Send a reminder",
+ "ryRNo2": "To date",
+ "rySdAO": "Last completed: {datetime}",
+ "ryjgt5": "Need to send more than {file_size_limit}? Upgrade to the {premium_product_name} to send up to {premium_file_size_limit} per transfer.",
+ "rz24qK": "Deleted forever for everyone, including anyone still using them.",
+ "rzQc7n": "You need an additional {space_needed} in your Dropbox to add this folder.",
+ "rzaBEu": "Cancelled successfully",
+ "s++UtU": "Sign in",
+ "s+OPqt": "",
+ "s+lUgT": "You\u2019ll need to verify your new email address in order to finish updating your email.",
+ "s+pc7h": "Show {number} more",
+ "s/Hxx+": "The username portion of the email address is invalid (the portion before the @)",
+ "s/X4yk": "Recovery codes",
+ "s0JtSZ": "invalidate",
+ "s0mqEc": "Don\u2019t ask me this again",
+ "s0pcU+": "you@example.com",
+ "s10RHv": "Close",
+ "s1Aw0o": "Go to admin console",
+ "s1GFW8": "Dropbox Paper: your team\u2019s collaborative workspace",
+ "s1Kp4P": "Couldn't save as PDF",
+ "s1NBO2": "Get an overview where you can configure settings, such as authentication, in the best way for your organisation.",
+ "s1cYKm": "Not allowed",
+ "s26ZRw": "Free from Dropbox",
+ "s2JjsZ": "Paper embeds any type of content beautifully and automatically. So, whether your team is making mood boards in Pinterest or choosing video clips from YouTube, everything related to their project is in one central place. And, because Paper is from Dropbox, the files you embed from your account are updated automatically whenever the file changes.",
+ "s2SQzc": "{name} will no longer be able to add and remove managers, change group information or delete the group.",
+ "s2SsJR": "Timeline",
+ "s2W7dS": "Add secondary email address",
+ "s2XJI8": "More space needed",
+ "s2YL0G": "Preview your brand",
+ "s2bK+3": "Tell us what problems or questions you have with your Dropbox account.",
+ "s2z0yg": "{count, plural, one {{count} item} other {{count} items}}",
+ "s39/fs": "PDF",
+ "s3RWxF": "Contact",
+ "s3VU9p": "People",
+ "s3buDx": "Centre-weighted average",
+ "s3x30B": "Upload files and they\u2019re synced securely across all your devices, ready for you when you want them \u2013 even offline.",
+ "s4+SaS": "{dropbox_passwords} isn't available on this computer yet",
+ "s4ib8d": "PIN added.",
+ "s56tD6": "Ensure your files get delivered",
+ "s5DXRz": "Select recipients",
+ "s5zwx7": "Removing member...",
+ "s6G1H4": "Success \u2013 your personal account has been created!",
+ "s6X/wC": "Here\u2019s what you get with {trademark_business}",
+ "s6iLg8": "Surname",
+ "s7DE4+": "You can also choose to keep your Dropbox {trademark_plus} subscription by going back and selecting \u201cKeep my account personal\u201d.",
+ "s83oV3": "{count, plural, one {{count} licence} other {{count} licences}}",
+ "s86tt6": "Couldn\u2019t send request. Try asking to join in person.",
+ "s87tDK": "We blocked this link for safety",
+ "s8lIYX": "{count, plural, one {Moved {succesfully_moved_files} out of {count} item to {folderName}. Shared folders can\u2019t be moved to other shared folders.} other {Moved {succesfully_moved_files} out of {count} items to {folderName}. Shared folders can\u2019t be moved to other shared folders.}}",
+ "s9wEZx": "Keep trial",
+ "sAU1dD": "Looking for something else?",
+ "sAZa2U": "Rename complete.",
+ "sAcvdZ": "We\u2019ll ask you some customisation questions in a moment.",
+ "sAkbY3": "Lock vault",
+ "sAxJWH": "Made {name} the owner",
+ "sB3BtA": "Dropbox Transfer files",
+ "sBgsKx": "{display_name} now has a Dropbox Basic account. You can also invite 1 more member at no extra charge.",
+ "sCHiez": "Go to {reseller_name} to view or make changes to your account details.",
+ "sCMFzX": "The watermark could not be saved because you do not have permission to save to this folder.",
+ "sCwU2b": "Two-step verification is already enabled. Did you enable it in another window perhaps?",
+ "sD1sax": "Go to Dropbox Help",
+ "sDAUf8": "The Dropbox EMM app will stop working, and employees will be prompted to use the normal Dropbox app to access company files.",
+ "sDC4Ax": "Create and present with Dropbox {trademark_professional}",
+ "sDGta5": "Cloud editors",
+ "sDPjE1": "
Cancelling your {currentPlanName} plan? Automatically back up one computer \u2013 regardless of size \u2013 for half the price of Plus.
{backupPlanName} is {monthlyPrice}/mo and lets you easily recover your files if things go wrong.
",
+ "sE7CkZ": "or try free for {trial_length} days.",
+ "sE9Ims": "The Dropbox support team is here for you. Chat to resolve any issues that come up.",
+ "sECMJn": "Changing name...",
+ "sETSJK": "unique views of links shared externally.",
+ "sEWTc2": "Integrated desktop experience",
+ "sEqbvJ": "High",
+ "sEukn4": "Loading...",
+ "sExBV7": "Type",
+ "sFJ+Hm": "Open \u25be",
+ "sFTqZL": "Dropbox will take appropriate measures to ensure that any agents and subcontractors used by Dropbox to perform its obligations under the Agreement that require access to PHI on behalf of Dropbox are bound by written obligations that provide the same material level of protection for PHI as this HIPAA BAA.",
+ "sFivS0": "{file_name} has other shared folders inside it. Try moving each shared folder individually.",
+ "sFqbWh": "Anyone you add to the folder will automatically get the latest version of files in it.",
+ "sG08Zk": "Start your free trial",
+ "sGKSF8": "Learn more",
+ "sGoZLi": "What to do after rewinding",
+ "sGx9TN": "Access your admin console",
+ "sH4isO": "New email",
+ "sHmFVT": "Click here",
+ "sHvl7E": "Be ready to tackle a variety of circumstances by creating detailed plans that support your organisation\u2019s overall emergency and continuity plan.",
+ "sHyWgn": "Starting upload...",
+ "sI6fMU": "Manage visibility and access to shared files with password protection, download permissions and expiry dates.",
+ "sIVZG2": "Remove {name}?",
+ "sIclY/": "Plan change summary",
+ "sJDevB": "For the full contract, invoice copy and remittance information, please refer to your copy of the executed contract.",
+ "sJKxkq": "Please note:",
+ "sJRsRx": "Select item",
+ "sKIwWI": "You're all set with this step. You haven\u2019t linked any apps to your Dropbox account. Learn more.",
+ "sKmCFq": "OK",
+ "sKmMCG": "Remember to name it",
+ "sL5QQd": "Find out more about Transfer",
+ "sLA3F9": "Save hard drive space",
+ "sLU6rL": "Couldn\u2019t copy to clipboard",
+ "sLvLeQ": "Someone saves and syncs their Facebook account credentials across devices using Dropbox Passwords.",
+ "sMPet7": "Can\u2019t get to your assignments right now. It should work later.",
+ "sMSm3v": "Downloads",
+ "sMb5Hr": "Top alert types triggered over the last 7 days",
+ "sMo6pN": "Contact us to change your billing schedule.",
+ "sMy5PN": "Zoom in",
+ "sN1hXL": "Contacts",
+ "sN2nOJ": "Are you sure you want to leave?",
+ "sN5g4y": "Watermarking file...",
+ "sNr43t": "",
+ "sO5j/T": "Remind me later",
+ "sOGxWm": "{professional_storage_tb} ({professional_storage_gb})",
+ "sP9Fn8": "What are the names and emails of the affected users?",
+ "sQFnnu": "A screen capture demonstrating the header customisation capabilities within the Showcase feature of Dropbox. The user adds a logo and title to the showcase page, then selects the full-width layout for the featured image in the header. Then the image zooms out to reveal the completed header for a showcase page.",
+ "sQbTsQ": "Request sent. Once it\u2019s been approved, you\u2019ll get an invitation from the team.",
+ "sQeztr": "Help your colleagues understand your personality, working style and goals.",
+ "sQwGLA": "Bear in mind that members won\u2019t be able to rewind at all, including any of their own content.",
+ "sRrzyE": "Everyone in your team can access this folder",
+ "sSGsrT": "Set whether the Dropbox desktop app opens by default",
+ "sSJ+PD": "Remove everyone in {team_name}?",
+ "sSXjJC": "Your team has used all of its data transport API calls for the month.",
+ "sSXxCC": "Access level",
+ "sSt7o/": "from {location}",
+ "sTTJTA": "Present file in Zoom",
+ "sTZgnw": "Invite",
+ "sU2eXg": "File backup",
+ "sV/k1C": "Share your work with increased control and security",
+ "sVMh6j": "Add a team you manage",
+ "sVSjKv": "If you think this was an error, request access to {filename}.",
+ "sVWQjW": "When people work on this file, you\u2019ll see their activity here.",
+ "sVanPX": "Moving a folder into itself isn\u2019t allowed",
+ "sVyxjk": "Do any of these help with sharing?",
+ "sW+o7c": "Your plan is set to be downgraded on {trial_end}. If you downgrade, your team will lose the additional space it\u2019s been using and your active team members will return to their initial space quota. If you want to keep using {trademark_business}, it only takes a few moments to add your billing information.",
+ "sWDIpT": "Title",
+ "sWECOq": "Files in sync, everywhere",
+ "sWb2oY": "Search by channel or person",
+ "sWchsF": "Everyone who had access to this content before will have access again.",
+ "sWfgaw": "{total} per {period}.",
+ "sWlrEH": "Delete",
+ "sXbzOl": "Folder icon",
+ "sY2bUM": "Download link sent to {user_email}.",
+ "sYRkw6": "Connected apps and extensions",
+ "sYUe0C": "Anyone with this link and password can view the folder.",
+ "sYe6CO": "Grant admin privileges",
+ "sZ+p34": "Only admins can edit top-level folders.",
+ "sZ4JWk": "Full access to {trademark_business} for {trial_length} days",
+ "sZAlpD": "{count, plural, one {{filename} and {count} more item will be gone forever for everyone, including anyone still using the items. Permanently deleting items won\u2019t free up space.} other {{filename} and {count} more items will be gone forever for everyone, including anyone still using the items. Permanently deleting items won\u2019t free up space.}}",
+ "sa6AtU": "{count, plural, one {Current member:} other {Current members:}}",
+ "sa8acb": "They can see it and join on their own",
+ "saddOk": "{count, plural, one {Invite {count} person to join your team?} other {Invite {count} people to join your team?}}",
+ "sago3n": "Page up",
+ "saorDp": "{name} has been cancelled",
+ "sbG0Ow": "Make Paper your project manager",
+ "sbO30Y": "Dropbox Binder (beta)",
+ "sc9Z0O": "DELETED FAMILY ROOM FOLDER",
+ "scPey9": "Toggle main navigation",
+ "scVYLl": "Error.",
+ "scm8rG": "Install Dropbox on your computer",
+ "sd/ylm": "Please note that you have an active Dropbox {trademark_plus} subscription managed through the {billing_store}. You must cancel it to avoid being charged in the future.",
+ "sdNYix": "Dropbox lets me keep my important documents and photos safe and prevent them from being lost, and I know I can access them whenever I need to, on any of my devices.",
+ "sdVR3Z": "Reseller support",
+ "sdXG7S": "Company logos",
+ "sdaeqd": "Based on your account history, you are eligible to downgrade your account and receive an immediate refund.",
+ "sdcCRZ": "Mobile",
+ "sdndqE": "Invalid backup code",
+ "sdxcon": "Invite people to {teamName}",
+ "seHweQ": "Marked as resolved by {name}",
+ "seMnVT": "Couldn\u2019t find vault. Please check with the owner.",
+ "seRlbx": "Current PIN",
+ "segCBY": "This will remove the contacts imported from this device and sign you out of the Dropbox mobile app.\n If you sign in to the app later, your contacts may be imported to Dropbox again.",
+ "sfMcCZ": "Remember, you\u2019re about to replace the policy on some of the folders you selected.",
+ "sfNuPA": "Download Dropbox Paper",
+ "sfSmtg": "Sign in as member?",
+ "sgD7C4": "Join an organisation?",
+ "sgNaE1": "We\u2019re getting all of the invitations ready, and we\u2019ll let you know once they\u2019ve all been sent out. This might take a little while.",
+ "sgmpQr": "Update where you work",
+ "sgvdUo": "Switch to your work account",
+ "sh4TnS": "Add people",
+ "sh4wBz": "Your plan has scheduled changes that will cause your Dropbox to become full.",
+ "shOh4q": "Feedback works for alerts from March 2021 onwards",
+ "shmoBI": "You\u2019re changing to a {trademark_business} {plan} plan for the remainder of your free trial. Your new {schedule} total will be {recurring_total}, due on {date}.",
+ "siFaPg": "Business critical:",
+ "sinwN6": "You unshared {single_item_name}",
+ "sj79z4": "Track all of your team\u2019s work with Asana while keeping Dropbox content alongside.",
+ "sjM3E3": "Leave '{'group_name'}'",
+ "skJH+1": "Suspend",
+ "skSN5E": "Last edited by a permanently deleted user on {creationTime}",
+ "skfgf2": "Trello integration",
+ "skrspC": "Real-time alerts and notifications",
+ "sl5Fj7": "I @mentioned you in this folder. Take a look.",
+ "slD1pf": "If you want members to keep access to shared folders from their old team, set the folder membership for each one to 'Anyone'.",
+ "slJNdC": "Errors found in the CSV file",
+ "slbdL4": "Upload the HTML file",
+ "sldEb5": "Add the meta tag",
+ "slkoxp": "Total",
+ "slo33I": "Select view type",
+ "smBdVk": "Your new email address can\u2019t include {team_domain_name}",
+ "smByay": "Get file storage and sharing for everyone in my family",
+ "smyluT": "Thank you for taking the time to keep your Dropbox account secure.",
+ "sn3FbU": "Your {trademark_business} trial has ended",
+ "snvpS3": "Set a unique password to protect your work Dropbox account.",
+ "so/hoo": "Your team\u2019s content will be moved into the primary team\u2019s account",
+ "soLE0M": "You don\u2019t have permission to view some of the contents of some of these files. Please note that restoring these folders will reinstate access according to their original members, including any members of child content. The folders you don't have permission to view will remain confidential to you, but will be accessible by other users.",
+ "soh5HQ": "Create",
+ "somghu": "Folder or file\u2026",
+ "sox4lX": "Move Paper docs into Dropbox",
+ "spCwO+": "Following",
+ "spH6O7": "Free individual plan with 2 GB of space and limited sharing features",
+ "sq/C7H": "Select items to make online only. You\u2019ll still be able to see them from the Dropbox folder on your computer.",
+ "sqJ7ge": "Trying to sign in to Dropbox?",
+ "sqNGnW": "Quickly check the status of things such as available licences, number of members and space used.",
+ "sqlnXG": "Edit and eSign PDFs",
+ "sr0cDs": "Enter the password to open this file.",
+ "sr8ZpS": "busy",
+ "srI/to": "Sent! Check your email on your device.",
+ "srKG/z": "You don\u2019t have permission to view the contents of \u2018{folder_name}\u2019. Please note that restoring this folder will reinstate access according to its original members, including any members of child content. \u2018{folder_name}\u2019 will remain confidential to you but will be accessible by other users.",
+ "srLy1v": "Members of {shared_folder_name}",
+ "srXjWw": "Give your team visibility of your typical week and describe how you can work together well.",
+ "srdUGg": "Add colleagues quickly",
+ "srndH4": "Access changed for {current_folder}.",
+ "ss4CO0": "Folder name",
+ "ssRqjC": "Saving hard drive space is easy",
+ "ssdefa": "Can\u2019t save changes. Paste text elsewhere to save, then click Refresh.",
+ "ssjQ58": "Access all of your files from your desktop, without taking up all of your hard drive space.",
+ "ssk5PE": "Security. Access level, and whether they\u2019re protected by a password or expiry date",
+ "sssV8H": "Check account security",
+ "stkqXh": "Only you can view via the link.",
+ "su9q9n": "Synced",
+ "suHv2e": "Click 'Share' to upload your Dropbox file directly to Canvas.",
+ "suJg74": "When you invite new users, they\u2019ll get an email so they can finish setting up their account. Anyone who already had a Dropbox password can now use that password (preview email). Anyone who didn\u2019t have a Dropbox password will need to create one to sign in (preview email).",
+ "suJofd": "To import everyone, submit multiple CSVs with 1,000 or fewer people in each.",
+ "sufs69": "Enter the code generated by your authenticator app.",
+ "sujx6Q": "Your version of {trademark_business} doesn\u2019t support team merges yet. Let support know that you\u2019d like to update to a version that supports this feature \u2013 don\u2019t worry, there\u2019s no additional cost.",
+ "suwlZc": "Show in {file_browser}",
+ "svCMOP": "Only the owner",
+ "svLH03": "Previous deadline",
+ "svW9/s": "{actor_name} archived the {card_name} card with this file attached",
+ "svxOei": "{display_name} is now a support admin.",
+ "swPTxg": "Your team will lose the additional space it\u2019s been using and access to powerful features such as the admin console, extended version history and Smart Sync.",
+ "swViYV": "Choose your Dropbox folder for your signed copy to be saved automatically and stored safely.",
+ "swYU4I": "If you want to keep using {trademark_business}, why not add your billing information now and get it out of the way?",
+ "sxF0qm": "Your request to join was declined",
+ "sxLN49": "{count, plural, one {Expires in {count} day} other {Expires in {count} days}}",
+ "syJiNE": "Transfer with no items",
+ "sywyNe": "Re-send notifications",
+ "sz+5vG": "Spend less time tracking down and updating files, and more time doing the work you actually want to do. Team folders help everyone store and organise work in one location, making it easy to find what you need, when you need it.",
+ "sz+AhS": "{count, plural, one {Pinned {count} item.} other {Pinned {count} items.}}",
+ "szIrMe": "Removing folder from your Dropbox\u2026",
+ "szTr0b": "Sign out of {host}?",
+ "szYHfI": "More about viewer info",
+ "szfzWV": "Loading articles...",
+ "t+M+VP": "An account with the email address {email} already exists, but has not been verified. Enter your existing Dropbox password to sign in.",
+ "t+RdzF": "Can\u2019t send more than one merge request",
+ "t+qFUO": "Folder selector",
+ "t+rsFS": "Extended file recovery and version history",
+ "t/1uLY": "You may need to check your spam folder or unblock no-reply@dropbox.com.",
+ "t/Jn61": "items",
+ "t/KhAI": "{maxRewindDays, plural, one {{maxRewindDays,number} day} other {{maxRewindDays,number} days}}",
+ "t/wxXe": "preview this file",
+ "t0Frp1": "Copy link",
+ "t0ve6c": "Finish",
+ "t0xr6L": "Try {trademark_business} with your team!",
+ "t14tE4": "Skip",
+ "t1ckrO": "Multi-segment",
+ "t1w2EM": "Using Dropbox with a team?",
+ "t1ylDh": "Not included in the report: files and folders that are only shared because they\u2019re in a shared folder.",
+ "t2HuL6": "Any online-only files your team has will be downloaded and take up space on members' hard drives.",
+ "t2h3Y9": "Set new file default",
+ "t3Jo9w": "Sort by",
+ "t3gSp4": "Maintain ownership of data",
+ "t40FTi": "Legally valid, court-admissible signatures",
+ "t4QhIx": "Set up your folder structure",
+ "t4qNgJ": "From",
+ "t4ulvi": "Upcoming changes to Dropbox Paper",
+ "t55DhV": "Drag files or folders here",
+ "t5Lipo": "Learn about the different roles",
+ "t5mEYm": "Centralise and secure all of your family\u2019s files and share {quota} of encrypted cloud storage. Everyone gets their own account for photos, passwords and docs, and there\u2019s a shared place for the whole family.",
+ "t6hm3E": "American Express",
+ "t6mPeQ": "Undo complete.",
+ "t7/tLn": "Enter your email address to set your password.",
+ "t7Oe8k": "Close page and continue without joining a team",
+ "t7SwRy": "{count, plural, one {Anyone in your Dropbox team with this link and the password can view the folder. Expires in {count} day.} other {Anyone in your Dropbox team with this link and the password can view the folder. Expires in {count} days.}}",
+ "t9+I06": "Submit this form now to make sure you don\u2019t lose access to your important work files. You\u2019ll be billed straight\n away for your {trademark_business} subscription.",
+ "t9gV1e": "Request",
+ "t9xcgy": "Locked files",
+ "tA1A/A": "Set timezone",
+ "tAFtaB": "Remove a member of \u201c{parent_folder}\u201d?",
+ "tAM3MQ": "(showing {amount} of {totalEvents})",
+ "tAPF0a": "We\u2019ll look into this straight away. For now, make sure everything else looks OK with our security check tool",
+ "tAVyoH": "I want to keep both subscriptions",
+ "tAhmph": "{count, plural, one {{count} video} other {{count} videos}}",
+ "tB608b": "Releasing",
+ "tB7wey": "Open",
+ "tBDUcB": "Send files",
+ "tBNy96": "{count, plural, one {Your plan supports {count} device} other {Your plan supports up to {count} devices}}",
+ "tBZioS": "Print",
+ "tBqSvt": "Payment",
+ "tCkEqu": "The copy we\u2019re saving of these files will be deleted, and you won\u2019t be able to export the hold in the future. Don\u2019t worry, we won\u2019t delete any of the actual files your members are using.",
+ "tCwBHH": "You have removed your own access to this folder.",
+ "tD48Wg": "Recover lost work",
+ "tDMjo2": "bytes",
+ "tDQ6/g": "Chrome",
+ "tDfU/w": "Translated",
+ "tDnfzm": "Clear activities",
+ "tEArbp": "{count, plural, one {As a member of the parent folder listed below, {member_name} can still access the contents of \u201c{content_name}\u201d.} other {As a member of the parent folders listed below, {member_name} can still access the contents of \u201c{content_name}\u201d.}}",
+ "tEX5tu": "Leave team",
+ "tF1F37": "{count, plural, one {{count} team folder} other {{count} team folders}}",
+ "tF8pPr": "Select Word document, Excel workbook or PowerPoint presentation.",
+ "tFFykq": "Get plenty of storage for all of your work.",
+ "tFGyx0": "{count, plural, one {Moved {count} item.} other {Moved {count} items.}}",
+ "tFP38W": "Campaign type",
+ "tFVI8B": "Update",
+ "tG5+96": "All members will keep their member folders.",
+ "tGT2VA": "Basic settings",
+ "tGaOiN": "Click 'Open with' and select DocuSign to open PDFs.",
+ "tGzw4L": "Can\u2019t find any courses. In Canvas, check whether you\u2019re enrolled on an active course.",
+ "tH6wIo": "Last activity: ",
+ "tHNeW4": "See owner",
+ "tHT3pC": "Loading...",
+ "tHTGIC": "Create new export",
+ "tHg9W5": "Preview not available.",
+ "tIMDr+": "{terabyteSpace} ({gigabyteSpace})",
+ "tJFdOn": "File",
+ "tJPsNN": "Try permanently deleting this again",
+ "tJzlWE": "Comment",
+ "tK//MX": "Enterprise",
+ "tK7+L8": "Invite team members via email",
+ "tKVnjr": "Billed {billing_schedule}",
+ "tKbyJ8": "Unshared {folder_name}.",
+ "tKe0z/": "View",
+ "tL3kkO": "{count, plural, one {Copying {count} item...} other {Copying {count} items...}}",
+ "tL9BMb": "Have you tried using one of our quick support tools?",
+ "tLGeVx": "Preview files shared in Slack",
+ "tLJ/eV": "Couldn\u2019t upload. Try again in case it was a one-off, or reload the page.",
+ "tLSiuw": "Unexpected pagination",
+ "tMJAbf": "Manage {billing_store} subscription",
+ "tMN7Nz": "No, a showcase doesn\u2019t use additional Dropbox storage space.\n Only the files in the showcase use your storage space.",
+ "tMVEdI": "{count, plural, one {{count} member with compulsory SSO won\u2019t be affected.} other {{count} members with compulsory SSO won\u2019t be affected.}}",
+ "tMbAT6": "Medium",
+ "tMiHzE": "Cancel for now",
+ "tN2BDI": "Edited {relative_time}",
+ "tNvsyA": "Send invitation",
+ "tOJfEY": "Since {date}",
+ "tOfnIZ": "{team_name} members with this link",
+ "tPcEYW": "Any policies or legal holds you have will be moved over.",
+ "tPcnDE": "Slack",
+ "tPuvjh": "Add a team folder",
+ "tQ1bJN": "Can\u2019t upload. Your team no longer has full use of {trademark_business} features.",
+ "tQTXOk": "Your plan is scheduled to be downgraded to Dropbox Basic on {date}. If you want to make any changes, first cancel your scheduled downgrade.",
+ "tR4Cv0": "Off by default",
+ "tR8p1/": "{count, plural, one {{name} deleted {count} item} other {{name} deleted {count} items}}",
+ "tRN9Ri": "Help with photos and videos",
+ "tRUDJx": "Add members",
+ "tRV47d": "Yep, that\u2019s you.",
+ "tRlSi7": "Can\u2019t add. Choose an image file such as a JPEG, GIF or PNG.",
+ "tS6aDQ": "Other file types",
+ "tSGJ7k": "Are you sure you want to continue?",
+ "tSHKpu": "Admin",
+ "tSSTbX": "Discount",
+ "tSs2ty": "Back",
+ "tStQNw": "Your files are on their way",
+ "tT+u7F": "Uploads will be disabled two days after the deadline.",
+ "tT7CPi": "There\u2019s already an export with that name. Try another one.",
+ "tTDAjc": "Explore plans",
+ "tTEKfn": "Dropbox Plus",
+ "tTSQor": "What happens when the gifted subscription ends?",
+ "tTgDqf": "Suspend member",
+ "tTi2vZ": "Leave the {team_name} team",
+ "tU393d": "Contact sales for pricing",
+ "tUQkb5": "Default editing apps",
+ "tUSiPt": "Sync this folder automatically to members\u2019 computers",
+ "tUgQnG": "Do more than share files \u2013 guide people through your work. Use visual previews, customised layouts and informative captions so they see the right content, with the right context, in the right order.",
+ "tUjhJf": "Unauthorised user.",
+ "tVLdyJ": "Choose a language:",
+ "tVkhHa": "Assign task to",
+ "tVp2O+": "Add permissions",
+ "tWZexu": "Last active",
+ "tWmQYf": "Plan billed monthly",
+ "tWra0l": "Impacted by COVID-19",
+ "tXAIYu": "Block (current default)",
+ "tXCFBm": "Security and compliances where it matters most",
+ "tXX+a4": "Nice job getting organised. Ready for the next step?",
+ "tXeqUS": "Automatically saves email attachments to a folder when you send emails to {email_address}",
+ "tXiH4l": "Let {collaboratorName} keep a copy of this shared folder",
+ "tXjtlI": "Microsoft Office 365 Tenant ID",
+ "tXptqg": "Only team admins",
+ "tYHubF": "Send large files to anyone",
+ "tYo3ZT": "Share file request",
+ "tYw/vF": "{actor_name} shared this file with {slack_recipient_name}",
+ "tZ+OmK": "I agree that Dropbox can send me messages\n using an automatic telephone dialling system and using the phone number provided.\n I understand that I am not required to agree in order to sign up for Dropbox. I\n understand that standard data and message rates may apply.",
+ "tZ2c0r": "Cancel",
+ "tZ4Cl0": "Before you can access {content_name}, we just need to verify that your email address is {user_email}.",
+ "tZ9Zk9": "This means you can no longer download {displayName}\u2019s vault files, but you can still access any files you\u2019ve already downloaded. We\u2019ll let {displayName} know you made this change.",
+ "tZhi73": "Anyone with the link can view this folder. Downloads disabled.",
+ "tZn8tS": "Unstar",
+ "tZz57V": "Decline",
+ "taNFWh": "Home",
+ "taP8wv": "{billing_schedule} billing",
+ "taXtH/": "Keep {trademark_business} and purchase instead",
+ "talpft": "Activate",
+ "tb19lj": "Extension installation failed",
+ "tb9YQs": "Invite to team",
+ "tbFeQQ": "Update billing",
+ "tbMyDV": "Something went wrong with the request \u2013 please refresh the page",
+ "tbN3jw": "Removing member from {current_folder}\u2026",
+ "tbdSoK": "Add PIN protection to valuable docs, such as passports",
+ "tc+0L8": "Can\u2019t sign in?",
+ "tc/4YZ": "Your changes weren\u2019t saved because you are editing this description elsewhere.",
+ "tc7UdS": "'View more' arrow",
+ "tcTOBj": "The Smallpdf integration with Dropbox offers a complete online PDF software suite for you and your team to seamlessly process digital documents, simplify workflows and collaborate on large projects.",
+ "tcU8OS": "Send email to {email}",
+ "tcjpY3": "Comments \u00b7 {count}",
+ "tcxsRK": "If any team members are using linked accounts on their computers, this will sign them out of the second account they added and remove it from their desktop app.",
+ "td6yIA": "Connect your {service} account to your Dropbox account",
+ "td9Mz6": "Something went wrong with the request \u2013 please contact admin",
+ "te+SSh": "Alert severity",
+ "teB/JU": "Which domains outside your team do members share with?",
+ "teLqGk": "Your file request is now active.",
+ "ted8XA": "Removed",
+ "tfGQfP": "{count, plural, one {{count} member folder is almost full} other {{count} member folders are almost full}}",
+ "tfZFkx": "Type:",
+ "tfdxPP": "Anything specific that people should know (such as internal links or resources)?",
+ "tfq31P": "App folder",
+ "tg/Kpc": "You can access their files through the content page, and sign in as any member of their team.",
+ "tgHMpz": "People at {team_name} with the link can view",
+ "thJF4c": "Send it again",
+ "thjcD3": "Failed to copy link to clipboard",
+ "thmzHN": "{count, plural, one {Can\u2019t move shared folder to a team folder} other {Can\u2019t move shared folders to a team folder}}",
+ "thyxZr": "Connect apps to Dropbox and see what\u2019s happening with your file in other apps.",
+ "tiKa++": "{name} will have a different set of admin permissions.{br}{br}New role: {new_role} admin{br}Old role: {old_role} admin",
+ "tjn1zH": "deleted",
+ "tk18q5": "Top billing, payment and subscription charges articles",
+ "tkBGME": "99+",
+ "tkX9Qf": "Rename transfer",
+ "tkcLcU": "On",
+ "tkfLxs": "{count, plural, one {You shared {count} item in {folder_path}} other {You shared {count} items in {folder_path}}}",
+ "tlEIIf": "Error loading",
+ "tlRjy2": "Connect",
+ "tm1VBM": "Michael Kuntz, COO{br}Simusolar",
+ "tn/39D": "Unable to load",
+ "tnX9rj": "LIFE VAULT FOLDER",
+ "tngNEJ": "Set",
+ "to+DX0": "Enter Zoom meeting ID",
+ "toOggs": "You edited this file",
+ "toUeSs": "Login session ID",
+ "toXz6N": "{value, plural, one {{value,number} year} other {{value,number} years}}",
+ "toc0wl": "Added",
+ "tomAos": "From Word",
+ "tosdcC": "PIN:",
+ "tq1aa1": "Scanning for security key",
+ "tq4ncq": "Install the mobile app to finish setup",
+ "tq8Zhb": "Something went wrong, but it should work if you try again.",
+ "tqImHu": "Link will work for 7 days",
+ "tqVt6I": "Take your workflow to go",
+ "trPbPE": "You moved {single_item_name} into {dst_folder}",
+ "tsdRAZ": "file too large",
+ "tswsos": "Manage",
+ "tsyuSz": "I didn\u2019t receive notifications or can\u2019t recover my account using this page",
+ "ttHWNF": "Dropbox allows us to move 10 times faster. It's really the brain of the organisation.",
+ "tthwuJ": "Create a group",
+ "ttkTFw": "Start your {plan} subscription today. This offer expires on {expiration_date}.",
+ "ttmV3r": "Hide sidebar",
+ "tuKZQZ": "Close",
+ "tunaZf": "Standard files ({fileSize})",
+ "tv6lmS": "{platformName} logo",
+ "tvFbL0": "Delete group",
+ "tvNfyO": "Break free from your hard drive",
+ "twi6Bc": "{name} settings",
+ "twkLfg": "Members can create a HelloSign account so they can sign and send documents from Dropbox.",
+ "tx+fwq": "Your card code is a 3 or 4 digit number that is found in these locations:",
+ "tx3Ap4": "or move files here from your Dropbox",
+ "txUjQq": "Size",
+ "ty8OUw": "Archive",
+ "tyW3Tq": "Resend invitations",
+ "tyamqE": "You\u2019re upgrading to a {trademark_business} {plan} plan. Starting from {date}, your new {schedule} total will be {recurring_total}.",
+ "tyzuDO": "Link copied. Allows editing.",
+ "tzjPCu": "Or sign out of some devices",
+ "tzyBCT": "This {extension} file is password protected",
+ "u+USTG": "The best sharing and storage solution for your business",
+ "u+tHhA": "Not enough hard drive space. Choose online only.",
+ "u/SFbl": "out-of-date browser warning",
+ "u/gT4q": "Couldn\u2019t clear manually added contacts. Try again.",
+ "u/p3Pl": "Close",
+ "u/wM4p": "The Dropbox in Windows system tray/macOS menu bar, shows the calendar integration that suggests files to attach to your meeting, as well as content suggestions and team highlights.",
+ "u09i+4": "An authenticator app lets you generate security codes on your phone without needing to receive text messages. If you don\u2019t already have one, we support any of these apps.",
+ "u0FIpm": "Updated timezone.",
+ "u0oi4m": "Present shared files with your logo, company name and a background image.",
+ "u1+s8b": "Message me on Slack when",
+ "u1OtMc": "Members with directory restrictions",
+ "u1R/iY": "Extract all",
+ "u1hIpU": "Set default access for newly created Paper folders. This setting can be changed by members for individual folders.",
+ "u1jBzP": "Show files shared",
+ "u1mdzp": "Request approved",
+ "u223u2": "All linked users",
+ "u28O+d": "Space",
+ "u2PbEI": "Please enable cookies to use the Dropbox website.",
+ "u319bW": "Shared with",
+ "u3CNYU": "Join forces with admins in other Dropbox teams to coordinate settings and security",
+ "u3GBhB": "You can\u2019t email more than 300 people at a time.",
+ "u3PRMn": "List",
+ "u3d9dU": "F2",
+ "u3vxkg": "Settings",
+ "u3zokp": "Dismiss banner",
+ "u4EHIo": "You may still have access to this folder via a company group or parent folder.",
+ "u4Fl30": "Size",
+ "u4cDSd": "Do you have a computer or mobile device linked to Dropbox?",
+ "u5PKxh": "Desktop app and dropbox.com",
+ "u5UFHt": "You have a large Dropbox. We recommend choosing online only.",
+ "u5f47y": "Back of a folder.",
+ "u5zxQY": "Policy",
+ "u68XIJ": "Creation time",
+ "u6AlvH": "\u2190",
+ "u6HQQX": "Select this row",
+ "u7hry5": "Actions",
+ "u7mFJh": "To keep deleted files for up to {version_history_policy} days, upgrade to {trademark}.",
+ "u7vpeG": "Can\u2019t open this file",
+ "u8/DLx": "New expiry date",
+ "u842ND": "Select {description}",
+ "u89DID": "Declined on {requestDeniedDate,date,medium}",
+ "u9oxUT": "Download anyway",
+ "uA/W1U": "Unshare?",
+ "uB0ll+": "Continue",
+ "uBK2wU": "Present in Zoom",
+ "uBRRiV": "Submitting...",
+ "uBcSXa": "Direct messages",
+ "uBmBDM": "Following Discovery of a Breach or a Security Incident.",
+ "uBopyb": "Click here to describe this Space",
+ "uC6JWs": "You do not have access to perform this operation",
+ "uCVAxq": "Who has access",
+ "uCbqux": "Expiry",
+ "uChE0e": "{space} of space for secure storage",
+ "uCttX5": "Content owner",
+ "uD1sQL": "Remove {app}?",
+ "uD4mCH": "Add details to your invoice, such as the company name and address.",
+ "uDZuQ/": "Please rename this app",
+ "uDhMax": "Sign in to your {label} Dropbox",
+ "uDn+Ex": "Includes active, invited and suspended members",
+ "uE2zpB": "Contact your admin to resend your invitation.",
+ "uEU1LJ": "\u201cDropbox lets me keep my important documents and photos safe and prevent them from being lost, and I know I can access them whenever I need to, on any of my devices.\u201d",
+ "uEnBTO": "Edit, convert and annotate the document. Sign or request signatures.",
+ "uFFK4t": "Previous",
+ "uFVAPQ": "Send link",
+ "uFbQOk": "Comments",
+ "uFfyDv": "Suspended {name}",
+ "uGDUlE": "This file will be saved instantly to your Dropbox and downloaded to all of the computers linked to your account.",
+ "uGHYAs": "Unlocked editing. Anyone else with access can edit again.",
+ "uGRi5m": "Send a reminder",
+ "uGbqz6": "You\u2019ve already requested a change to your billing period. If you want to choose a different billing period, first cancel your pending change. Cancel change",
+ "uGrlSw": "yearly",
+ "uH1oiy": "Archive",
+ "uHRHvj": "1 team folder",
+ "uHTmHj": "Camera make",
+ "uIQYB8": "No archived team folders",
+ "uIVHWb": "{name} moved {single_item_name} out of this folder",
+ "uIg+ju": "viewed {time_str}",
+ "uInvw3": "Policy type and duration",
+ "uIrB8j": "Date format updated.",
+ "uJOFi1": "Policy: {name}",
+ "uJPgvB": "Keep this account personal",
+ "uJxOXX": "We couldn't find that person",
+ "uK7PIT": "{start_date} - {end_date}",
+ "uKvpKG": "The Australian Ballet",
+ "uL1rnd": "Your team will lose {space} of space and access to powerful features such as the admin console, extended version history and Smart Sync.",
+ "uL2/ur": "Email addresses",
+ "uL7ze3": "Unlimited",
+ "uLMn8y": "Connect Dropbox to even more apps",
+ "uLVmrP": "Also ask to join {teamName}",
+ "uLpVJt": "{count, plural, one {This folder is covered by the retention policy \u201c{policy_name}\u201d. To get the items currently in the folder, download here.{br}{br}To get all items that are in their retention period, including data deleted by members, download the folder from the policy.} other {Some of the folders you selected are covered by retention policies. To get the items currently in the folder, download here.{br}{br}To get all items that are in their retention period, including data deleted by members, download from the policy page:{br}}}",
+ "uLwElN": "Get peace of mind",
+ "uMjLqH": "To continue, create a free Dropbox account.",
+ "uMuaYi": "Add to plan",
+ "uNhjIM": "Paper\u2019s smart formatting and simple, clean design mean you can create beautiful work without spending hours on it.",
+ "uO+nHb": "Manage password and two-step verification, and view activity reports for non-admin members.",
+ "uOIXFb": "Your email has already been verified",
+ "uP4VUY": "Your domain host hasn\u2019t updated your {record_type} record yet. We\u2019ll keep checking and let you know when it\u2019s been done.",
+ "uPHefB": "Timezone: GMT {offset}",
+ "uPK3Ke": "Apply watermarks quickly",
+ "uPjbdw": "Open",
+ "uPlpIx": "Overdue \u2022 Open",
+ "uQ9oGF": "We were unable to complete your request.",
+ "uQCRK9": "{user_name}",
+ "uQF0D4": "Unable to upload {file}",
+ "uQsEat": "Processing request...",
+ "uR6YMd": "{index}. Choose your space",
+ "uRA/73": "Please enter an email address.",
+ "uRiiH0": "How satisfied are you with Dropbox Transfer?",
+ "uT4VqR": "The file name should have fewer than 255 characters",
+ "uTD2X0": "This account\u2019s Dropbox {plus} plan was activated with a licence key. The plan is active until {date}.",
+ "uU05DR": "Deleted {ago}",
+ "uUFxJs": "Step 1 of 3",
+ "uVZpJw": "out of space",
+ "uVh5cg": "{duration, plural, one {{duration,number} hour free} other {{duration,number} hours free}}",
+ "uVhmPi": "Preview a shared file",
+ "uVtWFD": "A user creates a Google Doc directly from Dropbox.",
+ "uWSxFo": "Work Dropbox name",
+ "uWloCk": "Alert",
+ "uXv0Nv": "Make sure you don\u2019t get charged for your Dropbox {trademark_plus} trial",
+ "uXxNTN": "Font",
+ "uY/bLP": "Having problems? Please try again.",
+ "uYBBSD": "You won\u2019t get an alert if a member moves an unusually large amount of content.",
+ "uYj3ze": "Cancel",
+ "uYqlQ1": "Project / Program Management",
+ "uZJiY3": "Preview the email we send",
+ "uZV5CG": "Default",
+ "uZXnPS": "Might be your IT team or helpdesk",
+ "uZZoh8": "Add to Dropbox",
+ "uZf736": "Your current plan summary",
+ "ua8k7H": "Loading teams",
+ "uaF2Te": "Invite team members",
+ "uaZcVT": "or log in with Dropbox credentials",
+ "uabM2e": "Password required",
+ "uaoCeS": "Early access",
+ "uapumL": "New to Dropbox",
+ "ubRpF9": "Zoom meeting added",
+ "ubUSyC": "The best way to store, share and securely access all of your files. Get powerful sharing tools to let your work shine.",
+ "uc/3l/": "Claim your domain to help invited users join your team more quickly.",
+ "ucCDQG": "First, we\u2019ll review how the move will work, then you can schedule a time for the move to happen.",
+ "ucc16j": "Add people",
+ "ucdr5f": "Choose at least 1 type",
+ "uciNR2": "The member and activity log (recommended)",
+ "ucqLru": "Can\u2019t show content because the link has expired.",
+ "ucy7AC": "Click 'Open with' and select HelloSign to open your PDFs directly in Dropbox.",
+ "ucyy9A": "Or send invitations",
+ "udFUjU": "Secondary email {email} added.",
+ "udlLOv": "Track and save signed documents",
+ "udvT+R": "A deleted file",
+ "ue68Os": "Everyone in {team_name} has access to new folders",
+ "ueivUA": "Send invitation link",
+ "ueqKqh": "Make them a user management admin?",
+ "ufSK1e": "Active ({size})",
+ "ufXdGT": "Assign yourself or someone else a task for this file",
+ "ufl8ka": "View link created.",
+ "ufwq4C": "You are scheduled to cancel {trademark_business} on {date}. Are you sure?",
+ "ufxjOg": "No results. Sorry.",
+ "ugA2PS": "Upload failed, please try again",
+ "ugUr8k": "Create groups to give the right people access to files quickly.",
+ "ugZzDZ": "This means {email} can\u2019t download your vault files any more, but can still access any files they\u2019ve already downloaded. We won\u2019t notify them of this change.",
+ "uh83Ju": "Selective Synced",
+ "uhIsze": "Learn more",
+ "uhWEVb": "A woman uses her laptop as she holds a tablet in her hand.",
+ "uhx0D0": "Add details to your invoice, such as the company name, address and VAT registration number.",
+ "ui2X3y": "Couldn\u2019t activate the hold. Try creating it again, or contact us so we can help.",
+ "uiGNOZ": "You added {single_item_name} in {folder_path}",
+ "uiaINw": "One place to organise and share family content",
+ "uihTD1": "What's included?",
+ "uiqfT+": "Tidy up inactive content",
+ "uitaX8": "Searching...",
+ "ujO/36": "{id_string} will be removed from the member list. Any invitation or activation links you\u2019ve sent will no longer work.",
+ "uja8q9": "Quickly move more files into Dropbox",
+ "ujnk3d": "{licenseOverage, plural, one {You\u2019ll be charged for {licenseOverage,number} more person, and your new yearly total is {recurringCostIncludingTaxText}. Watch out for an email with all the details.} other {You\u2019ll be charged for {licenseOverage,number} more people, and your new yearly total is {recurringCostIncludingTaxText}. Watch out for an email with all the details.}}",
+ "ujsJLp": "Step 1 of 2",
+ "ukyV/6": "Black",
+ "ul4QwY": "in {location}",
+ "ul7rQs": "Once you unlink this app, it will no longer have access to your Dropbox.",
+ "um0219": "Live chat box",
+ "um5odk": "Set password",
+ "um7qHG": "What\u2019s included?",
+ "umIJKx": "What\u2019s included in {trademark_dbx_professional}?",
+ "umKvUG": "120-day version history",
+ "umViCk": "Sorry, we could not find all the files to download.",
+ "un+d9j": "(change)",
+ "un5VKD": "Invitation resent to {email}",
+ "unGiDh": "Smart Sync",
+ "uo7C3M": "For solo workers",
+ "uo9z+q": "Tackle your everyday tasks with one tool. Create, edit and share cloud content from Google Docs, Sheets and Slides, Microsoft Office files, and Dropbox Paper directly from Dropbox.",
+ "uoF9c7": "Everyone in your team can edit top-level folders.",
+ "uoLC3b": "Error trying to sign in with push notification.",
+ "uos+ms": "Password-protect this link for viewing the folder.",
+ "uosqaq": "Admin console",
+ "upNE1C": "Remote device wipe",
+ "upeVZS": "{invitingUserName} wants you to join the {teamName} Dropbox team. Join them for business features and instant access to team files",
+ "upmba9": "{num_suggested, plural, one {We couldn\u2019t send the invitation, but we let the admin know. Contact them for next steps.} other {We couldn\u2019t send the invitations, but we let the admin know. Contact them for next steps.}}",
+ "uqQwD8": "Key not found.",
+ "uqW2ln": "Shared",
+ "ur4wUO": "Manager",
+ "ur9Ewf": "Members can set their own branding",
+ "urHFcV": "Create an account to join your team",
+ "urvMXI": "Need help restoring deleted files? Learn more",
+ "usN8kc": "No. You will only be charged for a gift once, and it will not be renewed.",
+ "uszwge": "Select Dropbox Paper or Dropbox Paper Template.",
+ "ut04US": "View details",
+ "ut44fQ": "Can\u2019t upload .{ext} files because they\u2019re web based.",
+ "utBohU": "With this update, online-only files will no longer appear to take up hard drive space.",
+ "utNf/m": "Stay in sync",
+ "utRrNM": "Space used",
+ "utTicB": "Open folder",
+ "utybtT": "Pick another folder. It looks as though you can\u2019t access this one any more.",
+ "uuF/uT": "Team folders keep work accessible",
+ "uufVvn": "Status",
+ "uukIVm": "Share a file",
+ "uwPlIR": "with {member}",
+ "uwqxfJ": "We\u2019ll refund the pro rata portion of your remaining subscription to your payment method.",
+ "uxR2fx": "Beta testers",
+ "uxSU4g": "Guest",
+ "uy2TUv": "Back",
+ "uy4Ve5": "Member, but can invite and manage team members",
+ "uyGQa+": "Which files are accessible to people outside your team? Search and filter to see exactly what\u2019s going on.",
+ "uyIsjv": "Sign up for Dropbox to use Spaces",
+ "uyXDaM": "Why are you previewing this file?",
+ "uyZR7V": "{tax_name} ({tax_percent}):{space}{tax_amount}",
+ "uzLWdB": "Ask me later",
+ "uzhNPq": "\u201cPHI\u201d",
+ "uzovJo": "Billed {schedule}",
+ "uztJK1": "Create a central source of truth for your team. Gather requirements, add code snippets and designs, and get input from stakeholders.",
+ "uzu9NH": "Remember me",
+ "v+fiz1": "You only have partial access",
+ "v/5nw/": "Join Zoom meeting",
+ "v/COiN": "Failed to unlock editing.",
+ "v/LQSv": "Store files, cloud docs and web shortcuts together. Get {plan_space_in_gb_rounded} of encrypted storage with unlimited linked devices. And upgrade your computer\u2019s hard drive with industry-leading sync technology.",
+ "v/ZDmi": "Currently reviewing your {role} Dropbox .",
+ "v/wIZk": "Follow",
+ "v0GnKn": "Couldn\u2019t retrieve shared folders and files. Reload the page to try again.",
+ "v0b6+E": "Confirm licence purchase",
+ "v0jn5I": "View payments and billing help",
+ "v1IjMy": "We are unable to provide refunds directly for Google Play or Apple App Store purchases.",
+ "v1jRfl": "Manage",
+ "v22uDz": "Enter PIN to unlock",
+ "v26lQG": "Verifying...",
+ "v2SyxH": "Definitions.",
+ "v2wC3C": "Fourth highest activity",
+ "v2yJMn": "Link copied.",
+ "v3Nlj2": "Set for how long members can stay signed in to dropbox.com.\n They\u2019ll be signed out automatically when the session expires.",
+ "v3Rw50": "{name} viewed this file",
+ "v3oTv1": "Something went wrong at our end",
+ "v3ps3s": "Dragging many files into central folder. Then showing all available files wherein a user clicks a PS file to download.",
+ "v4Pwf6": "Settings...",
+ "v4qAYu": "Close",
+ "v5BTg5": "With {showcase}, you get a more fluid workflow that helps build client relationships. Because when they see your vision the way you see your vision, extraordinary things can happen.",
+ "v5qde2": "Repeat",
+ "v5zm5w": "You can add your billing information now and you will not be charged until after the free trial ends.",
+ "v6+J7C": "Check spelling or try again.",
+ "v6+dnp": "Join team now",
+ "v6KcNP": "Request a call",
+ "v6Qr5b": "3. Confirm your trial",
+ "v6qFPS": "Download and set up Dropbox",
+ "v77whi": "Supplied by your identity provider. Verifies members when they enter their work credentials.",
+ "v7foBc": "Extend the power of Dropbox",
+ "v7iUT9": "Professional trial {ios}",
+ "v7lRJw": "{count, plural, one {{name} restored {count} item in {folder_path}} other {{name} restored {count} items in {folder_path}}}",
+ "v8O3C+": "Photos and videos",
+ "v8PNkk": "Nothing is currently held for the {hold_name} hold. These members haven\u2019t edited Dropbox files between the dates the hold is set for.",
+ "v8WvP1": "Try adding a file",
+ "v8xb/+": "Renaming folder\u2026",
+ "v9BQ2N": "Add email addresses",
+ "v9MuRp": "View-only shared folder permissions",
+ "v9WO46": "Community",
+ "v9aoIx": "Keep {business}",
+ "v9bSTi": "Select a search result to see details",
+ "v9ugCa": "Help with account access and security",
+ "vAFlk4": "Anyone with this link",
+ "vAOUkz": "Deselect all",
+ "vApw15": "This folder can only be shared as a link because it\u2019s in a shared folder.",
+ "vB1R6p": "You moved the {card_name} card with this file attached to another board",
+ "vBFpIq": "Save changes",
+ "vBfB8B": "Video",
+ "vC5hhF": "{space_long} of storage",
+ "vCbj4X": "Released",
+ "vDqlZ3": "All types",
+ "vECsXs": "View in admin console",
+ "vEc1Xz": "View as grid",
+ "vEd7YT": "Click 'Open with' and select AutoCAD to open DWG files.",
+ "vEenvr": "Are you sure you want to delete this extension?",
+ "vEpMWb": "{member_name} will only be able to view this folder, and new {team_name} members won\u2019t be able to access it automatically.{br}To add more people to this folder in the future, you\u2019ll need to invite them directly.",
+ "vExjB7": "Restore not allowed due to disposal policy.",
+ "vF3QRb": "Sunday",
+ "vF7MjI": "To use Smart Sync, you\u2019ll need to allow a system extension from Dropbox. First click Continue, then click OK on the alert that appears.",
+ "vFDLgh": "Try it with Professional",
+ "vFb6Ur": "Unread comment thread",
+ "vFhcfF": "Saving to your Dropbox...",
+ "vFi/Dt": "Remove",
+ "vGWLOq": "{count, plural, one {As a member of the parent folder listed below, {member_name} can still edit the contents of \u201c{content_name}\u201d.} other {As a member of the parent folders listed below, {member_name} can still edit the contents of \u201c{content_name}\u201d.}}",
+ "vGXGUN": "You\u2019ve almost finished!",
+ "vH3mTa": "Other issues",
+ "vHIwL3": "To open this file, make sure you\u2019re signed in to G Suite and Dropbox with the same email address.",
+ "vHTAAQ": "Sign in or create an account",
+ "vHgZs0": "Unknown",
+ "vIACNF": "Connect to Trello",
+ "vIFGrd": "To the extent that the administrative tools provided as part the Services are insufficient to provide an accounting of disclosures to an individual as necessary for the Customer to satisfy the Customer\u2019s obligations under HIPAA, Dropbox will make available the information required to do so. The Customer acknowledges that Dropbox may not know the content of the Customer\u2019s Stored Data and, therefore, it will be the Customer\u2019s responsibility to provide a brief description of any PHI that was included in the Stored Data that was disclosed.",
+ "vIFSSl": "Direct",
+ "vIJ2x0": "Find all of your transfers and see stats such as views and downloads.",
+ "vIiAPQ": "{alertName} edited. The alert's threshold can take up to one hour to update.",
+ "vJ3Igb": "This package file can only be shared as a link.",
+ "vJDNdg": "New notification type",
+ "vJGcTi": "Share file",
+ "vJgZg+": "Next",
+ "vJkXYY": "After you downgrade, you\u2019ll have far less space to have collaborative moments like this one.",
+ "vK+GN+": "You can archive team folders in the admin console.",
+ "vKX8er": "Integrated features from these apps make it easier to collaborate with people you know on Dropbox.",
+ "vLOLVx": "Bryan Hallas, Director of IT, Maine Pointe",
+ "vLX1kS": "How to use Dropbox Transfer",
+ "vLmOAd": "Shared link URL",
+ "vLpco5": "It\u2019s been too long since you signed in. Please sign in again.",
+ "vLxc6S": "Continue signing in with {provider}",
+ "vM860B": "Dropbox International Unlimited Company",
+ "vM9XAD": "{name} unshared {single_item_name} in {folder_path}",
+ "vMF+bp": "Complete purchase",
+ "vMGeUC": "Choose background image",
+ "vMUnHN": "Works with you a lot",
+ "vMftY3": "Design across time zones and locations",
+ "vMxvH1": "An error occurred.",
+ "vN/CZP": "Share a link",
+ "vN21Hm": "contact support.",
+ "vNTGeR": "You can add your payment information now so that your subscription is renewed automatically when it expires.",
+ "vNZivq": "Shared folder",
+ "vO3mme": "A folder overview of a customer proposal in Dropbox Spaces being shared",
+ "vOBkFB": "Search",
+ "vOHhSs": "You might need to set a few things up",
+ "vOLK2M": "Add circle",
+ "vOwN7P": "There was an error uploading your background image.",
+ "vP/ZGk": "Organise sensitive files in one safe place and view them on any device",
+ "vPbpJI": "Step 3 of 4: Schedule your move",
+ "vPiRDz": "To see folders or files shared with you, you need to verify your email.",
+ "vPlyaD": "Cancel processing",
+ "vPyd3c": "Users will join as soon as you invite them.\n That way you can sign in as the user to get them set up.",
+ "vQ0ZP6": "Their email address is {value}",
+ "vQ64dZ": "Page...",
+ "vQndaY": "Cancel plan",
+ "vQquJX": "View-only",
+ "vRDiD3": "{chosen_file_size} KB",
+ "vRE9NS": "I\u2019d like to receive direct marketing email updates from Dropbox",
+ "vRToCl": "You were automatically signed out",
+ "vRmw4U": "The amount of space included with your plan",
+ "vRnlaU": "What kind of group is it?",
+ "vRnpSz": "Personalise your transfers with a default background image",
+ "vS2Rdu": "Outgoing",
+ "vS2t89": "Cancel",
+ "vS4Oei": "Anyone with this link and password can view the folder. Downloads disabled.",
+ "vScsi0": "Enable Smart Sync",
+ "vSoamy": "Closed",
+ "vSscn6": "You can\u2019t edit some of these folders. Ask an owner or editor of the folders for access to edit them.",
+ "vSxwIF": "By clicking \u201cI agree\u201d, you understand that we\u2019re unable to provide any refunds and that you\u2019ll need to cancel your Dropbox {trademark_plus} subscription through the {billing_store} to avoid future charges.",
+ "vTHStn": "{name} hasn\u2019t added this to their Dropbox yet",
+ "vTM4iO": "You won\u2019t get an alert if someone shares malware with your team.",
+ "vTSVPm": "No flash function",
+ "vTaaOS": "File settings",
+ "vTdeG3": "If your contact accepts, they can download all files in your vault, but we\u2019ll notify you if they do.",
+ "vTrAuv": "Something went wrong. Please try again.",
+ "vU7AXJ": "Search for a Stormcrow feature",
+ "vU98ul": "Quickly reset your password here.",
+ "vUZrvL": "{numInvitees, plural, one {You need more licences for this invitation. Contact {resellerName} at {resellerPhone} to add more.} other {You need more licences for these invitations. Contact {resellerName} at {resellerPhone} to add more.}}",
+ "vUtWh+": "Dropbox was successfully installed, but won\u2019t be able to store files until you grant permission.",
+ "vV8SHN": "\u201cWe strive to create a world-class work environment with the top technologies available. We\u2019ve achieved a return on investment of over 500% with Dropbox, while taking a giant step to modernise our IT strategy and enhance collaboration across our company.\u201d",
+ "vV9B1q": "No, cancel",
+ "vV9l+M": "Connect",
+ "vVU6YH": "Flip right",
+ "vWPrZf": "Members of the file with this link can view. Downloads disabled.",
+ "vWbu7+": "{count, plural, one {Suggestion sent to {team_name} admin {admins}} other {Suggestion sent to {team_name} admins {admins}}}",
+ "vX3e7z": "No alerts found",
+ "vX3ptT": "Not now",
+ "vX9I4G": "Communication",
+ "vX9MC5": "Open in {editor_with_lock_string}",
+ "vXHik/": "Before you turn on account capture, we\u2019ll notify users in your domain (@{domain}) who will be affected. We won\u2019t notify users who are also in other teams.",
+ "vXNgEM": "Loading",
+ "vXQEej": "\u2318 + a",
+ "vXZoL7": "Just drag files into your Dropbox folder and they\u2019re automatically backed up for you on dropbox.com and accessible on all of your devices.",
+ "vXeDf5": "You can use dropbox.com now, but wait for your devices to finish syncing. If anything doesn\u2019t look as you expected, learn more about your options",
+ "vXiJj7": "No one added",
+ "vXtPAG": "Report an issue",
+ "vY+uF+": "Notifications sent! Check your linked desktop clients or mobile apps (if any) for notifications.",
+ "vY5cS/": "Click on the shield to the left of the address bar.",
+ "vYAn0c": "{current_size} (your {current_plan_name})",
+ "vYVz+4": "Every action is tracked and time-stamped.",
+ "vYZ5jE": "Congratulations on extending your free trial!",
+ "vYmc42": "Click to lock your vault at any time, and it will auto-lock if you\u2019re inactive for 20 minutes.",
+ "vZ+Gcq": "{count, plural, one {Anyone with this link and the password can view the folder. Expires in {count} day. Downloads disabled.} other {Anyone with this link and the password can view the folder. Expires in {count} days. Downloads disabled.}}",
+ "vZ/zQV": "Keep a copy of this folder",
+ "vZJUAu": "With {trademark}, you\u2019ll get 1 TB (1,000 GB) of space and powerful features to set your work apart. Present your work more beautifully at every stage, save hard drive space and more.",
+ "vZtJe2": "{count, plural, one {{count} visual note} other {{count} visual notes}}",
+ "va1NIN": "Dropbox Passwords manager screen showing account information for Dropbox, Facebook and Netflix",
+ "vaHXjn": "Set link expiry to encourage downloads",
+ "vaUVHO": "Allow (current default)",
+ "vaZcYO": "Remove",
+ "vault-initiate-reset-success": "An email has been sent to reset your PIN",
+ "vault-trusted-contact-cancel-success-toast": "Invitation to {email} cancelled.",
+ "vault-trusted-contact-header-subtitle": "Grant emergency access to a trusted family member or friend. Learn more",
+ "vault-trusted-contact-header-subtitle-pro": "Ensure the people you trust can find your important documents if they need them. Learn more",
+ "vault-trusted-contact-header-title": "Access for trusted contacts",
+ "vault-trusted-contact-invite-button": "Invite contact",
+ "vault-trusted-contact-invite-success-toast": "Invitation sent to {email}.",
+ "vault-trusted-contact-remind-success-toast": "Reminder sent to {email}.",
+ "vault-trusted-contact-resign-success-toast": "You are no longer a trusted contact for {email}.",
+ "vault-trusted-contact-revoke-success-toast": "{email} removed from trusted contacts.",
+ "vazg5S": "Only {max_aliases} secondary emails allowed",
+ "vbDuY9": "That account is already paired with another account.",
+ "vbHiUW": "Be sure to download everything, including the report.",
+ "vbMu7n": "{count, plural, one {{count} person in {group_name} can view} other {{count} people in {group_name} can view}}",
+ "vbTxNa": "Installing Dropbox on your computer is the best way to make sure your information is always with you.",
+ "vbYWAB": "Not an active team admin",
+ "vbchm2": "Get your files on your phone or tablet, even if you\u2019re offline",
+ "vbytsy": "Files without extensions cannot be previewed",
+ "vc2Cxo": "{space_remaining} left",
+ "vcVbAV": "If you downgrade, your team will lose the additional space it\u2019s been using, and your active team members will return to their initial space quota.",
+ "vcVh5A": "Double click the Dropbox logo to finish installing the desktop app.",
+ "vciT6O": "Transfer sends a copy without giving people access to the original.",
+ "vcnMGb": "New Dropbox desktop experience: Windows File Explorer/macOS Finder, new desktop app and Dropbox in Windows system tray/macOS menu bar.",
+ "vdBwOw": "No users found",
+ "vdOltn": "A member shared a large amount of data with people outside your team. This increases the chance of data loss.",
+ "vdPwYR": "Team admin",
+ "vdYbD6": "There was a problem completing this request.",
+ "vdagQ2": "unique views of links that were created over 3 months ago and are accessible to people outside your team.",
+ "vdqTup": "We sent you a code. It may take a few minutes to arrive.",
+ "vdr9v2": "Server error \u2013 please try again later",
+ "vdrSAe": "Hide files",
+ "veD/Im": "Invite people to {team_name}",
+ "veE0wk": "How should we handle your current account?",
+ "vexzUa": "Above the last purchased number",
+ "veyFXJ": "You\u2019re automatically signed out of a trusted team after 30 minutes. You can sign in again on the trusted teams page.",
+ "vfWhT4": "lost connection",
+ "vfaZhn": "Do you think your linked computer isn\u2019t affected? If it\u2019s not infected,\n resume Dropbox access",
+ "vfmSkZ": "Please select one reason for cancelling",
+ "vg7oNs": "We can\u2019t find the {record_type} record.",
+ "vgPtJM": "Drop sensitive files, such as financial and health records, here for safekeeping.",
+ "vgXxer": "This item was deleted",
+ "vgeumv": "Paste URL to screenshot or video",
+ "vgq7sa": "Email to my Dropbox",
+ "vhX3jx": "Change to basic folder",
+ "vhlPqJ": "Cancel downgrade",
+ "vhn7zc": "Restart the download",
+ "vhu4TN": "(add an optional custom message)",
+ "vhvaO9": "Decide who can edit folders",
+ "viDfq/": "With {space} of space and team folders, your team can keep projects in one place, so you\u2019re always on the same page.",
+ "viFx7F": "Once they accept",
+ "viGmRq": "Don\u2019t worry, you won\u2019t be charged now. You\u2019ll only be charged if you don\u2019t cancel your trial before it ends on {trial_end_date}.",
+ "viK6c+": "We were unable to complete your request.",
+ "visTSD": "+ {tax_name}",
+ "viwiP8": "Dropbox integrates seamlessly with the tools you love, so your conversations and content stay in sync.",
+ "vj7NTF": "Account holder name",
+ "vjZ5av": "{device_model} removed.",
+ "vjbiAf": "If you already have a HelloSign account, we\u2019ll link it to your Dropbox account if the email address is the same for both accounts.",
+ "vjn1De": "Summary",
+ "vjp/6B": "Create a report of labelled files",
+ "vjwfnF": "Turn on {alertName}?",
+ "vkHvO6": "{count, plural, one {{filename} and {count} more item will be gone forever and you won\u2019t be able to undo this action. Please bear in mind that permanently deleting these items won\u2019t free up space. Learn more} other {{filename} and {count} more items will be gone forever and you won't be able to undo this action. Please bear in mind that permanently deleting these items won\u2019t free up space. Learn more}}",
+ "vlAkYg": "Keep your organisation\u2019s content for the right amount of time using retention policies. More about managing policies",
+ "vlHqDS": "Exceptions",
+ "vlkaFK": "Italic",
+ "vlqfT+": "30 days of file recovery and version history",
+ "vlzkco": "Create Google Sheet",
+ "vm2t5Q": "{msg} View member list",
+ "vmF4pp": "More about legal holds",
+ "vmbL8z": "Create folder",
+ "vmgrUl": "Updated. You can double-check in the preview.",
+ "vnIWJz": "Admin",
+ "vnOUMt": "Size",
+ "vnSWwm": "Join for faster access to team files and easier collaboration.",
+ "vnfQqb": "Life Vault folder",
+ "vnfYKZ": "We\u2019re sorry, but an error has occurred.",
+ "vnuqfB": "Dropbox NAVI",
+ "vo0myn": "The enterprise admins can configure settings, such as authentication, in the best way for your organisation.",
+ "vo4vPP": "Open in new tab",
+ "voDoLt": "upload to your {team_name} Dropbox",
+ "voHc3y": "What should happen to a member who\u2019s already above the limit? (When they join the team, an admin lowers the limit, etc.)",
+ "vpdvqR": "Create",
+ "vphlBW": "Couldn\u2019t get downloads. Please try again later.",
+ "vpmO+U": ".{extension} files are supported but something went wrong.",
+ "vpmlmK": "",
+ "vpz9NI": "Your personal account",
+ "vqKXR0": "Download",
+ "vqvIS3": "Version history and file recovery",
+ "vrRyJy": "Learn more",
+ "vrwcnN": "Remind me later",
+ "vs8jjb": "1 billion API calls/month for data transport partners",
+ "vsSXdX": "Default",
+ "vtIvYJ": "Invalid URL",
+ "vtbPgf": "Email verified. Now finish joining the team.",
+ "vtdVnO": "Try to open the desktop app again if nothing happens after a few seconds.",
+ "vuVMnM": "Something went wrong.",
+ "vumu11": "Why is it different from other docs?",
+ "vux0g1": "Create groups to manage access",
+ "vvEz+N": "We\u2019re sorry to see you go",
+ "vvHrlV": "Re-enter password",
+ "vvW8Ij": "Files to download",
+ "vwLo0P": "Find out more about {br}Transfer",
+ "vwc/rm": "Guide",
+ "vx54jm": "Open Preferences",
+ "vxALh2": "Are you sure you want to remove {domain_name} and all of its subdomains from your verified domains? Any capture settings will be disabled for this domain. To add this domain back in, you\u2019ll need to go through the verification process again.",
+ "vxF6OS": "Tasks are synced from to-dos assigned to you created after 1 March 2020.",
+ "vxl4rJ": "Tell us why you love Dropbox",
+ "vxnAb7": "This feature isn\u2019t available on Safari, but will be soon. Please try on a different browser.",
+ "vy3g5C": "Paper is a product by Dropbox that helps you work in real time with your team. You can write together, add comments, insert images or video, and much more. Teams use Paper to run brainstorms, hold meetings, plan projects and review work. If you have a Dropbox account, you can use Paper for free.",
+ "vyU6bP": "Welcome to the team! Here\u2019s who you need to know. And read the project doc to get started.",
+ "vydy5O": "Image details",
+ "vyeOxZ": "Closed on {date} at {time}",
+ "vz2EwA": "Share files to Slack without leaving Dropbox, and see your file activity in one place.",
+ "vzGxQf": "Visit website",
+ "vzdkNF": "{count, plural, one {{name} moved {count} item out of this folder} other {{name} moved {count} items out of this folder}}",
+ "w+3+5u": "Set a due date",
+ "w+BzQj": "App Store",
+ "w+GURB": "Suspended user",
+ "w/8av3": "Existing links created by people in your team will no longer work for people outside the team.",
+ "w/CLLG": "If you cancel today, you\u2019ll be moved to a free plan on {date}, and you\u2019ll lose access to {current_plan} features including:{br}
{space_quota} of Dropbox space
Unlimited eSignatures
Any saved templates
",
+ "w/EE0T": "Role",
+ "w0Mucm": "Select folders to sync to your computer",
+ "w0RwUf": "Feedback submitted.",
+ "w0l2yv": "Now click Open preferences, then click Allow to finish setting up Dropbox.",
+ "w15oQs": "You\u2019re adding extended version history to your Dropbox {plan_name} plan. We\u2019ll charge you {prorated_price} now, which has been calculated pro rata for the current billing period. Your plan will be renewed on {date}. Your new {billing_schedule} total will be {recurring_total}.",
+ "w1RdJ3": "Loading",
+ "w1kkK2": "Change plan",
+ "w2F5Od": "You can see who has access to a team folder here",
+ "w2MNLG": "Tax ({tax_rate,number,::percent .##})",
+ "w3CZsx": "Campaign ID:",
+ "w3uVHL": "With {trademark_business}, you get even more security and collaboration features for your team. These additional features include {vacuuming_policy_max_days}-day version history, more space, email and chat support, and admin management tools for better control and visibility. Compare {trademark_business} and Dropbox {trademark_plus} here.",
+ "w4SaFl": "Stay organised and on track from pre- to post-production. Add scripts, music, video, timelines and budgets.",
+ "w4dAcw": "Add and join Zoom meetings",
+ "w57QwB": "Start your {trial_length}-day free trial now!",
+ "w5JCcS": "Add an email",
+ "w5oksG": "You\u2019re a member of the {family} plan.",
+ "w5p44x": "We\u2019ve successfully updated your team\u2019s billing information.",
+ "w6Fliw": "To restore access:",
+ "w6S6LE": "User is already a member of this team.",
+ "w6dVgn": "Off",
+ "w6t11o": "Archive in progress",
+ "w7/WKa": "This will block Dropbox access for everyone who uses a company email address (@{domain}) with their personal Dropbox account. To continue using Dropbox, they\u2019ll need to join your Dropbox team or change their email address. This won\u2019t affect users in your company domain who are also in other teams.",
+ "w7oxFi": "Modified ",
+ "w81jal": "Actions",
+ "w8Qkhu": "Password",
+ "w8XMy5": "Helpful articles",
+ "w8Zf6/": "A maximum of 20 MB of files can be added to a reply",
+ "w8q+vM": "Bug tracker",
+ "w9I0zq": "This comment was deleted.",
+ "w9jP5U": "Show {number}+ more",
+ "wAS6mz": "If you disable two-step verification, you\u2019ll only need your email and password when you sign in to the Dropbox website or link a new device.",
+ "wAfCwe": "Anyone on this domain is approved \u2022 Includes subdomains",
+ "wBdS/p": "Remove admin role",
+ "wBdlPA": "Couldn't extract files because your account is over quota.",
+ "wBh1Uk": "Please log in as {email}.",
+ "wBirzA": "Don't worry, {sharedFolderName} won't be deleted for anyone else. You won't be able to access it any more though.",
+ "wByfdM": "Your one month subscription will start on {subscription_start_date}.",
+ "wCOOqc": "Your account currently has extended version history, which isn\u2019t supported in Dropbox Family.",
+ "wD0aIp": "Link as many devices as you need to",
+ "wD45gl": "Team members will be blocked from connecting all apps by default.",
+ "wDKxnL": "Back",
+ "wDU55Z": "Are you sure you want to delete {app_name}?",
+ "wEMWCo": "Clear all",
+ "wEbrHP": "or get {dropbox_basic}",
+ "wEr/SS": "Save space with Smart Sync",
+ "wFT2+k": "Success! Watch out for your invitation at {user_email}",
+ "wFWz1L": "With as much space as you need and team folders, your team can keep projects in one place so you\u2019re always on the same page.",
+ "wFeC8R": "Lens model",
+ "wFeyrs": "Folder for uploaded files",
+ "wFrAfD": "Password can\u2019t be empty",
+ "wFsjaI": "Please remove some members.",
+ "wGDng7": "You\u2019ll get everything Standard offers, including tools, security and features that you need to help your team reach its full potential",
+ "wGHIQR": "Folder settings updated.",
+ "wGNCyI": "Add files",
+ "wGoymc": "You shared {item_name}",
+ "wHAaDF": "Send me a link",
+ "wHCvEg": "As scheduled",
+ "wHa3F8": "Invalid security code",
+ "wHolW4": "Preview (Dropbox)",
+ "wHs8YW": "App integrations",
+ "wIA0rX": "Back to Dropbox Transfer",
+ "wJGNXW": "Your photo should be at least 128px by 128px.",
+ "wJJ81I": "Get the Dropbox desktop app to continue. Taking you to the download page...",
+ "wJNYLt": "Your file request is now active.",
+ "wJXlnY": "Included feature",
+ "wJfr5U": "Invite people to {team_name}",
+ "wJpmMl": "What are the system requirements for Smart Sync?",
+ "wKPU0J": "Team admin",
+ "wKPvYZ": "Move to\u2026",
+ "wKaToF": "{value, plural, one {{value,number} minute ago} other {{value,number} minutes ago}}",
+ "wKbvz2": "Invite team members",
+ "wKo5UX": "Create in Dropbox",
+ "wKzr7W": "Undoing\u2026",
+ "wL7pO1": "{count, plural, one {{count} member} other {{count} members}}",
+ "wLGeJy": "{cost} per year",
+ "wLNK25": "Your domain, such as bau.instructure.com",
+ "wLZZfz": "Try it for free",
+ "wLnilD": "For personal use",
+ "wMRbEu": "No upcoming meetings.",
+ "wMYzXu": "Credit card charge checker",
+ "wMkxOc": "Trial cancellation confirmation modal",
+ "wMrPFj": "Last attempt used. {ContactDropbox} to reset your PIN.",
+ "wMs0Fw": "Thanks, feedback sent.",
+ "wMvvzZ": "Sharing time",
+ "wNXkD5": "Unknown",
+ "wO7W4g": "Invitation link URL",
+ "wOxC1v": "{timeSince} by {createdBy}",
+ "wPD7/W": "Admin controls for additional security",
+ "wPNlzV": "Try free for {trial_duration} days",
+ "wQFLxr": "Changing language...",
+ "wQIXj5": "{space} of space for secure storage with easy-to-use sharing and collaboration tools",
+ "wQWCfd": "Create account",
+ "wQaFzo": "Send up to 100 MB per transfer",
+ "wQu4J4": "Server error: some of your changes weren\u2019t applied",
+ "wQxd0f": "This lets members see who viewed their files. Only members of {team_name} and people who can edit can see this info.",
+ "wR6kVu": "To add new comments, open this file",
+ "wRKAnK": "Time: {hours_string}",
+ "wSUtWj": "We frequently do photo shoots and have to send clients 20-30 high-res files at a time\u2026Dropbox Business makes it easy to manage the big, heavy data every day. We just send links to our clients, and they immediately get what they need. Security is a priority for our IT team since we handle highly confidential data, and Dropbox Business has proven to meet our requirements.",
+ "wSk4LC": "Share your work with customised branding, and track who engages with your files.",
+ "wT+jZo": "Mobile access for scanning in paperwork as soon as you receive it",
+ "wT/J1a": "This group was created automatically.",
+ "wT4Vza": "Loaded too slowly",
+ "wTUnYQ": "{cost}/user/month",
+ "wToEd8": "Keep all in personal folder",
+ "wTppPX": "Link will work for 14 days",
+ "wTqpzc": "Get answers to most questions in seconds (English only)",
+ "wULqRj": "Everything in Plus, with shared link controls.",
+ "wUO13q": "Everything in team folders is automatically available to your team members. You can manage permissions to control who sees what.",
+ "wUWAk5": "Created on",
+ "wUZqfd": "This is the only folder there is.",
+ "wUx/kk": "Permanently deleting team folder\u2026",
+ "wV6z/F": "Share files, big or small",
+ "wVS5Gq": "Activity",
+ "wVc49T": "Several users leaving comments and feedback at selected points on an image.",
+ "wWAI7P": "{count, plural, one {{count} minute} other {{count} minutes}}",
+ "wWiDtY": "You can\u2019t copy a folder into itself.",
+ "wXQ4cp": "File locking",
+ "wXhxJC": "Try again",
+ "wYS7r7": "All folders under this policy",
+ "wYkgel": "Default",
+ "wZBdwd": "To add this folder, you\u2019ll need {needed} of space in your Dropbox. You currently have no space left.",
+ "wZNE4f": "Cancelling...",
+ "wZejJ8": "can view",
+ "wZr65c": "Remember to add members",
+ "wZswLL": "Resend",
+ "wa/t/z": "Unlock easy-to-use security controls and admin tools",
+ "waNIwV": "1 billion API calls/month for data transport partners",
+ "wapekl": "{count, plural, one {{count} minute left} other {{count} minutes left}}",
+ "wawb2a": "Couldn\u2019t remove. Try again in case it was a one-off, or reload the page.",
+ "wbPFl6": "{name} gave view-only access to {entity}",
+ "wc8McX": "Live chat support",
+ "wcAlBh": "Remove EVH",
+ "wcjGt1": "One or more names or email addresses",
+ "wcu7vq": "Close",
+ "wdUEfN": "Oops! An error occurred. Please try again later.",
+ "we6GC8": "Mark as read",
+ "weHxO6": "Something went wrong at our end.",
+ "weIeek": "Design: @bob",
+ "weMg5F": "To",
+ "wekAML": "Direct message",
+ "wetul1": "Dropbox will sign Business Associate Agreements (BAAs) with customers who require them.",
+ "wfCJ/d": "This alert is triggered when a team member signs in from a location we consider high risk.",
+ "wfHzR1": "Let us know about an app you\u2019d like to see in App Centre, and share your feedback.",
+ "wfJMlq": "There was an error completing this request.",
+ "wfrJuc": "Download here",
+ "wgFV6P": "Open",
+ "wgYFm/": "To see your ticket history, first verify your email address. How to verify your email address",
+ "whFErF": "A CSV report will be saved in your Dropbox Business Reports folder. We\u2019ll email you when the report is ready.",
+ "whhn4M": "Cancel",
+ "whpa/9": "Couldn\u2018t add file \u2013 please try again",
+ "whxBh0": "Members of the file with this link and password can edit. Downloads disabled.",
+ "wi+IMg": "Give this hold a unique name",
+ "wiPRXu": "There was an error changing the billing period.",
+ "wiePli": "hours",
+ "wiyHLU": "You cannot join a family from a linked work account. To join, first switch to your personal account.",
+ "wjbUAD": "Your vault files will be temporarily unavailable",
+ "wjwJvt": "App actions",
+ "wkflKt": "Your account has {allocated} of storage",
+ "wks8mV": "Redirecting to the next page...",
+ "wl+tit": "View all results for \u201c{query}\u201d in {current_path}",
+ "wlDXdS": "Event details",
+ "wlVQVN": "Great! Now select who can access these folders.",
+ "wmGnzI": "Password changed successfully. Any existing sessions, devices and apps can still access your Dropbox.",
+ "wmv2D+": "Requested",
+ "wnIm4S": "What is the difference between {trademark_business} and {dropbox_plus}?",
+ "wnSymU": "Total",
+ "wnp1kN": "I delete a large number of files",
+ "wo0qrl": "See plan details",
+ "woRhD3": "These devices have been unlinked from your personal Dropbox account.",
+ "wou0NI": "{count, plural, one {Members of this folder with the link can view this folder. Expires in {count} day. Downloads disabled.} other {Members of this folder with the link can view this folder. Expires in {count} days. Downloads disabled.}}",
+ "wp4Ln9": "Cancel",
+ "wpToux": "To save email attachments again later, you\u2019ll need to turn this on in settings and create a new email address. ",
+ "wpvhe4": "Link Slack workspace",
+ "wq6RxH": "Leave {dropbox_family}",
+ "wq9FWi": "Optional",
+ "wqLnwg": "Two-step verification is now disabled.",
+ "wqMlXT": "Modified",
+ "wqk5ac": "Sorry, this is only available in the Chrome browser at the moment.",
+ "wrBpI9": "Sign in to Dropbox",
+ "wrC8hw": "Up to 90 days available",
+ "wrE9Wi": "Team members with this link",
+ "wrdNy0": "Create an account",
+ "wrqBpH": "Invalid request",
+ "wrr4Ww": "Try {plan} for unlimited team storage",
+ "wsbuKB": "No disaster recovery",
+ "wscUVd": "Dots per inch",
+ "wspJjc": "Manage licences here.",
+ "wspYkP": "{roundedGb,number} GB",
+ "wtDwxp": "Convert account",
+ "wtRKPQ": "Please ensure that you\u2019ve verified your email and try again.",
+ "wthUCo": "Are you sure you want to unlink your accounts?",
+ "wthy68": "Go back to editing",
+ "wtpsVq": "Couldn\u2019t upload. Try again in case it was a one-off, or reload the page.",
+ "wu2GwX": "Manage",
+ "wu30yf": "See all deleted files.",
+ "wuJa7T": "Files exceed 20 MB limit, try removing some",
+ "wueHdX": "Finish your setup",
+ "wvG8wL": "Install Dropbox to get the most out of your account",
+ "wvYY/d": "Start new files as local",
+ "wvYbya": "{price} per year",
+ "wvZo+e": "on mobile",
+ "wvm3tI": "Connected",
+ "wwJyN3": "
Sign in to dropbox.com with your admin account.
\n
Click Admin console in the list on the left.
\n
Click Billing in the list on the left.
\n
Scroll down and click Cancel plan.
\n
Select why you\u2019re cancelling and click Continue with cancellation.
\n
Tick all boxes to acknowledge the consequences of cancelling.
\n
Scroll down and click Complete cancellation.
\n
Your team will become a free team at the end of your billing cycle.
",
+ "wwrwmN": "From",
+ "wx4n9v": "See uploaded files and the details of any closed requests here.",
+ "wxxCwz": "For some reason, we couldn\u2019t download Dropbox.",
+ "wyR2b+": "{number_bytes_uploaded} of {total_number_bytes_to_upload}",
+ "wySt+D": "Cannot find that member. Try refreshing the page.",
+ "wydWcS": "To merge, export the files held for deleted members, then remove them from the hold. If you need help with this, please contact us.",
+ "wyhQi6": "Last 90 days",
+ "wylhF/": "Files from computer",
+ "wyxc8i": "You restored a previous version of {single_item_name} in {folder_path}",
+ "wz2qQf": "Head over to Trello to create a board and list.",
+ "wz9EvW": "Move\u2026",
+ "wz9sit": "Dropdown arrow",
+ "wzKMOb": "Text",
+ "wzjBka": "Sending...",
+ "wzpli8": "Device approvals",
+ "wzs1Yb": "Features",
+ "x+7Lqb": "Don\u2019t limit",
+ "x+Vjb/": "Need to transfer more than {file_size_limit}?",
+ "x+hW2H": "You\u2019ve already scheduled a change to your plan. If you want to choose a different plan, first cancel your scheduled change.",
+ "x/N7se": "{count, plural, one {{count} link attached} other {{count} links attached}}",
+ "x/c7tU": "Settings",
+ "x/db8i": "Make sure scanning is on",
+ "x/e6Ro": "Share this folder to be able to receive activity updates.",
+ "x01mJ5": "Change how members can access \u201c{current_folder}\u201d?",
+ "x0SsQU": "Retention period",
+ "x0TfbL": "I am switching to a different Dropbox product",
+ "x0dt+r": "Invited by {inviting_user}",
+ "x0jh3H": "No one has worked on this file in the past 3 months.",
+ "x0xdWW": "Continue",
+ "x1+XgP": "Your background image should be a single file.",
+ "x19v9w": "Participants are any of the people involved in the activity",
+ "x1b2rx": "Everyone",
+ "x1xVSm": "Continue on my own",
+ "x28HfH": "Invitation to join the team sent and pending.",
+ "x2Kt2r": "Top right",
+ "x2cBYd": "Try free for 30 days",
+ "x3/o5z": "Your feedback will help make Dropbox even better.",
+ "x31E2S": "Show in Finder",
+ "x37FDM": "Choose what to include:",
+ "x3AX+F": "Locked by {name}",
+ "x3bKKe": "If you remove {user_name}, they\u2019ll be moved to a {default_plan_name} plan and will lose access to the Family plan\u2019s storage and features.",
+ "x48gqV": "Outside your Dropbox team",
+ "x4OjCc": "Send by email",
+ "x4dKqg": "Display name",
+ "x4qWSo": "Add a customised message (optional, but recommended)",
+ "x4xWgG": "How many people?",
+ "x51rlw": "Default shared link privacy",
+ "x5Je3g": "Member access updated.",
+ "x5SpE7": "Loading search...",
+ "x65utM": "Send and request electronic signatures on documents.",
+ "x6Amfo": "{date,date,::MMM d, yyyy}",
+ "x6jJaw": "Add a message (optional)",
+ "x730HD": "Shared by",
+ "x7SX3o": "Discover what Dropbox can do for you.",
+ "x8+vu0": "It looks as though there's nothing in that folder.",
+ "x8R7Bu": "Text",
+ "x8UtR/": "Cancel",
+ "x8vQXX": "We\u2019ll resend invitations to everyone who hasn\u2019t accepted yet",
+ "x9Nxnp": "Prepare and send documents for eSignature, directly from Dropbox.",
+ "x9y2Yc": "You\u2019re watching a preview. To watch the full video, download it or add it to your Dropbox.",
+ "xA0xXC": "Switch accounts",
+ "xAIByw": "Cancel",
+ "xB5uRB": "Dropbox Terms",
+ "xBHDnW": "Team admins can manage everything for all admins and members. Are you sure you want to continue?",
+ "xBHP6h": "We were unable to fetch linked apps.",
+ "xBIzV+": "{count, plural, one {Anyone in the {trademark_business} team with this link and password can edit the file. Expires in {count} day.} other {Anyone in the {trademark_business} team with this link and password can edit the file. Expires in {count} days.}}",
+ "xBbH4N": "Anyone in the {trademark_business} team with this link can edit the file. Downloads disabled.",
+ "xBeASx": "Blue folder containing Google Docs, Slides and Sheets icons. Above that, five coloured circles containing faces of people.",
+ "xCOKIP": "Manage your content more easily, and save time and energy for other tasks.",
+ "xCVmUR": "Try Dropbox with a new team",
+ "xCqi47": "Deployment mode",
+ "xCts6z": "Settings",
+ "xDGiYl": "Send feedback",
+ "xDSE4z": "Can\u2019t move 10,000+ files. Try moving sub-folders individually.",
+ "xERo36": "Auto, fired, red-eye reduction",
+ "xEbOp4": "deleted shortcut",
+ "xF3Od1": "Dropbox Headless install via command line",
+ "xFQvi+": "By cancelling {trademark_business}, you will lose any remaining days of your free trial.",
+ "xFjOJt": "Couldn\u2019t send request. Try asking to join in person.",
+ "xGF6yN": "will have the meaning given to it under HIPAA if provided to Dropbox as Stored Data in connection with the Customer\u2019s use of the Services provided under the Agreement.",
+ "xGSoOh": "If you create a new account, bear in mind that a {PLUS} plan is required to use {DROPBOX_VAULT}; if you sign up for a {BASIC} plan, your vault will become a regular folder.",
+ "xHGt2e": "Shared with",
+ "xHrhU3": "Help",
+ "xIIOk9": "Set up",
+ "xIv/b5": "Join this Dropbox team for easier collaboration and instant access to team files.",
+ "xJJzde": "Start your {trial_length}-day free trial now, and get {discount_percentage,number,::percent .##}{br} off your annual subscription!",
+ "xK+xtZ": "Folder overview examples",
+ "xK2zMz": "Viewed {timeAgo} on web",
+ "xKaH8g": "Learn more about organisation admin roles",
+ "xKxA1E": "Targeting",
+ "xLAQNV": "People with this link can view",
+ "xLBgvV": "No users",
+ "xLxcJN": "Its scalability and ease of use are key factors in us making Dropbox available to everyone at the university. We want to offer the best choice of collaboration for our staff and students, so they can focus on their important work, and Dropbox fits perfectly into this.",
+ "xMIcmK": "Allow by default",
+ "xMTzQb": "Admin privileges granted.",
+ "xMhKAr": "No suggestions at the moment, but you can still add to your team.",
+ "xNGM5C": "Unsuspend account",
+ "xNMSzl": "I don\u2019t want to pay for the features on this plan",
+ "xNtgXg": "Thanks for verifying your email address. You can now enable the Public folder for your {email} Dropbox.",
+ "xOKZbV": "Easy to access",
+ "xONQyk": "Can\u2019t preview items in password-protected {extension} files.",
+ "xOPmrj": "{count, plural, one {Show {count} more} other {Show {count} more}}",
+ "xOfzBI": "1 TB (1,000 GB) of space",
+ "xOodvS": "Can\u2019t show content because the owner hasn\u2019t granted you access.",
+ "xPABSy": "A current member has asked you to invite this person to the team.",
+ "xPH1sd": "Opened",
+ "xPLXI9": "View team and groups",
+ "xPikZg": "Expires today",
+ "xPphSe": "Trusted devices",
+ "xQUjNt": "Marketing",
+ "xQcYSK": "Admins from these teams can sign in to your team\u2019s admin console to manage settings.",
+ "xRKxh4": "See my options",
+ "xRmacq": "More about tickets",
+ "xSRU6n": "Options",
+ "xSVM+Y": "Use this form to report content to Dropbox.",
+ "xSeL/y": "We use admin account info to figure out the email",
+ "xSgGcp": "Enter email addresses instead",
+ "xSnLZk": "{price} per year. Save {savings}",
+ "xSw/gY": "Billing, payments and subscription changes",
+ "xT8JbL": "Your files will stop syncing on the devices you sign out of, but they won\u2019t be deleted.",
+ "xTTXBn": "{count, plural, one {{count} file} other {{count} files}}",
+ "xUDQ+/": "Please note that you have an active Dropbox {trademark_plus} trial managed through the {billing_store}. You must cancel it to avoid being charged in the future.",
+ "xUEEuy": "Deleting your vault will remove Vault from your Dropbox and permanently delete Vault files. You will be able to re-activate Vault from your account settings, but no settings will be retained and you won't be able to restore your files.",
+ "xUKKu5": "Optional for specific members",
+ "xUYJHW": "Deleted by",
+ "xUl7yl": "Events",
+ "xUsLk2": "My account",
+ "xUy/si": "Couldn\u2019t open list.",
+ "xVsSTQ": "Choose a folder",
+ "xW4p7B": "Can\u2019t upload file",
+ "xWT9mA": "Oct",
+ "xWeLKL": "How inviting a team works",
+ "xWwooI": "Close",
+ "xX2p4m": "Preview of image watermark option",
+ "xX5O5j": "Click Save when you\u2019ve finished making changes.",
+ "xXANaY": "Reconnect to Slack",
+ "xXCpjB": "Copyright violation",
+ "xYXFPH": "{count, plural, one {Anyone with this link and the password can view the folder. Expires in {count} day.} other {Anyone with this link and the password can view the folder. Expires in {count} days.}}",
+ "xYXgy4": "If you need to move {file_name}, ask your admin to move it for you.",
+ "xYYMGO": "Learn how to manage cookies in Internet Explorer 11.",
+ "xYinYM": "Updating member access...",
+ "xYwBE4": "Some pages failed to load",
+ "xZI0xM": "{count, plural, one {Anyone with this link can view the folder. Expires in {count} day.} other {Anyone with this link can view the folder. Expires in {count} days.}}",
+ "xa73a6": "Finished uploading",
+ "xaHGTa": "Accident protection",
+ "xaIpK4": "Dropbox relies on third-party cookies to work with online editors, but the browser you\u2019re using either blocks third-party cookies or uses tracking prevention.",
+ "xalATL": "{count, plural, one {Hide last {count}} other {Hide last {count}}}",
+ "xb28qW": "Control who can view the file with this link.",
+ "xb3b5k": "Customer support",
+ "xbVIxL": "Change:",
+ "xbgRlN": "Share screen",
+ "xbrM8o": "Check when it happened",
+ "xbrdNQ": "Share with {team_name}",
+ "xc1Pi2": "Description",
+ "xcBnGg": "Use cases",
+ "xcX5ak": "View tasks assigned to others",
+ "xcYRNV": "Removed from {sharedFileName}",
+ "xcggVf": "Discard changes?",
+ "xcnS+t": "This member will be able to access the files, shared folders and groups they had when their account was deleted.",
+ "xdMd2y": "Nov",
+ "xdQIWj": "Choose files from your Dropbox account to protect in a vault. Then they won\u2019t be visible elsewhere on Dropbox, so you never risk exposing them accidentally.",
+ "xeJ+jE": "Web session closed.",
+ "xfHagR": "Professional only feature",
+ "xfMCig": "Oops, something went wrong.",
+ "xfeRYb": "Sign up for Dropbox to use Paper",
+ "xffpe2": "You use a third-party password (such as Google or Apple) to sign in to Dropbox, but for extra security we require a Dropbox password to access vault files.",
+ "xftYyh": "(save {savings,number,::percent .##})",
+ "xgMWwS": "This file is not on a plan that includes time-based commenting.",
+ "xgcx22": "Remind me later",
+ "xh009M": "App name or developer",
+ "xhxvHj": "{new_total} per {new_period} will be charged to the payment method on file.",
+ "xiKR1u": "Smart Sync helps you access files but uses up very little space on your hard drive, so you always have the right file at your fingertips.",
+ "xiT5su": "Couldn\u2019t load comments",
+ "xidXgJ": "Sorry, an error occurred. Please try again.",
+ "xj0qJi": "{count, plural, one {{count,number} comment} other {{count,number} comments}}",
+ "xj5uap": "Join team",
+ "xjnH8O": "Here are the folders you\u2019re currently sharing. Select anything you think your team might need. Everything else will live safely in your personal folder.",
+ "xjueJ2": "Only applies to folders at the top level of Dropbox. Sub-folders follow the setting of the folder they\u2019re added to.",
+ "xk236b": "Transfer",
+ "xkXFjI": "Hi {user_name}, I @mentioned you in this folder. Take a look.",
+ "xl6krg": "Date range",
+ "xlFbtN": "Successfully connected {app_name}",
+ "xlabvw": "Invalid server response",
+ "xls7QR": "You can still move files into Vault yourself. Choose any files you consider valuable, such as medical records, financial records and contracts.",
+ "xmCig8": "Too many incorrect passwords. Please try again in a few minutes.",
+ "xmIDr1": "There was a problem completing this request",
+ "xn0eiQ": "How many computers can each member connect to Dropbox via the Dropbox desktop app?",
+ "xn3SDu": "key",
+ "xnBlIG": "In order to protect your Vault, you must wait 48 hours after resetting your Dropbox password to change your PIN. ",
+ "xna7ek": "Verify your email address",
+ "xnp3tm": "Finish joining the team",
+ "xoFCOZ": "Off, did not fire, return not detected",
+ "xoLqNS": "Try a different account",
+ "xoaEua": "Open in Dropbox",
+ "xpTFuT": "Members can join your team using this link",
+ "xq+XhH": "Uploads won\u2019t be disabled.",
+ "xq4LWu": "To move members here, contact us to update this team\u2019s version of Dropbox.",
+ "xqds9K": "Anyone in your Dropbox team with this link can view the file.",
+ "xqj2eW": "Mention teammates in specific areas of files for targeted feedback.",
+ "xrk5tq": "{folder_name} will start as synced.",
+ "xs1WyB": "{number, plural, one {Viewed {number,number} hour ago} other {Viewed {number,number} hours ago}}",
+ "xs2ao2": "Send a notification to my devices",
+ "xs62vu": "{index}. Choose your billing cycle",
+ "xsBjuE": "Invite your family",
+ "xsCfKJ": "Before we enable Showcase, we want to remind you that data stored in Showcase will be stored on Dropbox infrastructure located in the United States. Your team has opted to have your file data stored in Dropbox folders to be located on European infrastructure. We make this option available to our large EU-based teams, but this option does not apply to Showcase data.",
+ "xt5oUg": "{count, plural, one {Your {count} existing shared folder invitation will be removed if you change your email address.} other {Your {count} existing shared folder invitations will be removed if you change your email address.}}",
+ "xtRTwX": "Sign-in is locked because there were too many unsuccessful attempts. Please try again later.",
+ "xth1bv": "Cancel",
+ "xuJw2w": "Cancel",
+ "xuKK76": "Get included on early releases for new Dropbox features. Early release features are subject to these additional terms.",
+ "xuc+Bh": "This link will no longer work for anyone who has it.",
+ "xukJ6/": "Your password should be four bars",
+ "xv81N2": "To see who downloads your transfer, email it.",
+ "xvIreV": "We were unable to fetch deleted file details.",
+ "xvcDzL": "{durationTimeInYears, plural, one {{durationTimeInYears} year since last modification} other {{durationTimeInYears} years after last activity}}",
+ "xvqCPU": "Check your two-step verification settings",
+ "xvqMO2": "URL",
+ "xw8mQ6": "Add any email address that ends in {firstDomain} or {secondDomain}",
+ "xw9fIG": "Sign in to your personal and work accounts on all of your devices",
+ "xwrFG7": "An easier way for your marketing team to coordinate launches, streamline content calendars and plan social campaigns.",
+ "xxUUHn": "Previous team",
+ "xxiQis": "Members can only view files.",
+ "xxurhh": "How do I back up photos on iPhone or Android?",
+ "xy84ul": "Bring it all together",
+ "xy9agL": "Enjoy the journey",
+ "xygQ+C": "Show preview with splash screen",
+ "xyiIYK": "Get a quick view of your next meeting",
+ "xylkiX": "Privacy Policy",
+ "xzFkmk": "People who made you a trusted contact",
+ "xzavZH": "This team is out of licences. Contact us to add more.",
+ "xzbxdc": "Anyone in your Dropbox team with this link can view the folder. Downloads disabled.",
+ "xzfUGH": "Mobile apps",
+ "xzxWmV": "Easy and secure sharing",
+ "xzzsCz": "Remove admin permissions",
+ "y+3UjK": "Idle session length",
+ "y+Ilev": "Attach a file to a card in Trello",
+ "y+Pbbq": "Send for signature",
+ "y+eSbf": "Continue",
+ "y/1E2c": "Teams",
+ "y/lF1K": "{count, plural, one {{dropbox_full_message}. To get more space, upgrade to {trademark_business}.} other {{dropbox_full_message}. To get more space, upgrade to {trademark_business}.}}",
+ "y/ubfn": "This folder has been renamed to \u201c{folder_name}\u201d",
+ "y0PTEJ": "Save hard drive space with Smart Sync",
+ "y0eA+H": "24 hours",
+ "y0ifA+": "For work",
+ "y12FO9": "See what Paper can do",
+ "y13pJ3": "Other teams we think you might want to join",
+ "y1g7SR": "Your new password should be four bars:",
+ "y1hm5z": "Loading assignments...",
+ "y1ySNn": "Add more files",
+ "y23rgT": "This is where you\u2019ll keep your personal work files. All your existing files live here, too.",
+ "y2A/fr": "If you need to restart the download, click here.",
+ "y2ZqfC": "Email address associated with the account",
+ "y2bJQP": "Make user management admin",
+ "y2iJBv": "{count, plural, one {You rolled back {count} item} other {You rolled back {count} items}}",
+ "y31AQD": "Contact support",
+ "y3d60z": "Work on files together with shared folders",
+ "y3dl6B": "Unlimited version history",
+ "y3fExc": "This extension will be removed once Dropbox has been installed.",
+ "y3tz33": "The {team_name} shared workspace is full, so no new files can be added",
+ "y4e6b/": "This folder",
+ "y4xCgb": "Expand menu for {action}",
+ "y5/gC7": "Start {duration}-day trial",
+ "y53jZ7": "Passwords must contain 6 characters or more.",
+ "y6ah/d": "
Sign in to your App Store account here and report a problem with a purchase.
Click Report a Problem next to the Dropbox app.
Choose a problem, write a description and click Submit.
Apple will contact you with a decision about your refund request.
",
+ "y6yO+g": "How can I cancel my account?",
+ "y79nPE": "Expires in {amount_of_time}",
+ "y7S+/u": "Open email",
+ "y7aJQC": "Colour space",
+ "y7bSVp": "Can comment",
+ "y8BuyK": "Create",
+ "y8JccE": "{count, plural, one {{count} shared folder selected} other {{count} shared folders selected}}",
+ "y8OShu": "Your admin created this shared workspace for your team. Stuff you add here is automatically shared with everyone in your team.",
+ "y8qDYk": "They can manage your members, including adding admin permissions.",
+ "y9TVto": "You can create links to any files or folders. These links can then be sent to anyone (even people who don't have Dropbox) for viewing. ",
+ "yAEhLX": "Select Download Dropbox.",
+ "yB9vy4": "Cannot find this policy. Try double-checking the link.",
+ "yBIvZF": "Cancel",
+ "yBMBV8": "You edited {relative_time}",
+ "yBRyhM": "App ID",
+ "yBuiQQ": "There were too many unsuccessful attempts. Try again later.",
+ "yC0qR0": "Please note that you have an active Dropbox {trademark_plus} subscription managed through the {billing_store}. You must cancel it to avoid paying for two subscriptions.",
+ "yC1hag": "How people like you use Dropbox",
+ "yCNEfh": "Share the link",
+ "yCbN77": "{price}/month",
+ "yDBqyM": "Types",
+ "yDGGwz": "Invalid file extension: {fileType}",
+ "yDmb9Z": "Sync your existing files?",
+ "yDs6IE": "Rotate clockwise",
+ "yEAQ1+": "You're all set!",
+ "yEKU8f": "",
+ "yEnVAd": "Your account will be merged into the {team_name} Dropbox account, where you\u2019ll have\na private area for your stuff. {team_name} admins can manage your files and Paper docs if they\nupgrade the account to {trademark_business}. {team_name} hasn\u2019t enabled Smart Sync, so new files will\nbe downloaded to your hard drive. You\u2019ll sign in with {work_email}.",
+ "yFJOsr": "Confirm new email address",
+ "yFOm+P": "
Sign in to dropbox.com with the account you want to cancel.
\n
Click your profile picture or grey circle in the top right-hand corner.
\n
Click Settings.
\n
Select the Plan tab.
\n
At the bottom, click Cancel plan.
\n
Scroll down and click I still want to downgrade.
\n
Select the reason why you want to cancel.
\n
Scroll down and click I still want to downgrade.\n You\u2019ll receive an email confirmation that your subscription has been cancelled.
\n
Your account will be downgraded to Dropbox Basic at the end of your billing cycle.
",
+ "yFeh8t": "Select folders that will be synced automatically to members\u2019 hard drives",
+ "yFobR2": "Create",
+ "yGD3o1": "You can remove either account from this computer in your app Preferences.",
+ "yGNa0c": "member folder",
+ "yGP7qq": "Still not sure? Let us know",
+ "yGV9pL": "Get unlimited access to our productivity partner ecosystem, with app integrations for Communication, Workflow, Project Management, CRM, Productivity, Education, Media & Design, Finance, eSignature and Marketing solutions.",
+ "yGgaIu": "Description",
+ "yH+i99": "Thanks for participating in {offer_name}.",
+ "yH9Gqv": "Can edit",
+ "yHAcZL": "Please log in as {email}{br}to manage your plan.",
+ "yHR5ks": "See next steps",
+ "yHeLJO": "What is Dropbox?",
+ "yHgTUN": "Save to your member folder?",
+ "yHnVyB": "View all plans",
+ "yI+MEC": "(Expired)",
+ "yIGH7D": "An International Bank Account Number (IBAN) is a unique identification code for a bank account. It\u2019s made up of a two-letter country code and up to 30 alphanumeric characters. Check your bank statements or ask your bank for your IBAN.",
+ "yIV8fq": "{count, plural, one {{count,number} email can\u2019t be invited because it\u2019s hidden by another app: {emails}} other {{count,number} emails can\u2019t be invited because they\u2019re hidden by another app: {emails}}}",
+ "yIq4Am": "esc",
+ "yIvHiK": "Sign in with Dropbox to use Spaces",
+ "yJcqG4": "You can\u2019t use your primary phone as your backup",
+ "yK0RKf": "You\u2019re in!",
+ "yK7wiN": "and {howMany} more",
+ "yKS63O": "See all activity",
+ "yKk1zB": "Text",
+ "yL6jvx": "Please take a moment to review your Dropbox security settings.",
+ "yLLoZO": "Photos",
+ "yLuosa": "Some of your folders are only visible on dropbox.com. With Smart Sync, you can make these folders online only. Then you\u2019ll see them in the Dropbox folder on your computer and still save hard drive space.",
+ "yLvC8k": "Member unsuspended",
+ "yMMY5D": "Online only: files default to living online. Ideal if you usually work online and need more free hard drive space.",
+ "yMofai": "{showcase} isn\u2019t available for this team. Contact your admin for more info.",
+ "yMtPEx": "For our Sept 2019 issue, let\u2019s try streamlining our process with the following two folders.",
+ "yNdnfh": "Feedback",
+ "yO4V6k": "Update billing information",
+ "yOUn8S": "Someone is working on this file in {editor_with_lock_string}. However, your admin has disabled access to {editor_with_lock_string} in your organisation.",
+ "yOnuCE": "All set.",
+ "yP/kmk": "Intelligently suggested files and folders keep your team one step ahead by giving everyone the content they need, when they need it.",
+ "yP8tlA": "Transfer files easily from one user to another when responsibilities change.",
+ "yQbWhp": "deleted audio",
+ "yQjmi6": "Admins can control the number of connected devices and what happens to disconnected devices.",
+ "yQppEr": "When you embed an Invision, Sketch or Dropbox file into Paper, it will be previewed correctly. Paper works the way you do, so you can keep working.",
+ "yQskA4": "App support",
+ "yQymSn": "Create folder",
+ "yQziVn": "{count, plural, one {{num_members} invitation sent} other {{num_members} invitations sent}}",
+ "yR1l4z": "in {location}",
+ "yR4pKK": "You\u2019ll still keep contacts who are in your team or who you imported. New contacts will be added when you share.",
+ "yRHDdv": "New deadline",
+ "yRPaqN": "New campaign...",
+ "yRSQ+x": "Default apps",
+ "yRhsqs": "Error verifying",
+ "yRp2bz": "Data governance will be merged too",
+ "ySF+8M": "I don\u2019t find it valuable",
+ "ySR8HJ": "How Rewind works",
+ "ySUQcR": "means 45 CFR, Part 164, Subpart C, under HIPAA.",
+ "ySmYba": "Members can manage secondary emails",
+ "yTQyaR": "You can edit",
+ "yTw3JQ": "Enter your link code below",
+ "yU+Z4I": "Oops, we had an issue.",
+ "yU0xda": "Email address",
+ "yU6FXl": "Warning!",
+ "yUI3mW": "They\u2019ll keep access to their own content, but they\u2019ll lose access to any team folders and anything not shared with them directly.",
+ "yULkHH": "Updating...",
+ "yUSwKs": "Get started",
+ "yUetMg": "Smith",
+ "yUg6ct": "Created",
+ "yUknRf": "The folders have stopped syncing and members can\u2019t add new files. To get more space, upgrade to {trademark_business}.",
+ "yV3a0G": "Your team space",
+ "yVYNlO": "Approved",
+ "yW5jui": "Simple and secure file transfer",
+ "yWmNDZ": "How to play video and audio files on Dropbox",
+ "yXRvXb": "Individual",
+ "yXjZBq": "This Dropbox {plus} plan was activated with a licence key. The next licence key will be activated on {date}.",
+ "yXo+0L": "When everything is in one, organised place, you can find your files easily from anywhere.",
+ "yXpwgx": "Revoke trusted status from any of your devices that skip two-step verification.",
+ "yY5byF": "Word document",
+ "yY9fAj": "Esc",
+ "yYoidl": "What would you like to use Dropbox for?",
+ "yZ3m0Y": "See plan details and monthly pricing",
+ "yZ3yD5": "You deleted {ago}",
+ "yZKvum": "(Optional) Dropbox suggests files to store in a vault. We respect your privacy \u2013 see how this works",
+ "yZT9Bf": "To enable Google sign-in, single sign-on must be set to Off or Optional.",
+ "yZXoct": "Test string",
+ "yZn8iM": "I don\u2019t need this file at the moment.",
+ "yZqpE+": "Upload",
+ "yZsrgl": "Get {showcase}",
+ "yaGg42": "Cancel",
+ "yacDmF": "Step 1/2: add your billing info",
+ "ybyEmp": "Now",
+ "yc8lym": "Photos & videos",
+ "ycH5zr": "Email",
+ "ycHIQI": "We emailed you a sign-in link. Please check your inbox.",
+ "yciCHe": "All changes will be updated on actively shared links.",
+ "ycve0w": "{display_name} is now a team admin.",
+ "yd0RsA": "Editing is locked for this file",
+ "yd60sv": "happy face",
+ "ydB9kl": "View and modify plan details",
+ "ydgWJD": "Something went wrong, but we think it was a one-off. Please try again.",
+ "ydkSFM": "Unnamed security key",
+ "ydowLy": "Let members lock editing temporarily for a file while they\u2019re making changes. To see all locked files, go to Content.",
+ "ye+BbQ": "Get the Dropbox app",
+ "yenocu": "{count, plural, one {Members of the file with this link and password can view. Expires in {count} day. Downloads disabled.} other {Members of the file with this link and password can view. Expires in {count} days. Downloads disabled.}}",
+ "yeuC04": "Back to download options",
+ "yf0GBe": "Invitation pending",
+ "yf3+2O": "Send with Transfer",
+ "yfKCnj": "Confirm you want to delete",
+ "yfRlFm": "Remove all admin rights",
+ "yfgkq/": "Use the Dropbox app to continue",
+ "yg9BrZ": "Make \u2018{emailToBePrimary}\u2019 primary?",
+ "ygEddR": "You\u2019ll be charged {prorated_price} for the new plan, pro rata for the current billing period.",
+ "ygWyU0": "Connected",
+ "ygkNbi": "Select to join {teamName}",
+ "ygsMY8": "Requesting\u2026",
+ "yhOAKQ": "There was an issue cancelling your changes. Please contact customer support.",
+ "yhn6hL": "Welcome to the {team_name} team!",
+ "yi7qcS": "Ctrl + {key}",
+ "yiUcOx": "You\u2019re about to leave the {team_name} Dropbox team",
+ "yj/RbI": "The team folder name is invalid.",
+ "yjQZvY": "Log in with correct account to download ZIP",
+ "ykCKqp": "{count, plural, one {Your {count} existing shared folder invitation in your personal Dropbox will be removed if you change your email address.} other {Your {count} existing shared folder invitations in your personal Dropbox will be removed if you change your email address.}}",
+ "ykReRx": "Delete",
+ "ykcKnI": "You can add people you want to work with",
+ "yklAgO": "{numYears, plural, one {{discount,number,::percent .##} off for {numYears,number} year!} other {{discount,number,::percent .##} off for {numYears,number} years!}}",
+ "yl0Fe9": "Successfully unlinked host.",
+ "ylBTam": "Direct",
+ "ylXIje": "Text of watermark",
+ "ylnQ1I": "securely backed up to dropbox.com",
+ "yluH71": "HelloSign deep integration",
+ "ylxfn/": "Country",
+ "ymINbT": "It looks as though someone permanently deleted this file",
+ "ymP1f5": "Start your free trial",
+ "ymi0Ig": "You can't share until you verify your email address.",
+ "ymxUCW": "Introducing Dropbox Paper",
+ "yn+GyK": "Secure your life\u2019s work \u2013 it only takes a few clicks",
+ "yn8fOE": "With {plusSpaceLongFormRounded}, you\u2019ll have plenty of room for files from all of your linked devices, stored securely in one organised \u2013 and easily accessible \u2013 place.",
+ "ynIlsr": "{numOfDeletedFolders, plural, one {1 folder was deleted by a member, but the retained files are still safe. To get these files, click Download content. For info on the files, click Create report.} other {{numOfDeletedFolders} folders were deleted by a member, but the retained files are still safe. To get these files, click Download content. For info on the files, click Create report.}}",
+ "ynUBTD": "Open",
+ "ynkxt6": "Can\u2019t find that person in your team",
+ "yo7heU": "Request multi-team admin access",
+ "yofFQe": "Loading imported contacts\u2026",
+ "ypCq5U": "Message",
+ "ypDO7+": "Alert",
+ "ypVr/u": "Move your team\u2019s Paper docs into Dropbox folders. Makes it easier for your team to access and organise their docs.",
+ "ypZYCu": "Enter your email address to reset your password.",
+ "ypbl+a": "Deliver completed projects",
+ "ypkPC5": "Upload by today at {time}",
+ "yq3RyE": "Codec",
+ "yqLGvW": "Failed to resend invitation.",
+ "yqXDtR": "Art/design",
+ "yqzu+V": "Invite others",
+ "yr/ac9": "Dropbox Smart Sync storage optimisation",
+ "yr1V3y": "We were unable to fetch mobile devices.",
+ "yr7w1/": "All other members",
+ "yrMoVL": "{count, plural, one {{count} person in {group_name} can edit} other {{count} people in {group_name} can edit}}",
+ "ysL13U": "Anyone with this link can view the folder.",
+ "yse7tr": "Jane Smith",
+ "yssxF1": "Recipe collection",
+ "ystVF4": "Giving new members access to all of this group\u2019s shared folders might take a while.",
+ "yt51qX": "You\u2019ll be charged {prorated_price} for the new billing schedule and plan, pro rata for the current billing period.",
+ "ytUb1D": "Billed monthly",
+ "ytXwAd": "Resend invitation to {email}",
+ "ytmJnQ": "{modifier} edited ",
+ "ytrKpj": "From",
+ "yuMCFt": "With Dropbox {showcase}, you can share your work with partners and clients beautifully, track progress and keep tabs on who\u2019s seen what \u2013 all in one place.",
+ "yuuljM": "{professional_price}/month",
+ "yvJeMj": "Attached files show up as thumbnails in Trello.",
+ "yvMeAJ": "Contact your team admin to change email",
+ "yvTBP0": "Admins in your team won\u2019t automatically become admins in the primary team. To get admin privileges, ask an admin in the primary team after the merge is complete.",
+ "yvTGLf": "Excluded members",
+ "yvYw6a": "Deadline time",
+ "yvuT7v": "{count, plural, one {{count} licence} other {{count} licences}}",
+ "yvuVL4": "{trademark_transfer}",
+ "yvyyXC": "per year",
+ "yw2PXj": "Refresh page",
+ "yw3Lbd": "Please agree to the Terms of Service",
+ "ywFEMZ": "Your new total will be {amount}{tax} {interval} for all {licenses} licences. These changes will be applied immediately.",
+ "ywprIY": "You work as an individual with Dropbox. You want to get organised and share easily.",
+ "ywqz2g": "Can edit",
+ "ywuKP5": "{file_number} of {file_count}",
+ "ywumKe": "Tasks marked as complete here will not affect the source website.",
+ "yxdGmm": "The security code is a 4-digit number on the front of your card, just above and to the right of your main card number.",
+ "yxgpXI": "Enter payment details",
+ "yxq6rX": "Templates for product teams",
+ "yypOy/": "Remove link",
+ "yzAIpy": "Use mobile authenticator instead",
+ "yzFoXG": "Send invitations",
+ "yzPd3d": "That\u2019s it for now. Thanks!",
+ "yzwpLq": "Last activity",
+ "z+5Htd": "Billed yearly:",
+ "z+8QnF": "Create policy",
+ "z+A7qz": "Cancel",
+ "z+CPqs": "yearly with monthly billing",
+ "z+EnK7": "Share files with your Google contacts",
+ "z/VsbM": "Unshare folder",
+ "z/d8Ge": "See your shared meetings and chat to {name} from here.",
+ "z/dbZ1": "Policy type",
+ "z/pQoy": "and",
+ "z0XoHf": "Save",
+ "z0bwcg": "When your team runs out of space, accounts will stop syncing and you won\u2019t be able to add any new files.",
+ "z0vb3Y": "If you purchased your Dropbox subscription through the Apple App Store, you can cancel your Dropbox subscription or free trial by following these steps:",
+ "z16aU2": "Max size: {max_file_size} MB",
+ "z16zv0": "Send reminder",
+ "z17QUa": "You\u2019re switching to yearly billing",
+ "z1K6EC": "Dismiss {host_name}",
+ "z1RKgB": "Link copied to clipboard",
+ "z1Zv7c": "Marketing template",
+ "z1tptm": "You protected some of your shared links with expiry dates or passwords.",
+ "z2KkW3": "Subject of your request",
+ "z2MCOp": "{count, plural, one {View {count} more} other {View {count} more}}",
+ "z2Mttr": "Sorry, an error occurred. Our customer service team has been notified and will be in touch.",
+ "z2Y0Xy": "This customised link lets members go directly to their Dropbox account online once they\u2019ve signed in to your identity provider.",
+ "z2uore": "Remove oldest devices",
+ "z3HdxP": "Automatically save email attachments to a Dropbox folder when you send emails to a unique email address.",
+ "z3MfdB": "This number cannot be lower than 15",
+ "z3xgSH": "Let team members access Dropbox using their company username and password.",
+ "z426aS": "Time defaults to midday",
+ "z4OqOu": "App permissions",
+ "z4RocF": "Strong",
+ "z4f40h": "Your account changes were stopped.{line_break}Please notify your customer service agent of this error message, or visit https://www.dropbox.com/support to speak to an expert.",
+ "z4simy": "Export {num_of_docs} doc",
+ "z4ud8c": "Set passwords, disable downloads and set expiry dates on anything you share with a link.",
+ "z5G18A": "More about photos & videos",
+ "z5KVyp": "Unable to subscribe. Please try again later",
+ "z5Kari": "when billed yearly",
+ "z5N53p": "{count, plural, one {Anyone in your Dropbox team with the link and password can view this folder. Expires in {count} day. Downloads disabled.} other {Anyone in your Dropbox team with the link and password can view this folder. Expires in {count} days. Downloads disabled.}}",
+ "z5S985": "Ask a question",
+ "z5cJI/": "To request a refund, follow these instructions from the Google support page:
Visit this link to view your Google Play account.
Under Order History, click More to the right of Dropbox.
Select Request a refund or Report a problem.
Choose a problem, write a description and click Submit.
You should get an email with your refund decision within two business days.
",
+ "z5t3Bh": "Open",
+ "z6Rf6I": "Choose what happens when you click a link to a Paper doc on this computer.",
+ "z7/sbf": "{count, plural, one {Deleting {count} item...} other {Deleting {count} items...}}",
+ "z7A0FO": "Make a strong impression",
+ "z7ekEU": "Yearly billing (save {discount})",
+ "z7j96E": "or ",
+ "z7te90": "When your download is complete, please run the Dropbox installer.",
+ "z7z6Ga": "Delete data",
+ "z8+dOU": "How much does Dropbox Paper cost?",
+ "z835Ka": "Triage tasks from connected apps",
+ "z84QMV": "Skip",
+ "z8HKmZ": "{price} per additional user",
+ "z8QPs2": "Certain files in this folder can\u2019t be shared due to a takedown request in accordance with the DMCA. Learn more",
+ "z8RAN1": "See and access all files from your computer while saving space",
+ "z8fiGm": "Help members in this team with basic tasks such as password resets.",
+ "z8h5GG": "{monthly_price} per month",
+ "z8q3Au": "Your agreement has been uploaded to your Dropbox.",
+ "z9Ca0+": "Members can create, edit and comment on files. They\u2019ll need a G\u00a0Suite licence.",
+ "z9gCs3": "To",
+ "z9hQqe": "Views of old links that won\u2019t expire, by people outside your team",
+ "z9lnHc": "",
+ "z9swUK": "{count, plural, one {The following files are not supported by Dropbox and cannot be uploaded: {files} and {count} more} other {The following files are not supported by Dropbox and cannot be uploaded: {files} and {count} more}}",
+ "zBbC71": "Try it now",
+ "zC0O65": "SSO sign-in URL",
+ "zCBJ1W": "Overview screen for a customer proposal project showing files and a checklist.",
+ "zCVuen": "Other",
+ "zCfH/i": "No password added",
+ "zCuK3B": "Update",
+ "zD/IJM": "Removed",
+ "zD5i93": "Something went wrong at our end.",
+ "zD9HBn": "Copy link",
+ "zDzQLv": "All set to free up your hard drive",
+ "zEuqqF": "Following Termination of the BAA.",
+ "zFOP6g": "Are you sure you want to disconnect {workspace_name}? You\u2019ll need to reconnect to this {service_name} workspace to continue using it with Dropbox.",
+ "zFiW15": "No folder selected.",
+ "zFotZ8": "To finish enabling Smart Sync, you\u2019ll need to restart your Mac.",
+ "zG6enO": "Billed yearly (save up to 20%)",
+ "zG6jaA": "Confirm your application submission",
+ "zGHPY9": "If members are using more than {basic_space_quota} of storage, Dropbox will stop syncing, additional files can\u2019t be uploaded, and files can\u2019t be restored to earlier versions.",
+ "zGJP/A": "All members will keep their own unshared files and folders.",
+ "zGdvWa": "For smaller teams",
+ "zGlzMk": "Choose logo",
+ "zGtm0O": "Animated loading icon.",
+ "zGvz6D": "Now click the installer that was just downloaded",
+ "zHeVB8": "Transfer up to {free_send_size_limit} free. {paid_send_size_limit} with {premium_plan_sku_name}.",
+ "zHeX5Y": "Couldn\u2019t undo copy.",
+ "zHivvu": "Failed to upload",
+ "zIWsYe": "Resend code",
+ "zIdt+I": "Developer",
+ "zJta6Y": "Welcome back to {date} at {time}",
+ "zK1cW+": "Go to Settings and more {more_horizontal}{chevron_right} Settings {settings}{chevron_right} Privacy & security {lock}.",
+ "zK70JM": "Choose this if you can upload files to your website",
+ "zK8QqE": "Start move",
+ "zKUi/3": "inclusions",
+ "zKwd9v": "Report requested.",
+ "zL2Z05": "Every five years",
+ "zLdZgT": "Login required",
+ "zLpdr6": "can\u2019t merge with deleted members under legal hold",
+ "zLxDLZ": "Signed-in web browsers ({num})",
+ "zM29MG": "The policy covers all current and future files and subfolders.",
+ "zMC+gt": "Time of sign-in",
+ "zMPVDj": "Allows features such as Smart Sync to work",
+ "zMV4Wd": "deleted folder",
+ "zMYKz7": "Unable to copy the link. Please copy manually.",
+ "zMrhld": "A new browser is used to sign in",
+ "zN84c7": "Rewound",
+ "zNWD/m": "Your team currently has Paper turned off. Contact your Dropbox admin for more info.",
+ "zNYL2l": "{date}",
+ "zNpgV5": "1 year",
+ "zNs6Iz": "empty folder",
+ "zO5hYF": "It looks as though there are already members moving to this team. Try again when they\u2019ve all finished.",
+ "zOCshx": "Feature screenshot",
+ "zODqgD": "Some files were not uploaded. Please try again.",
+ "zOKmpY": "For some reason, we couldn\u2019t open the Dropbox installer automatically.",
+ "zOVuhn": "3 of 3",
+ "zOa2gJ": "Send this message to {person}:",
+ "zOcVU3": "Reload",
+ "zOp76p": "Delete this policy",
+ "zP10eT": "Link disabled",
+ "zP5oqR": "Click to copy",
+ "zP7M7b": "Couldn\u2019t upload to Canvas",
+ "zPKMtc": "Group name incomplete",
+ "zPliLF": "A {dropbox_paper} list. A user writes new list tasks, tags other users in tasks and ticks off tasks as complete.",
+ "zPmOZ8": "Computer backup",
+ "zR9JV2": "Unauthorised namespace.",
+ "zROW58": "Cancel",
+ "zRWIxa": "You restored a previous version of {item_name}",
+ "zSLFEx": "Turn off Dropbox system extension?",
+ "zSNLnE": "Get your team on the same page. Keep everything related to your meetings in one place \u2013 background docs, agenda, minutes, next steps and task assignments.",
+ "zSj4X8": "You can use these one-off backup codes to access your account.",
+ "zSkMEs": "Make them an enterprise admin?",
+ "zTp6Om": "Features to try",
+ "zTrKL7": "Team admins in your team will be able to sign in to the trusted team\u2019s admin console.",
+ "zU7LMK": "Create a new email address to replace your current address. Your current address will no longer be active.",
+ "zUa4Nn": "Get organised. Stay focused. And bring content, collaborators and tools together in one place.",
+ "zUmiuz": "{count, plural, one {Members of the file with this link can edit. Expires in {count} day. Downloads disabled.} other {Members of the file with this link can edit. Expires in {count} days. Downloads disabled.}}",
+ "zVEpp7": "Allow members to invite people to the team, and we\u2019ll let you know when someone is invited.",
+ "zVSIOK": "There\u2019s a Dropbox charge on my credit card \u2013 which account is this for?",
+ "zVbgg5": "Participants",
+ "zVvjrt": "Turn on classification to send us feedback.",
+ "zVxVBx": "{cost}/year",
+ "zWD3IR": "An error has occurred. Please try again.",
+ "zWFh54": "Release hold",
+ "zWQcBD": "Set to expired",
+ "zWazjf": "just now",
+ "zWuXj+": "Showcase enabled. To adjust Showcase settings, please go to the admin console.",
+ "zXL2b0": "Your team has been downgraded",
+ "zXUvqw": "Add some files first",
+ "zXgc7I": "Create better, together",
+ "zYRitz": "Remove the device",
+ "zYaIYY": "Restored {filename}.",
+ "zYfhHY": "You moved this file",
+ "zYxEis": "Your Internet connection isn\u2019t fast enough to download multiple files at the same time. Try downloading each file individually, or move to a location with better signal.",
+ "zZ0kZi": "{count, plural, one {From {display_name} \u2022 {count} day to accept} other {From {display_name} \u2022 {count} days to accept}}",
+ "zZ6POL": "Tour",
+ "zZfSQd": "Remove me",
+ "zZwlxO": "{id_string} will lose access to the {team_name} team folder and be removed from all {team_name} groups. {first_name}\u2019s account will be converted to a personal Dropbox.",
+ "za0S+A": "I don\u2019t trust it with my sensitive documents",
+ "zaIoT9": "Activity. Whether content was viewed or edited",
+ "zbi0wT": "Top left",
+ "zc2P2d": "You\u2019ll no longer be able to keep tabs on them from your enterprise console or manage settings for this team, such as authentication and sharing.",
+ "zcHXrL": "Learn more",
+ "zcMNo2": "You\u2019ll lose the day left in your free trial",
+ "zcV6rs": "Create policy?",
+ "zcaS0q": "{count, plural, one {From {date}, you\u2019ll have {new_count} licence.} other {From {date}, you\u2019ll have {new_count} licences.}}",
+ "zctlVh": "Streamline remote work",
+ "zdIfoz": "{number, plural, one {Viewed {number,number} day ago} other {Viewed {number,number} days ago}}",
+ "ze+R5C": "{display_name}\u2019s account was deleted. You can also invite 1 more member at no extra charge.",
+ "ze0PDK": "Cancel by {date} at {time}",
+ "zePmlH": "Want a reminder?",
+ "zeRV46": "Your plan includes {quota} of space and {api_limit} API calls. Please contact support if you have any questions.",
+ "zeh/iP": "Legal hold released.",
+ "zepvzh": "House ad",
+ "zeypAU": "Watermark",
+ "zfTjba": "You gave view-only access to {entity}",
+ "zfYKXY": "Email address (required),First name,Surname,Groups (example: Accounting;Marketing)",
+ "zfmHhV": "If you can\u2019t access the link, it may have been deleted. Please reattach the file to your email.",
+ "zfnBdD": "Team space",
+ "zg3D7i": "Choose existing file",
+ "ziPTsB": "1 week",
+ "zigZlp": "{header_text}: {toggle_description}",
+ "ziu8+l": "Join the team once they accept",
+ "zj8gs6": "Is there anything in your {teamName} account that isn't work related?",
+ "zjSvcr": "Creating your transfer",
+ "zjtKtA": "You\u2018ll no longer merge with {secondary_team_name}, and both teams will remain separate.",
+ "zjv9kV": "Task created successfully.",
+ "zk0xED": "Team collaboration",
+ "zkHZ1K": "Invite someone to a shared folder and you\u2019ve got a great place to collaborate on files and ideas.",
+ "zkS2vQ": "Teams and admins",
+ "zkpujl": "Create a new team Dropbox",
+ "zkuT3R": "Download BAA",
+ "zlbejP": "Disconnect {service_name} integration?",
+ "zlco0y": "I have added the meta tag",
+ "zlnfYS": "History type",
+ "zm/sIQ": "{trademark_business_standard} provides teams with {standard_space} of storage, and simple sharing and collaboration tools. For teams needing more storage and security, {trademark_business_advanced} provides as much space as your team needs in addition to sophisticated admin, audit, integration and security features. Learn more about our plans here.",
+ "zm6ZVJ": "Configure extension",
+ "zm6z5Q": "Sign in with {provider}",
+ "zmINZ0": "Terms",
+ "zmhQtQ": "To keep deleted files for up to {version_history_policy} days, upgrade to Dropbox {trademark}.",
+ "zmoMxb": "Your free trial has already expired.",
+ "zn3S5a": "Auto",
+ "znHdQh": "Set up your free personal Dropbox",
+ "znNwig": "You\u2019ll need to buy more licences to invite members",
+ "znk45R": "Creating",
+ "zoMtmz": "All users",
+ "zoOTbT": "Click thumbnails for detailed previews of Dropbox files.",
+ "zoPXSC": "Everything you add to Dropbox will be:",
+ "zp2GrF": "Link is no longer available",
+ "zpOY3S": "You\u2019ve changed your plan.",
+ "zpPlDR": "Illustration of a street sign with the Dropbox logo, a document and two balloons",
+ "zq/eht": "Sending",
+ "zq3N/7": "Campaign type:",
+ "zqXonC": "Your preview is loading",
+ "zqiuDZ": "Team folders can\u2019t be renamed.",
+ "zqrZiY": "Don\u2019t cancel",
+ "zqvHIW": "These members won\u2019t appear in the team member list or in suggestions. Their information will be visible to members who have already been in contact with them directly. This setting doesn\u2019t apply to Dropbox Paper and may take up to one day to take effect.",
+ "zr9irP": "How secondary emails work",
+ "zrUbiB": "Personal",
+ "zrnVfs": "Reply to (required)",
+ "zrqAe8": "Close",
+ "zrwo7d": "Space used",
+ "zsb+bU": "Domain",
+ "ztHrl/": "When you leave the team, your account will be converted to an individual Dropbox account.",
+ "ztVNkF": "Cancelling your subscription will change your account to {trademark_basic}. Your storage will drop from {current_space} ({current_space_gb}) to {free_space}.",
+ "ztdrtc": "The watermark could not be saved because your account is over quota.",
+ "ztezCK": "Remember me",
+ "zu9Ljb": "Requested to join",
+ "zuKPlJ": "",
+ "zuKf/F": "We weren\u2019t able to retrieve your organisation\u2019s directory from Google",
+ "zuLHeg": "DowngradeLink",
+ "zuOMnc": "We blocked this link to be safe",
+ "zuQfmc": "Finish tour",
+ "zuqnRM": "Limited",
+ "zuyKOG": "You're being helped by Dropbox Support",
+ "zv+Ykn": "Submit",
+ "zv1B2B": "Open",
+ "zv6MCL": "Apple App Store",
+ "zvEz01": "This usually takes about 15 minutes, but it could take up to a few hours if\n there are a lot of files in {infected_user_familiar_name}\u2019s Dropbox\n account. You can go ahead and close this screen. Rest assured, recovery will\n continue at our end. In the meantime, you can work with\n {infected_user_familiar_name} to remove the ransomware from the infected\n computer. We\u2019ll email you when their files are ready to use again.",
+ "zvFhRS": "We think there\u2019s personal info (PII) in {fileName}. Are we right?",
+ "zvd3OE": "No photos or videos",
+ "zw/gLL": "It looks as though Slack hasn\u2019t been linked to your account yet",
+ "zwEuJW": "Send another email",
+ "zwFIH2": "Privacy",
+ "zwMg2i": "deleted archive",
+ "zwa4qT": "We removed some items that can't be shared",
+ "zx07KP": "Resolve billing failure",
+ "zx0slw": "Forum",
+ "zxDOdi": "deleted font",
+ "zxECIJ": "Link settings",
+ "zxEt4N": "Do you have a question?",
+ "zxr4q0": "Identity provider sign-out URL (optional)",
+ "zxyFrb": "Position",
+ "zy5fJv": "Plans",
+ "zyCIaS": "Continue",
+ "zyE4RK": "Easily access, edit and share Office docs online in Dropbox.",
+ "zynStQ": "One or more names or email addresses you entered are invalid. Please correct the highlighted inputs below.",
+ "zyt6xR": "What is your organisation called?",
+ "zyvCf5": "Your current trial",
+ "zz/G7J": "Access your stuff from anywhere",
+ "zzKjTv": "Continue with Dropbox Basic",
+ "zzi1qr": "Social media plan \u2192",
+ "zzokSY": "Smart Sync Auto-Evict",
+ "zzusgT": "This alert is triggered when a team member tries to sign in unsuccessfully too many times."
+}
diff --git a/packages/editor/fixtures/ru.json b/packages/editor/fixtures/ru.json
new file mode 100644
index 0000000000..81e068f250
--- /dev/null
+++ b/packages/editor/fixtures/ru.json
@@ -0,0 +1,15112 @@
+{
+ "++KM7f": "{count, plural, one {{count} \u0444\u043e\u0442\u043e} few {{count} \u0444\u043e\u0442\u043e} many {{count} \u0444\u043e\u0442\u043e} other {{count} \u0444\u043e\u0442\u043e}}",
+ "++NdWX": "\u041e\u0431\u044a\u0435\u0434\u0438\u043d\u044f\u0439\u0442\u0435 \u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u0432 Slack \u0438 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u043c\u043e\u0435 Dropbox, \u0447\u0442\u043e\u0431\u044b \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0440\u0430\u0431\u043e\u0447\u0438\u0435 \u0433\u0440\u0443\u043f\u043f\u044b.",
+ "++TMjx": "\u0414\u0430\u043d\u043d\u044b\u0435 \u0432 \u044d\u0442\u043e\u043c \u043e\u0442\u0447\u0435\u0442\u0435:",
+ "++p0Vh": "\u041e\u0442\u043c\u0435\u043d\u0430 \u043e\u0437\u043d\u0430\u043a\u043e\u043c\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0439 \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u0438",
+ "++wAXq": "\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u0430\u043f\u043a\u0443",
+ "+/+p5G": "\u0423 \u0432\u0430\u0441 \u043d\u0435\u0442 \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u044f \u0447\u0442\u043e-\u043b\u0438\u0431\u043e \u0441\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c \u0432 \u044d\u0442\u0443 \u043f\u0430\u043f\u043a\u0443.",
+ "+/TA/S": "\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c \u0441\u043e \u0441\u0441\u044b\u043b\u043a\u043e\u0439 \u0434\u043b\u044f \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438",
+ "+/aseH": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c {name} \u0441\u043a\u0430\u0447\u0430\u043b \u044d\u0442\u043e\u0442 \u0444\u0430\u0439\u043b",
+ "+/lES4": "\u0426\u0432\u0435\u0442\u043e\u0432\u043e\u0435 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e Wide Gamut RGB",
+ "+/y+vj": "\u041d\u0430\u0447\u0430\u0442\u044c \u043d\u043e\u0432\u0443\u044e \u043f\u0435\u0440\u0435\u0441\u044b\u043b\u043a\u0443",
+ "+03AJW": "\u041e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u044f \u0440\u0430\u0431\u043e\u0447\u0435\u0439 \u0433\u0440\u0443\u043f\u043f\u044b",
+ "+0FBSK": "\u044d\u0442\u043e\u0442 \u0447\u043b\u0435\u043d \u0441\u0435\u043c\u044c\u0438",
+ "+0ofKf": "\u0411\u043b\u0430\u0433\u043e\u0434\u0430\u0440\u044f HelloSign \u043c\u043e\u0436\u043d\u043e \u043f\u043e\u0434\u043f\u0438\u0441\u044b\u0432\u0430\u0442\u044c \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u044b \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u043e\u0439 \u043f\u043e\u0434\u043f\u0438\u0441\u044c\u044e \u0438 \u0437\u0430\u043f\u0440\u0430\u0448\u0438\u0432\u0430\u0442\u044c \u043f\u043e\u0434\u043f\u0438\u0441\u0438 \u0434\u043b\u044f \u043d\u0438\u0445 \u043f\u0440\u044f\u043c\u043e \u0438\u0437 Dropbox.",
+ "+1MsbO": "\u041f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f, \u043a\u043e\u0442\u043e\u0440\u044b\u043c\u0438 \u043c\u043e\u0436\u0435\u0442 \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u0442\u044c \u0432\u0430\u0448\u0430 \u0440\u0430\u0431\u043e\u0447\u0430\u044f \u0433\u0440\u0443\u043f\u043f\u0430",
+ "+22NkS": "\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0437\u0430\u0434\u0430\u043d\u0438\u0435",
+ "+2ICy8": "\u0414\u0430\u0442\u0430 \u043f\u0440\u0438\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u044f:",
+ "+2jNKl": "\u0421\u043e\u0445\u0440\u0430\u043d\u044f\u0439\u0442\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u043f\u043e \u043f\u0440\u043e\u0435\u043a\u0442\u0443, \u0434\u0435\u043b\u0438\u0442\u0435\u0441\u044c \u043a\u043e\u043d\u0435\u0447\u043d\u044b\u043c\u0438 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0430\u043c\u0438 \u0438 \u0441\u043e\u0431\u0438\u0440\u0430\u0439\u0442\u0435 \u0442\u043e\u0447\u043d\u043e \u043e\u0440\u0438\u0435\u043d\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u043e\u0442\u0437\u044b\u0432\u044b\u00a0\u2014\u00a0\u0438 \u0432\u0441\u0435 \u044d\u0442\u043e \u0432 \u043e\u0434\u043d\u043e\u043c \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0435.",
+ "+3VSGf": "\u0412\u044b\u0431\u0440\u0430\u043d\u043d\u044b\u0439 \u0432\u0430\u043c\u0438 \u0444\u0430\u0439\u043b \u043d\u0435 \u043f\u0440\u043e\u0448\u0435\u043b \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0443 \u0432 DocuSign. \u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443 \u0441 \u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u044b\u043c \u0444\u0430\u0439\u043b\u043e\u043c.",
+ "+4N3an": "\u0425\u043e\u0441\u0442 \u043e\u0442\u043a\u043b\u043e\u043d\u0435\u043d.",
+ "+4exZC": "\u0417\u0430\u043f\u0440\u043e\u0441 \u043d\u0430 \u043f\u0440\u0438\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d {date}",
+ "+4oAxT": "\u0420\u0430\u0431\u043e\u0447\u0438\u0435 \u043a\u043e\u043b\u043b\u0435\u043a\u0442\u0438\u0432\u044b \u043f\u043e \u0432\u0441\u0435\u043c\u0443 \u043c\u0438\u0440\u0443 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044e\u0442 Dropbox",
+ "+58ktI": "\u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, Acme, \u041c\u0430\u0440\u043a\u0435\u0442\u0438\u043d\u0433 Acme",
+ "+5GSOF": "\u0412\u043e\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435\u0441\u044c \u043f\u0440\u0435\u043c\u0438\u0443\u043c-\u0444\u0443\u043d\u043a\u0446\u0438\u044f\u043c\u0438 Dropbox Transfer, \u0432 \u0442\u043e\u043c \u0447\u0438\u0441\u043b\u0435 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c\u044e \u043f\u0435\u0440\u0435\u0441\u044b\u043b\u0430\u0442\u044c \u0434\u043e {gigabyteSpace} \u0437\u0430 \u043e\u0434\u0438\u043d \u0440\u0430\u0437.",
+ "+5HiT6": "\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c",
+ "+5Ta6t": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c {actor_name} \u043f\u043e\u0434\u0435\u043b\u0438\u043b\u0441\u044f \u044d\u0442\u0438\u043c \u0444\u0430\u0439\u043b\u043e\u043c \u0441 \u0432\u0430\u043c\u0438",
+ "+5WKqD": "\u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u00ab\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e\u00bb \u0438 \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 Adobe Sign, \u0447\u0442\u043e\u0431\u044b \u043e\u0442\u043a\u0440\u044b\u0432\u0430\u0442\u044c \u0441\u0432\u043e\u0438 \u0444\u0430\u0439\u043b\u044b PDF \u043f\u0440\u044f\u043c\u043e \u0438\u0437 Dropbox.",
+ "+5bYbH": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u043f\u0440\u0430\u0432 \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u0434\u043b\u044f {item}",
+ "+5oplS": "\u041f\u043e\u043b\u0443\u0447\u0438\u0442\u0435 \u043d\u0435 \u043c\u0435\u043d\u0435\u0435 {space} \u043c\u0435\u0441\u0442\u0430 \u0438 \u043c\u043e\u0449\u043d\u044b\u0435 \u0444\u0443\u043d\u043a\u0446\u0438\u0438 \u0441 \u0430\u043a\u043a\u0430\u0443\u043d\u0442\u043e\u043c Dropbox Business",
+ "+5rKgY": "\u0421\u043f\u0435\u0446\u0438\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b \u0434\u043b\u044f \u0441\u043e\u0432\u043c\u0435\u0441\u0442\u043d\u043e\u0439 \u0440\u0430\u0431\u043e\u0442\u044b ",
+ "+5vrts": "\u0412\u043d\u0435\u0441\u0435\u043d\u043d\u044b\u0435 \u0432\u0430\u043c\u0438 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u043d\u0435 \u0431\u0443\u0434\u0443\u0442 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u044b.",
+ "+6U8za": "\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u0443\u044e \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u0438 \u0441\u043e\u0432\u0435\u0442\u044b \u0432\u044b \u043d\u0430\u0439\u0434\u0435\u0442\u0435 \u0432 \u043d\u0430\u0448\u0435\u043c \u0440\u0443\u043a\u043e\u0432\u043e\u0434\u0441\u0442\u0432\u0435 \u00ab\u041d\u0430\u0447\u043d\u0438\u0442\u0435 \u0440\u0430\u0431\u043e\u0442\u0443 \u0441 Dropbox\u00bb.",
+ "+6YkIT": "\u041d\u0435 \u0437\u0430\u0431\u0443\u0434\u044c\u0442\u0435 \u0432\u0441\u0435 \u0441\u043a\u0430\u0447\u0430\u0442\u044c.",
+ "+6lkxP": "\u0412\u044b \u0434\u043e\u0431\u0430\u0432\u0438\u043b\u0438 {item_name}",
+ "+79s4f": "\u0414\u043e\u0432\u0435\u0440\u044f\u0442\u044c \u044d\u0442\u043e\u043c\u0443 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0443",
+ "+7Lknb": "\u0414\u043e\u0441\u0442\u0443\u043f \u043a \u0437\u0430\u043f\u0440\u043e\u0441\u0443 \u0444\u0430\u0439\u043b\u0430 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d",
+ "+7LzrM": "\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u0432\u0430\u0448\u0438\u0445 \u043f\u0430\u043f\u043e\u043a",
+ "+7Mt/8": "\u0421 \u043f\u043e\u043c\u043e\u0449\u044c\u044e Dropbox \u044f \u043c\u043e\u0433\u0443 \u043b\u0435\u0433\u043a\u043e \u043f\u043e\u0434\u0435\u043b\u0438\u0442\u044c\u0441\u044f \u0432\u0430\u0436\u043d\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0435\u0439 \u0441 \u0441\u0435\u043c\u044c\u0435\u0439, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u0436\u0438\u0432\u0435\u0442 \u0434\u0430\u043b\u0435\u043a\u043e.",
+ "+7WmZr": "\u0417\u0430\u043f\u0440\u043e\u0441 \u0443\u0436\u0435 \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d",
+ "+7XcHy": "30 \u0434\u043d.",
+ "+7dBkS": "\u041f\u043e \u0444\u0443\u043d\u043a\u0446\u0438\u044f\u043c",
+ "+7fo34": "\u0417\u0430\u0439\u0434\u0438\u0442\u0435 \u043f\u043e\u0434 \u0441\u0432\u043e\u0438\u043c \u043b\u043e\u0433\u0438\u043d\u043e\u043c \u043d\u0430 \u0441\u0430\u0439\u0442 \u0445\u043e\u0441\u0442\u0430, \u0433\u0434\u0435 \u0440\u0430\u0437\u043c\u0435\u0449\u0430\u0435\u0442\u0441\u044f \u0432\u0430\u0448 \u0434\u043e\u043c\u0435\u043d.",
+ "+8+aF7": "\u041e\u0442\u0441\u043b\u0435\u0436\u0438\u0432\u0430\u0439\u0442\u0435, \u043a\u0442\u043e \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u043b \u0438 \u0438\u0437\u043c\u0435\u043d\u044f\u043b \u0444\u0430\u0439\u043b, \u0430 \u0442\u0430\u043a\u0436\u0435 \u0432 \u043a\u0430\u043a\u0438\u0445 \u0441\u043e\u0432\u0435\u0449\u0430\u043d\u0438\u044f\u0445 \u043a \u044d\u0442\u043e\u043c\u0443 \u0444\u0430\u0439\u043b\u0443 \u0431\u044b\u043b \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d \u0434\u043e\u0441\u0442\u0443\u043f.",
+ "+8/A3B": "\u041e\u0447\u0438\u0441\u0442\u0438\u0442\u044c \u0441\u043f\u0438\u0441\u043e\u043a \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u043d\u044b\u0445 \u0432\u0440\u0443\u0447\u043d\u0443\u044e \u043a\u043e\u043d\u0442\u0430\u043a\u0442\u043e\u0432",
+ "+8FgEv": "{count, plural, one {O\u0441\u0442\u0430\u043b\u043e\u0441\u044c \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0432\u0441\u0435\u0433\u043e {count} \u0437\u0430\u0434\u0430\u043d\u0438\u0435 , \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u0431\u043e\u043d\u0443\u0441\u00a0\u2014\u00a0{bonus_space}} few {O\u0441\u0442\u0430\u043b\u043e\u0441\u044c \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0432\u0441\u0435\u0433\u043e {count} \u0437\u0430\u0434\u0430\u043d\u0438\u044f, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u0431\u043e\u043d\u0443\u0441\u00a0\u2014\u00a0{bonus_space}} many {O\u0441\u0442\u0430\u043b\u043e\u0441\u044c \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0432\u0441\u0435\u0433\u043e {count} \u0437\u0430\u0434\u0430\u043d\u0438\u0439, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u0431\u043e\u043d\u0443\u0441\u00a0\u2014\u00a0{bonus_space}} other {O\u0441\u0442\u0430\u043b\u043e\u0441\u044c \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0432\u0441\u0435\u0433\u043e {count} \u0437\u0430\u0434\u0430\u043d\u0438\u044f, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u0431\u043e\u043d\u0443\u0441\u00a0\u2014\u00a0{bonus_space}}}",
+ "+8WJrK": "\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c {email}",
+ "+8WUch": "\u0412\u0430\u0448\u0430 \u043f\u043e\u043a\u0443\u043f\u043a\u0430 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0430, \u0432\u0430\u0448\u0430 \u043a\u0430\u0440\u0442\u0430 \u043f\u043e\u0434\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0430 \u043a \u0432\u0430\u0448\u0435\u043c\u0443 \u0430\u043a\u043a\u0430\u0443\u043d\u0442\u0443 Dropbox",
+ "+8mZrp": "\u0431\u043e\u043b\u0435\u0435 3 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439",
+ "+9OXcm": "\u041f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u043e\u0442 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f {suggestingUserName}",
+ "+9XYcz": "\u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, 100.001.101-00",
+ "+9eUf/": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u0435\u043b \u0441\u0431\u043e\u0439, \u043d\u043e, \u0432\u0435\u0440\u043e\u044f\u0442\u043d\u043e, \u044d\u0442\u043e \u0431\u044b\u043b\u0430 \u0441\u043b\u0443\u0447\u0430\u0439\u043d\u043e\u0441\u0442\u044c",
+ "+A8RXM": "{count, plural, one {\u0412 \u0432\u0430\u0448\u0435\u0439 \u0440\u0430\u0431\u043e\u0447\u0435\u0439 \u0433\u0440\u0443\u043f\u043f\u0435 {trademark_business} \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u043d\u0435 \u043c\u0435\u043d\u0435\u0435 {min_num_users} \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0438, \u0447\u0442\u043e\u0431\u044b \u0445\u0432\u0430\u0442\u0438\u043b\u043e \u0434\u043b\u044f \u0432\u0441\u0435\u0445 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439. \u041f\u0435\u0440\u0435\u0439\u0434\u0438\u0442\u0435 \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443 \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u043e\u0432, \u0447\u0442\u043e\u0431\u044b \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439.} few {\u0412 \u0432\u0430\u0448\u0435\u0439 \u0440\u0430\u0431\u043e\u0447\u0435\u0439 \u0433\u0440\u0443\u043f\u043f\u0435 {trademark_business} \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u043d\u0435 \u043c\u0435\u043d\u0435\u0435 {min_num_users} \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0439, \u0447\u0442\u043e\u0431\u044b \u0445\u0432\u0430\u0442\u0438\u043b\u043e \u0434\u043b\u044f \u0432\u0441\u0435\u0445 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439. \u041f\u0435\u0440\u0435\u0439\u0434\u0438\u0442\u0435 \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443 \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u043e\u0432, \u0447\u0442\u043e\u0431\u044b \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439.} many {\u0412 \u0432\u0430\u0448\u0435\u0439 \u0440\u0430\u0431\u043e\u0447\u0435\u0439 \u0433\u0440\u0443\u043f\u043f\u0435 {trademark_business} \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u043d\u0435 \u043c\u0435\u043d\u0435\u0435 {min_num_users} \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0439, \u0447\u0442\u043e\u0431\u044b \u0445\u0432\u0430\u0442\u0438\u043b\u043e \u0434\u043b\u044f \u0432\u0441\u0435\u0445 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439. \u041f\u0435\u0440\u0435\u0439\u0434\u0438\u0442\u0435 \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443 \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u043e\u0432, \u0447\u0442\u043e\u0431\u044b \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439.} other {\u0412 \u0432\u0430\u0448\u0435\u0439 \u0440\u0430\u0431\u043e\u0447\u0435\u0439 \u0433\u0440\u0443\u043f\u043f\u0435 {trademark_business} \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u043d\u0435 \u043c\u0435\u043d\u0435\u0435 {min_num_users} \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0438, \u0447\u0442\u043e\u0431\u044b \u0445\u0432\u0430\u0442\u0438\u043b\u043e \u0434\u043b\u044f \u0432\u0441\u0435\u0445 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439. \u041f\u0435\u0440\u0435\u0439\u0434\u0438\u0442\u0435 \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443 \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u043e\u0432, \u0447\u0442\u043e\u0431\u044b \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439.}}",
+ "+AF1Fn": "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043f\u0430\u0440\u043e\u043b\u044c",
+ "+AWAIj": "\u0421\u0432\u044f\u0436\u0438\u0442\u0435\u0441\u044c \u0441 \u043d\u0430\u043c\u0438",
+ "+AWHD4": "\u041f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u0442\u044c \u043c\u043e\u0433\u0443\u0442 \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0438 \u043f\u0430\u043f\u043a\u0438, \u0443 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0435\u0441\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0430",
+ "+AX7ED": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c {name} \u0441\u043c\u043e\u0436\u0435\u0442 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0442\u044c \u0438 \u043e\u0442\u043c\u0435\u043d\u044f\u0442\u044c \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u044f \u043d\u0430 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435, \u0430 \u0442\u0430\u043a\u0436\u0435 \u043c\u0435\u043d\u044f\u0442\u044c \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u043e \u043f\u043e\u0434\u0433\u0440\u0443\u043f\u043f\u0435.\u0422\u0430\u043a\u0436\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c {name} \u0441\u043c\u043e\u0436\u0435\u0442 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u043f\u043e\u0434\u0433\u0440\u0443\u043f\u043f\u0443.",
+ "+Ayjby": "\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u043f\u0438\u0441\u044c\u043c\u0430 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c, \u043d\u0435 \u0432\u0445\u043e\u0434\u044f\u0449\u0438\u043c \u0432 \u0440\u0430\u0431\u043e\u0447\u0443\u044e \u0433\u0440\u0443\u043f\u043f\u0443",
+ "+BIPVN": "\u041c\u043d\u043e\u0433\u043e \u043c\u0435\u0441\u0442\u0430 \u0434\u043b\u044f \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u0444\u0430\u0439\u043b\u043e\u0432 \u0432\u0441\u0435\u0445 \u0447\u043b\u0435\u043d\u043e\u0432 \u0432\u0430\u0448\u0435\u0439 \u0441\u0435\u043c\u044c\u0438 \u043d\u0430 \u0432\u0441\u0435\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u0445.",
+ "+BQfGg": "\u0421\u043a\u043e\u043f\u0438\u0440\u0443\u0439\u0442\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u043d\u0438\u0436\u0435 \u0438 \u0432\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u0435\u0435 \u0432 \u0440\u0430\u0437\u0434\u0435\u043b \u0434\u043b\u044f \u0437\u0430\u043f\u0438\u0441\u0435\u0439 {record_type}.",
+ "+BgGo2": "\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0441\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443",
+ "+BiebH": "\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u043f\u0440\u0438\u0447\u0438\u043d\u0443, \u043f\u043e \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u0432\u044b \u0443\u0434\u0430\u043b\u044f\u0435\u0442\u0435\u0441\u044c:",
+ "+Bkowt": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0439 \u0448\u0430\u0433: \u043f\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u0435 Mac",
+ "+C1mk4": "\u0423 \u0432\u0430\u0441 \u043d\u0435\u0442 \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u044f \u043d\u0430 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440 \u044d\u0442\u043e\u0433\u043e \u043c\u0435\u0441\u0442\u043e\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f.",
+ "+D26UW": "\u0418\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u0442\u043e\u043b\u0431\u0435\u0446",
+ "+DHvLW": "\u0421 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430",
+ "+DTxnQ": "\u0411\u043b\u0430\u0433\u043e\u0434\u0430\u0440\u044f \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f\u043c Paper \u0434\u043b\u044f iOS \u0438 Android \u043c\u043e\u0436\u043d\u043e \u0437\u0430\u043f\u0438\u0441\u0430\u0442\u044c \u0438\u0434\u0435\u044e, \u0440\u0430\u0437\u0434\u043e\u0431\u044b\u0442\u044c \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u044e \u0438\u043b\u0438 \u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043e\u0442\u0437\u044b\u0432 \u043a \u0440\u0430\u0431\u043e\u0447\u0435\u043c\u0443 \u0444\u0430\u0439\u043b\u0443, \u043a\u043e\u0433\u0434\u0430 \u0432\u0430\u043c \u0437\u0430\u0445\u043e\u0447\u0435\u0442\u0441\u044f.",
+ "+Dtv46": "\u0417\u0430\u043a\u0440\u044b\u0442\u044c",
+ "+Du3+R": "\u0421\u043e\u0437\u0434\u0430\u0442\u044c",
+ "+E9wLh": "\u0415\u0441\u043b\u0438 \u0432\u044b \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u0435, \u0442\u043e \u0430\u043a\u043a\u0430\u0443\u043d\u0442\u044b \u0432\u0441\u0435\u0445 \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u043e\u0432 \u0442\u0430\u0440\u0438\u0444\u043d\u043e\u0433\u043e \u043f\u043b\u0430\u043d\u0430 {family_plan} \u0431\u0443\u0434\u0443\u0442 \u0443\u0445\u0443\u0434\u0448\u0435\u043d\u044b \u0438 \u043f\u0440\u0435\u0432\u0440\u0430\u0442\u044f\u0442\u0441\u044f \u0432 {dropbox_basic} \u0441 {basic_space_quota} \u043c\u0435\u0441\u0442\u0430.",
+ "+ECsZb": "\u041e\u0442\u043c\u0435\u043d\u0435\u043d\u043e",
+ "+EIVcH": "\u0423\u0447\u0435\u0442 \u0444\u0430\u043a\u0442\u043e\u0432 \u0440\u0430\u0437\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u044f \u0434\u0430\u043d\u043d\u044b\u0445.",
+ "+EZZAD": "\u042d\u0442\u043e \u043f\u0440\u0438\u043c\u0435\u043d\u044f\u0435\u0442\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u043a Dropbox.",
+ "+ElFUY": "\u041a\u0440\u0443\u043f\u043d\u044b\u0439 \u0441\u043f\u0438\u0441\u043e\u043a",
+ "+En75Z": "\u0422\u0435\u043f\u0435\u0440\u044c \u0432\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0432\u0441\u0435 \u043f\u0440\u0435\u0438\u043c\u0443\u0449\u0435\u0441\u0442\u0432\u0430: \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0430\u0442\u044c\u0441\u044f \u043c\u0435\u0436\u0434\u0443 \u0430\u043a\u043a\u0430\u0443\u043d\u0442\u0430\u043c\u0438 \u0432 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0435 \u0434\u043b\u044f \u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440\u0430.",
+ "+EoyVe": "\u042d\u0442\u043e \u0446\u0435\u043d\u0442\u0440\u0430\u043b\u0438\u0437\u043e\u0432\u0430\u043d\u043d\u043e\u0435 \u043c\u0435\u0441\u0442\u043e \u0434\u043b\u044f \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0430\u043c\u0438, \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u043f\u0430\u043f\u043e\u043a \u0440\u0430\u0431\u043e\u0447\u0435\u0439 \u0433\u0440\u0443\u043f\u043f\u044b, \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u044f \u043d\u0430\u0434 \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u044c\u044e \u0438 \u0437\u0430 \u0432\u044b\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435\u043c \u0441\u0447\u0435\u0442\u043e\u0432.",
+ "+EsI+X": "\u0412\u0441\u0435, \u0443 \u043a\u043e\u0433\u043e \u0435\u0441\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0430, \u0441\u043c\u043e\u0433\u0443\u0442 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u0442\u044c \u044d\u0442\u043e\u0442 \u0444\u0430\u0439\u043b. \u0421\u043a\u0430\u0447\u0438\u0432\u0430\u043d\u0438\u0435 \u0437\u0430\u043f\u0440\u0435\u0449\u0435\u043d\u043e.",
+ "+F67aE": "\u0423 \u0432\u0430\u0441 \u0432 \u0440\u0430\u0441\u043f\u043e\u0440\u044f\u0436\u0435\u043d\u0438\u0438 \u0431\u0443\u0434\u0443\u0442 \u0438\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b \u0434\u043b\u044f \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u044f \u0438 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438 \u043a\u043e\u0440\u043f\u043e\u0440\u0430\u0442\u0438\u0432\u043d\u043e\u0433\u043e \u0443\u0440\u043e\u0432\u043d\u044f, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440 \u0436\u0443\u0440\u043d\u0430\u043b\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0439 \u0434\u043b\u044f \u043e\u0442\u0441\u043b\u0435\u0436\u0438\u0432\u0430\u043d\u0438\u044f \u043f\u0440\u043e\u0438\u0441\u0445\u043e\u0434\u044f\u0449\u0438\u0445 \u0441 \u0444\u0430\u0439\u043b\u0430\u043c\u0438 \u0441\u043e\u0431\u044b\u0442\u0438\u0439, \u0444\u0443\u043d\u043a\u0446\u0438\u044f \u0435\u0434\u0438\u043d\u043e\u0433\u043e \u0432\u0445\u043e\u0434\u0430 SSO \u0438 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u044c \u043d\u0430\u0434 \u043f\u043e\u0434\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u043d\u044b\u043c\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u043c\u0438",
+ "+FA5/Y": "\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c \u043d\u043e\u0432\u044b\u0439 \u043f\u0430\u0440\u043e\u043b\u044c",
+ "+FVlAv": "\u0412\u0432\u0435\u0441\u0442\u0438 \u0437\u0430\u043f\u0430\u0441\u043d\u043e\u0439 \u043a\u043e\u0434 \u0434\u043e\u0441\u0442\u0443\u043f\u0430",
+ "+Gi+rH": "\u0422\u043e\u0447\u0435\u0447\u043d\u044b\u0439",
+ "+GqSV/": "\u0411\u0438\u0442\u0440\u0435\u0439\u0442",
+ "+HMjSg": "\u041d\u0430\u043c \u0431\u043e\u043b\u044c\u0448\u0435 \u043d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u043d\u0430\u0439\u0442\u0438 \u044d\u0442\u043e\u0442 \u0444\u0430\u0439\u043b. \u041f\u0440\u043e\u0432\u0435\u0440\u044c\u0442\u0435 \u0436\u0443\u0440\u043d\u0430\u043b \u0441\u043e\u0431\u044b\u0442\u0438\u0439 \u0438\u043b\u0438 \u0436\u0443\u0440\u043d\u0430\u043b \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439 \u043f\u0430\u043f\u043a\u0438, \u0447\u0442\u043e\u0431\u044b \u0443\u0437\u043d\u0430\u0442\u044c, \u0447\u0442\u043e \u043f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u043e.",
+ "+HVGgM": "\u0412 \u0446\u0435\u043b\u044f\u0445 \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u0438 \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0441\u0432\u043e\u0439 \u043f\u0430\u0440\u043e\u043b\u044c \u0434\u043b\u044f {email}.",
+ "+HYfWe": "\u0421\u0433\u0435\u043d\u0435\u0440\u0438\u0440\u0443\u0439\u0442\u0435 \u043e\u0442\u0447\u0435\u0442, \u0447\u0442\u043e\u0431\u044b \u0443\u0437\u043d\u0430\u0442\u044c, \u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0443 \u0432\u0430\u0441 \u043e\u0431\u0449\u0438\u0445 \u0444\u0430\u0439\u043b\u043e\u0432 \u0438 \u043f\u0430\u043f\u043e\u043a, \u043a\u0442\u043e \u0438\u043c\u0438 \u043f\u043e\u0434\u0435\u043b\u0438\u043b\u0441\u044f \u0438 \u0434\u0440\u0443\u0433\u0443\u044e \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e.",
+ "+HsOFj": "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442 Google",
+ "+HvGaa": "\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u0432 Dropbox",
+ "+I73e9": "{count, plural, one {\u0423\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0438 \u044d\u0442\u043e\u0433\u043e \u0444\u0430\u0439\u043b\u0430, \u0443 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0435\u0441\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0430, \u043c\u043e\u0433\u0443\u0442 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u0442\u044c. \u0421\u0440\u043e\u043a \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0441\u0441\u044b\u043b\u043a\u0438 \u0437\u0430\u043a\u0430\u043d\u0447\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0447\u0435\u0440\u0435\u0437 {count}\u00a0\u0434\u0435\u043d\u044c.} few {\u0423\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0438 \u044d\u0442\u043e\u0433\u043e \u0444\u0430\u0439\u043b\u0430, \u0443 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0435\u0441\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0430, \u043c\u043e\u0433\u0443\u0442 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u0442\u044c. \u0421\u0440\u043e\u043a \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0441\u0441\u044b\u043b\u043a\u0438 \u0437\u0430\u043a\u0430\u043d\u0447\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0447\u0435\u0440\u0435\u0437 {count}\u00a0\u0434\u043d\u044f.} many {\u0423\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0438 \u044d\u0442\u043e\u0433\u043e \u0444\u0430\u0439\u043b\u0430, \u0443 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0435\u0441\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0430, \u043c\u043e\u0433\u0443\u0442 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u0442\u044c. \u0421\u0440\u043e\u043a \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0441\u0441\u044b\u043b\u043a\u0438 \u0437\u0430\u043a\u0430\u043d\u0447\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0447\u0435\u0440\u0435\u0437 {count}\u00a0\u0434\u043d\u0435\u0439.} other {\u0423\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0438 \u044d\u0442\u043e\u0433\u043e \u0444\u0430\u0439\u043b\u0430, \u0443 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0435\u0441\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0430, \u043c\u043e\u0433\u0443\u0442 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u0442\u044c. \u0421\u0440\u043e\u043a \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u0441\u0441\u044b\u043b\u043a\u0438 \u0437\u0430\u043a\u0430\u043d\u0447\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0447\u0435\u0440\u0435\u0437 {count}\u00a0\u0434\u043d\u044f.}}",
+ "+IBZTK": "{count, plural, one {\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c {name} \u043f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u043b {count} \u044d\u043b\u0435\u043c\u0435\u043d\u0442 \u0438\u0437 \u043f\u0430\u043f\u043a\u0438 {src_folder}} few {\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c {name} \u043f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u043b {count} \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430 \u0438\u0437 \u043f\u0430\u043f\u043a\u0438 {src_folder}} many {\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c {name} \u043f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u043b {count} \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432 \u0438\u0437 \u043f\u0430\u043f\u043a\u0438 {src_folder}} other {\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c {name} \u043f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u043b {count} \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430 \u0438\u0437 \u043f\u0430\u043f\u043a\u0438 {src_folder}}}",
+ "+ILmbh": "\u0418\u043c\u044f",
+ "+IWfb7": "\u0412\u043e\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435\u0441\u044c \u0446\u0435\u043d\u0442\u0440\u0430\u043b\u0438\u0437\u043e\u0432\u0430\u043d\u043d\u044b\u043c \u0432\u044b\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435\u043c \u0441\u0447\u0435\u0442\u043e\u0432 \u0438 \u0432\u044b\u0434\u0435\u043b\u0435\u043d\u043d\u043e\u0439 \u0442\u0435\u0445\u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u043e\u0439 \u043f\u043e \u0442\u0435\u043b\u0435\u0444\u043e\u043d\u0443",
+ "+IgAux": "{count, plural, one {\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c {item_count} \u044d\u043b\u0435\u043c\u0435\u043d\u0442, \u0432\u043a\u043b\u044e\u0447\u0430\u044f \u043e\u0434\u043d\u0443 \u0438\u043b\u0438 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u043e\u0431\u0449\u0438\u0445 \u043f\u0430\u043f\u043e\u043a ({count}), \u0438\u0437 \u0432\u0430\u0448\u0435\u0439 \u043f\u0430\u043f\u043a\u0438 \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0430 \u0440\u0430\u0431\u043e\u0447\u0435\u0439 \u0433\u0440\u0443\u043f\u043f\u044b?} few {\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c {item_count} \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430, \u0432\u043a\u043b\u044e\u0447\u0430\u044f \u043e\u0434\u043d\u0443 \u0438\u043b\u0438 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u043e\u0431\u0449\u0438\u0445 \u043f\u0430\u043f\u043e\u043a ({count}), \u0438\u0437 \u0432\u0430\u0448\u0435\u0439 \u043f\u0430\u043f\u043a\u0438 \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0430 \u0440\u0430\u0431\u043e\u0447\u0435\u0439 \u0433\u0440\u0443\u043f\u043f\u044b?} many {\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c {item_count} \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432, \u0432\u043a\u043b\u044e\u0447\u0430\u044f \u043e\u0434\u043d\u0443 \u0438\u043b\u0438 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u043e\u0431\u0449\u0438\u0445 \u043f\u0430\u043f\u043e\u043a ({count}), \u0438\u0437 \u0432\u0430\u0448\u0435\u0439 \u043f\u0430\u043f\u043a\u0438 \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0430 \u0440\u0430\u0431\u043e\u0447\u0435\u0439 \u0433\u0440\u0443\u043f\u043f\u044b?} other {\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c {item_count} \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430, \u0432\u043a\u043b\u044e\u0447\u0430\u044f \u043e\u0434\u043d\u0443 \u0438\u043b\u0438 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u043e\u0431\u0449\u0438\u0445 \u043f\u0430\u043f\u043e\u043a ({count}), \u0438\u0437 \u0432\u0430\u0448\u0435\u0439 \u043f\u0430\u043f\u043a\u0438 \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0430 \u0440\u0430\u0431\u043e\u0447\u0435\u0439 \u0433\u0440\u0443\u043f\u043f\u044b?}}",
+ "+IyBMQ": "\u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u043e\u0434\u043d\u043e\u0433\u043e \u0447\u0435\u043b\u043e\u0432\u0435\u043a\u0430",
+ "+JLAQ1": "\u041f\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0435\u043c\u044b\u0439 \u0442\u0430\u0440\u0438\u0444\u043d\u044b\u0439 \u043f\u043b\u0430\u043d",
+ "+JxbQ8": "\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0438\u0442\u0435 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u044f: \u043a\u0442\u043e \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d \u0432 \u043f\u0430\u043f\u043a\u0438 \u0432 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0430.",
+ "+Jy1/e": "\u0412\u043e\u0439\u0442\u0438 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u0437\u0430\u043f\u0430\u0441\u043d\u043e\u0433\u043e \u043a\u043e\u0434\u0430",
+ "+KGOHZ": "\u0420\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u043e \u043d\u0430 30\u00a0\u0434\u043d\u0435\u0439",
+ "+KJzGi": "\u041f\u043e\u043c\u043e\u0449\u044c \u0441 \u043c\u0435\u0441\u0442\u043e\u043c \u0434\u043b\u044f \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0434\u0430\u043d\u043d\u044b\u0445",
+ "+KkCsG": "\u0422\u0411",
+ "+KvZSM": "\u041e\u0442\u043c\u0435\u043d\u0430",
+ "+L1ENo": "\u041f\u043e\u0434\u0430\u0440\u0438\u0442\u0435 \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0430\u043c \u0432\u0430\u0448\u0435\u0439 \u0442\u0432\u043e\u0440\u0447\u0435\u0441\u043a\u043e\u0439 \u0433\u0440\u0443\u043f\u043f\u044b \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u0440\u0430\u0431\u043e\u0442\u0430\u0442\u044c \u0432\u043c\u0435\u0441\u0442\u0435 \u0432 \u0440\u0435\u0430\u043b\u044c\u043d\u043e\u043c \u0432\u0440\u0435\u043c\u0435\u043d\u0438, \u043a\u0430\u043a \u0435\u0441\u043b\u0438 \u0431\u044b \u043e\u043d\u0438 \u043d\u0430\u0445\u043e\u0434\u0438\u043b\u0438\u0441\u044c \u0432 \u043e\u0434\u043d\u043e\u0439 \u043a\u043e\u043c\u043d\u0430\u0442\u0435. \u041e\u043d\u0438 \u0441\u043c\u043e\u0433\u0443\u0442 \u0441\u043e\u043e\u0431\u0449\u0430 \u0441\u043e\u0437\u0434\u0430\u0432\u0430\u0442\u044c \u0432\u0441\u0435, \u0447\u0442\u043e \u043d\u0443\u0436\u043d\u043e: \u043e\u0442 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0445 \u043f\u043b\u0430\u043d\u043e\u0432 \u0434\u043e \u0442\u0432\u043e\u0440\u0447\u0435\u0441\u043a\u0438\u0445 \u043a\u043e\u043d\u0446\u0435\u043f\u0446\u0438\u0439.",
+ "+LI5nJ": "\u041b\u0443\u0447\u0448\u0438\u0439 \u0432\u0430\u0440\u0438\u0430\u043d\u0442, \u0435\u0441\u043b\u0438 \u0432\u0430\u0448\u0435\u0439 \u0440\u0430\u0431\u043e\u0447\u0435\u0439 \u0433\u0440\u0443\u043f\u043f\u0435 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u0430\u044f \u0431\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u044c. \u041f\u043e\u043d\u0430\u0434\u043e\u0431\u044f\u0442\u0441\u044f \u043e\u0447\u0435\u043d\u044c \u043d\u0430\u0434\u0435\u0436\u043d\u044b\u0435 \u043f\u0430\u0440\u043e\u043b\u0438, \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0449\u0438\u0435 \u043a\u0430\u043a \u043c\u0438\u043d\u0438\u043c\u0443\u043c 8 \u0441\u0438\u043c\u0432\u043e\u043b\u043e\u0432 \u0438 \u0441\u043b\u043e\u0436\u043d\u044b\u0435 \u0434\u043b\u044f \u0437\u0430\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u044f.",
+ "+Lqk2a": "\u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0431\u0435\u0441\u043f\u043b\u0430\u0442\u043d\u0443\u044e \u043e\u0437\u043d\u0430\u043a\u043e\u043c\u0438\u0442\u0435\u043b\u044c\u043d\u0443\u044e \u0432\u0435\u0440\u0441\u0438\u044e {hellosignPlanName}{br}, \u0447\u0442\u043e\u0431\u044b \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u044f\u0442\u044c \u0438\u043b\u0438 \u0437\u0430\u043f\u0440\u0430\u0448\u0438\u0432\u0430\u0442\u044c \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u043d\u044b\u0435 \u043f\u043e\u0434\u043f\u0438\u0441\u0438.",
+ "+M0a0U": "\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043e\u0431\u0449\u0438\u0435 \u043f\u0430\u043f\u043a\u0438 \u0437\u0434\u0435\u0441\u044c. \u041a\u0430\u043a \u0432\u043e\u0439\u0442\u0438 \u0432 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u0432\u043b\u0430\u0434\u0435\u043b\u044c\u0446\u0430",
+ "+MjNr/": "\u0428\u0430\u0433 {current} \u0438\u0437 {total}",
+ "+Msa7x": "\u0421\u043d\u0430\u0447\u0430\u043b\u0430 \u043e \u0433\u043b\u0430\u0432\u043d\u043e\u043c",
+ "+MvFC2": "\u041f\u0443\u0441\u0442\u044c \u0443 \u0432\u0430\u0441 \u0432\u0441\u0435\u0433\u0434\u0430 \u0431\u0443\u0434\u0435\u0442 \u0434\u043e\u0441\u0442\u0443\u043f \u043a\u043e \u0432\u0441\u0435\u043c\u0443",
+ "+NeLdn": "\u041e\u0441\u0432\u043e\u0431\u043e\u0434\u0438\u0442\u0435 \u043c\u0435\u0441\u0442\u043e \u043d\u0430 \u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440\u0435 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u0423\u043c\u043d\u043e\u0439 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438",
+ "+OG7LA": "\u0417\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u0443\u0439\u0442\u0435\u0441\u044c \u0438\u043b\u0438 \u0432\u043e\u0439\u0434\u0438\u0442\u0435 \u0432 \u0441\u0432\u043e\u0439 \u0430\u043a\u043a\u0430\u0443\u043d\u0442",
+ "+PrmmG": "\u0421\u0432\u0435\u0434\u0435\u043d\u0438\u044f",
+ "+Q54an": "\u0427\u0442\u043e\u0431\u044b \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0432\u0441\u0435 \u0434\u0430\u043d\u043d\u044b\u0435, \u043c\u043e\u0436\u0435\u0442 \u043f\u043e\u0442\u0440\u0435\u0431\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u0432\u0440\u0435\u043c\u044f, \u043d\u043e \u0443 \u0432\u0430\u0441 \u0431\u0443\u0434\u0435\u0442 \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u0444\u0430\u0439\u043b\u0430\u043c \u0438\u0437 \u043f\u0430\u043f\u043a\u0438 {linked_folder} \u0432 Content Builder.",
+ "+QOGgh": "\u0420\u0430\u0441\u0448\u0438\u0440\u044c\u0442\u0435 \u0441\u0432\u043e\u044e \u0440\u0430\u0431\u043e\u0447\u0443\u044e \u0433\u0440\u0443\u043f\u043f\u0443, \u043f\u0440\u0438\u0433\u043b\u0430\u0441\u0438\u0432 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 \u0432 \u0441\u0432\u043e\u0439 \u043d\u043e\u0432\u044b\u0439 \u0430\u043a\u043a\u0430\u0443\u043d\u0442 Dropbox. \u0412\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u043d\u0430\u0447\u0430\u0442\u044c \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u043e\u0431\u0449\u0435\u0435 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e \u0440\u0430\u0431\u043e\u0447\u0435\u0439 \u0433\u0440\u0443\u043f\u043f\u044b, \u0447\u0442\u043e\u0431\u044b \u0441 \u0443\u0434\u043e\u0431\u0441\u0442\u0432\u043e\u043c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0444\u0430\u0439\u043b\u0430\u043c\u0438 \u0438 \u0434\u043e\u0431\u0430\u0432\u043b\u044f\u0442\u044c \u043a \u043d\u0438\u043c \u043a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u0438.",
+ "+QiQ+N": "
\u041e\u0442\u043a\u0440\u043e\u0439\u0442\u0435 Google Play \u041c\u0430\u0440\u043a\u0435\u0442 \u043d\u0430 \u0441\u0432\u043e\u0435\u043c \u0442\u0435\u043b\u0435\u0444\u043e\u043d\u0435 \u0438\u043b\u0438 \u043f\u043b\u0430\u043d\u0448\u0435\u0442\u0435 Android.
\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u0443 Dropbox, \u043e\u0444\u043e\u0440\u043c\u043b\u0435\u043d\u043d\u0443\u044e \u0447\u0435\u0440\u0435\u0437 iTunes \u0438\u043b\u0438 Google Play