Skip to content

Commit b8eb5f1

Browse files
committed
fix(OptionSyncFolder): Make more clear what each option does and the implications of that
see #1436
1 parent 60014f4 commit b8eb5f1

File tree

2 files changed

+22
-10
lines changed

2 files changed

+22
-10
lines changed

_locales/en/messages.json

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -132,16 +132,22 @@
132132
"message": "the file name of the bookmarks file that will reside in your Google Drive (make sure this name is unique in your Drive)"
133133
},
134134
"LabelServerfolder": {
135-
"message": "Server folder"
135+
"message": "Server target"
136136
},
137137
"DescriptionServerfolder": {
138-
"message": "This is the path prefix under which this account will operate on the server. Leave this empty to use no prefix at all."
138+
"message": "When syncing, your bookmarks in this browser will be stored as links under this path on the server. Note, that this path represents a folder in the Nextcloud Bookmarks app, not a folder in Nextcloud Files. Leave this empty to just put all links in the topmost folder on the server."
139+
},
140+
"LabelLocaltarget": {
141+
"message": "Local target"
142+
},
143+
"DescriptionLocaltarget": {
144+
"message": "Choose here, whether you want to sync browser bookmarks, or browser tabs."
139145
},
140146
"LabelLocalfolder": {
141-
"message": "Local folder"
147+
"message": "Bookmarks folder"
142148
},
143149
"DescriptionLocalfolder": {
144-
"message": "This is the local bookmarks folder in this browser that will be synced to the server. Note that some browser don't allow creating new items under the root folder (e.g. Firefox and Google Chrome)"
150+
"message": "Bookmarks in this bookmarks folder will be stored as links on the server and links on the server will be stored as bookmarks in this bookmarks folder in this browser."
145151
},
146152
"LabelRootfolder": {
147153
"message": "Root folder"
@@ -418,7 +424,10 @@
418424
"message": "Folder not found"
419425
},
420426
"LabelSyncTabs": {
421-
"message": "Sync Tabs"
427+
"message": "Browser tabs"
428+
},
429+
"DescriptionSyncTabs": {
430+
"message": "Links that are stored on the server will be opened as browser tabs in your browser and existing open browser tabs are stored as links on your server. Note that depending how many links are stored on the server, since they will all be opened as tabs on the next sync run, this may possibly overwhelm your browser."
422431
},
423432
"LabelTabs": {
424433
"message": "Tabs"

src/ui/components/OptionSyncFolder.vue

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,16 @@
22
<div>
33
<div>
44
<div class="text-h6">
5-
{{ t('LabelLocalfolder') }}
6-
</div>
7-
<div class="caption">
8-
{{ t('DescriptionLocalfolder') }}
5+
{{ t('LabelLocaltarget') }}
96
</div>
107
<v-radio-group
118
v-model="mode"
129
column>
1310
<v-radio value="folder">
1411
<template #label>
1512
{{ t('LabelLocalfolder') }}
16-
&nbsp;
1713
<v-text-field
14+
class="ml-2"
1815
v-model="path"
1916
readonly
2017
@click="onTriggerFinder">
@@ -28,9 +25,15 @@
2825
</v-text-field>
2926
</template>
3027
</v-radio>
28+
<div class="caption ml-8 mb-6">
29+
{{ t('DescriptionLocalfolder') }}
30+
</div>
3131
<v-radio
3232
:label="t('LabelSyncTabs')"
3333
value="tabs" />
34+
<div class="caption ml-8 mb-2">
35+
{{ t('DescriptionSyncTabs') }}
36+
</div>
3437
</v-radio-group>
3538
</div>
3639
<v-dialog

0 commit comments

Comments
 (0)