UX: Rename "location" to "folder"

See https://twitter.com/browseyourlife/status/1258330913991208960

Signed-off-by: Michael Mayer <michael@liquidbytes.net>
This commit is contained in:
Michael Mayer 2020-05-07 13:08:44 +02:00
parent c318d22ca7
commit e0a57673eb
2 changed files with 10 additions and 10 deletions

View file

@ -4,7 +4,7 @@
<v-card-title primary-title> <v-card-title primary-title>
<v-layout row wrap v-if="scope === 'sharing'"> <v-layout row wrap v-if="scope === 'sharing'">
<v-flex xs9> <v-flex xs9>
<h3 class="headline mb-0"><translate>Upload</translate></h3> <h3 class="headline mb-0">{{ $gettext('Upload') }}</h3>
</v-flex> </v-flex>
<v-flex xs3 text-xs-right> <v-flex xs3 text-xs-right>
<v-switch <v-switch
@ -30,7 +30,7 @@
</v-layout> </v-layout>
<v-layout row wrap v-else-if="scope === 'sync'"> <v-layout row wrap v-else-if="scope === 'sync'">
<v-flex xs9> <v-flex xs9>
<h3 class="headline mb-0"><translate>Remote Sync</translate></h3> <h3 class="headline mb-0">{{ $gettext('Remote Sync') }}</h3>
</v-flex> </v-flex>
<v-flex xs3 text-xs-right> <v-flex xs3 text-xs-right>
<v-switch <v-switch
@ -56,7 +56,7 @@
</v-layout> </v-layout>
<v-layout row wrap v-else> <v-layout row wrap v-else>
<v-flex xs10> <v-flex xs10>
<h3 class="headline mb-0"><translate>Edit Account</translate></h3> <h3 class="headline mb-0">{{ $gettext('Edit Account') }}</h3>
</v-flex> </v-flex>
<v-flex xs2 text-xs-right> <v-flex xs2 text-xs-right>
<v-btn icon flat :ripple="false" <v-btn icon flat :ripple="false"
@ -66,7 +66,7 @@
</v-btn> </v-btn>
</v-flex> </v-flex>
</v-layout> </v-layout>
<h3 class="headline mb-0" v-else><translate>Edit Account</translate></h3> <h3 class="headline mb-0" v-else>{{ $gettext('Edit Account') }}</h3>
</v-card-title> </v-card-title>
<v-container fluid class="pt-0 pb-2 pr-2 pl-2"> <v-container fluid class="pt-0 pb-2 pr-2 pl-2">
<v-layout row wrap v-if="scope === 'sharing'"> <v-layout row wrap v-if="scope === 'sharing'">
@ -76,7 +76,7 @@
hide-details hide-no-data flat hide-details hide-no-data flat
v-model="model.SharePath" v-model="model.SharePath"
browser-autocomplete="off" browser-autocomplete="off"
hint="Location" hint="Folder"
:search-input.sync="search" :search-input.sync="search"
:items="pathItems" :items="pathItems"
:loading="loading" :loading="loading"
@ -121,7 +121,7 @@
hide-details hide-no-data flat hide-details hide-no-data flat
v-model="model.SyncPath" v-model="model.SyncPath"
browser-autocomplete="off" browser-autocomplete="off"
hint="Location" hint="Folder"
:search-input.sync="search" :search-input.sync="search"
:items="pathItems" :items="pathItems"
:loading="loading" :loading="loading"
@ -344,10 +344,10 @@
owner: this.$gettext("Owner"), owner: this.$gettext("Owner"),
apiKey: this.$gettext("API Key"), apiKey: this.$gettext("API Key"),
AccType: this.$gettext("Type"), AccType: this.$gettext("Type"),
SharePath: this.$gettext("Default Location"), SharePath: this.$gettext("Default Folder"),
ShareSize: this.$gettext("Size"), ShareSize: this.$gettext("Size"),
ShareExpires: this.$gettext("Expires"), ShareExpires: this.$gettext("Expires"),
SyncPath: this.$gettext("Location"), SyncPath: this.$gettext("Folder"),
SyncInterval: this.$gettext("Interval"), SyncInterval: this.$gettext("Interval"),
SyncFilenames: this.$gettext("Preserve filenames"), SyncFilenames: this.$gettext("Preserve filenames"),
SyncStart: this.$gettext("Start"), SyncStart: this.$gettext("Start"),

View file

@ -27,7 +27,7 @@
hide-details hide-no-data flat hide-details hide-no-data flat
v-model="path" v-model="path"
browser-autocomplete="off" browser-autocomplete="off"
hint="Location" hint="Folder"
:search-input.sync="search" :search-input.sync="search"
:items="pathItems" :items="pathItems"
:loading="loading" :loading="loading"
@ -80,7 +80,7 @@
newPath: "", newPath: "",
labels: { labels: {
account: this.$gettext("Account"), account: this.$gettext("Account"),
path: this.$gettext("Location"), path: this.$gettext("Folder"),
upload: this.$gettext("Upload"), upload: this.$gettext("Upload"),
setup: this.$gettext("Setup"), setup: this.$gettext("Setup"),
} }