Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAllan Nordhøy <epost@anotheragency.no>2017-11-15 04:16:17 +0300
committerGitHub <noreply@github.com>2017-11-15 04:16:17 +0300
commit697fc573fcc286367741b7eb766237c07c6c974e (patch)
tree85aa207663cca29f55743f28a516b84e1820988d /templates
parentd51b3e8532850f64502d329ae01e74823276b7a1 (diff)
Save → Saving "Note saved"
Diffstat (limited to 'templates')
-rw-r--r--templates/note.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/note.php b/templates/note.php
index eec333f8..844818dd 100644
--- a/templates/note.php
+++ b/templates/note.php
@@ -2,8 +2,8 @@
<div class="note-meta">
<span class="note-word-count" ng-if="note.content.length > 0">{{note.content | wordCount}}</span>
<span class="note-unsaved" ng-if="note.unsaved" title="<?php p($l->t('The note has unsaved changes.')); ?>"><?php p($l->t('*')); ?></span>
- <span class="note-error" ng-if="note.error" ng-click="manualSave()" title="<?php p($l->t('Click here to try again')); ?>"><?php p($l->t('Save failed!')); ?></span>
- <span class="saving" ng-if="isManualSaving()" title="<?php p($l->t('The note is currently saved')); ?>"></span>
+ <span class="note-error" ng-if="note.error" ng-click="manualSave()" title="<?php p($l->t('Click here to try again')); ?>"><?php p($l->t('Saving failed!')); ?></span>
+ <span class="saving" ng-if="isManualSaving()" title="<?php p($l->t('Note saved')); ?>"></span>
<span class="note-meta-right">
<button class="icon-fullscreen has-tooltip btn-fullscreen" notes-tooltip ng-click="toggleDistractionFree()"></button>
</span>