Signed-off-by: Azul <azul@riseup.net>
This commit is contained in:
Azul 2020-06-18 11:07:40 +02:00
Родитель 611b799b81
Коммит 1e596cb9b1
12 изменённых файлов: 15 добавлений и 15 удалений

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -245,7 +245,7 @@ export default {
return return
} }
const _command = command const _command = command
OC.dialogs.filepicker('Insert an image', (file) => { OC.dialogs.filepicker(t('text', 'Insert an image'), (file) => {
const client = OC.Files.getClient() const client = OC.Files.getClient()
client.getFileInfo(file).then((_status, fileInfo) => { client.getFileInfo(file).then((_status, fileInfo) => {
this.lastImagePath = fileInfo.path this.lastImagePath = fileInfo.path

Просмотреть файл

@ -44,7 +44,7 @@
class="menububble__button" class="menububble__button"
:class="{ 'is-active': isActive.link() }" :class="{ 'is-active': isActive.link() }"
@click="showLinkMenu(getMarkAttrs('link'))"> @click="showLinkMenu(getMarkAttrs('link'))">
<span v-tooltip="isActive.link() ? 'Update Link' : 'Add Link'" class="icon-link" /> <span v-tooltip="t('text', isActive.link() ? 'Update Link' : 'Add Link')" class="icon-link" />
<span class="menububble__buttontext"> <span class="menububble__buttontext">
{{ t('text', isActive.link() ? 'Update Link' : 'Add Link') }} {{ t('text', isActive.link() ? 'Update Link' : 'Add Link') }}
</span> </span>
@ -53,7 +53,7 @@
class="menububble__button" class="menububble__button"
:class="{ 'is-active': isActive.link() }" :class="{ 'is-active': isActive.link() }"
@click="selectFile(commands.link)"> @click="selectFile(commands.link)">
<span v-tooltip="'Link file'" class="icon-file" /> <span v-tooltip="t('text', 'Link file')" class="icon-file" />
<span class="menububble__buttontext">{{ t('text', 'Link file') }}</span> <span class="menububble__buttontext">{{ t('text', 'Link file') }}</span>
</button> </button>
</template> </template>
@ -110,7 +110,7 @@ export default {
return return
} }
const startPath = this.filePath.split('/').slice(0, -1).join('/') const startPath = this.filePath.split('/').slice(0, -1).join('/')
OC.dialogs.filepicker('Select file to link to', (file) => { OC.dialogs.filepicker(t('text', 'Select file to link to'), (file) => {
const client = OC.Files.getClient() const client = OC.Files.getClient()
client.getFileInfo(file).then((_status, fileInfo) => { client.getFileInfo(file).then((_status, fileInfo) => {
const path = optimalPath(this.filePath, `${fileInfo.path}/${fileInfo.name}`) const path = optimalPath(this.filePath, `${fileInfo.path}/${fileInfo.name}`)