Skip to content

Commit 3f00e78

Browse files
chore: update text for folder storage (#1590)
1 parent 45c73a2 commit 3f00e78

File tree

2 files changed

+16
-14
lines changed

2 files changed

+16
-14
lines changed

frontend/app_flowy/assets/translations/en.json

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"welcomeText": "Welcome to @:appName",
55
"githubStarText": "Star on GitHub",
66
"subscribeNewsletterText": "Subscribe to Newsletter",
7-
"letsGoButtonText": "Let's Go",
7+
"letsGoButtonText": "Quick Start",
88
"title": "Title",
99
"signUp": {
1010
"buttonText": "Sign Up",
@@ -167,24 +167,25 @@
167167
}
168168
},
169169
"files": {
170-
"defaultLocation": "Default location for new notes",
170+
"defaultLocation": "Where your data is stored now",
171171
"doubleTapToCopy": "Double tap to copy the path",
172-
"restoreLocation": "Restore to default location",
173-
"customizeLocation": "Customize location",
172+
"restoreLocation": "Restore to AppFlowy default path",
173+
"customizeLocation": "Open another folder",
174174
"restartApp": "Please restart app for the changes to take effect.",
175175
"exportDatabase": "Export databae",
176176
"selectFiles": "Select the files that need to be export",
177177
"createNewFolder": "Create a new folder",
178-
"createNewFolderDesc": "Create a new folder ...",
178+
"createNewFolderDesc": "Tell us where you want to store your data ...",
179179
"open": "Open",
180-
"openFolder": "Open folder",
181-
"openFolderDesc": "Open folder ...",
180+
"openFolder": "Open an existing folder",
181+
"openFolderDesc": "Read and write it to your existing AppFlowy folder ...",
182182
"folderHintText": "folder name",
183-
"location": "Location",
184-
"locationDesc": "Pick a name for your location",
185-
"browser": "Browser",
186-
"create": "create",
187-
"locationCannotBeEmpty": "Location cannot be empty"
183+
"location": "Creating a new folder",
184+
"locationDesc": "Pick a name for your AppFlowy data folder",
185+
"browser": "Browse",
186+
"create": "Create",
187+
"folderPath": "Path to store your folder",
188+
"locationCannotBeEmpty": "Path cannot be empty"
188189
}
189190
},
190191
"grid": {

frontend/app_flowy/lib/user/presentation/folder/folder_widget.dart

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ class CreateFolderWidgetState extends State<CreateFolderWidget> {
191191
),
192192
Card(
193193
child: ListTile(
194-
title: FlowyText.medium(LocaleKeys.settings_files_location.tr()),
194+
title: FlowyText.medium(LocaleKeys.settings_files_folderPath.tr()),
195195
subtitle: FlowyText.regular(_path),
196196
trailing: _buildTextButton(
197197
context, LocaleKeys.settings_files_browser.tr(), () async {
@@ -205,7 +205,8 @@ class CreateFolderWidgetState extends State<CreateFolderWidget> {
205205
),
206206
),
207207
Card(
208-
child: _buildTextButton(context, 'create', () async {
208+
child: _buildTextButton(
209+
context, LocaleKeys.settings_files_create.tr(), () async {
209210
if (_path.isEmpty) {
210211
_showToast(LocaleKeys.settings_files_locationCannotBeEmpty.tr());
211212
} else {

0 commit comments

Comments
 (0)