Fix Shared with 'user' tooltip... and improves the tooltip to leaving a shared note.

This commit is contained in:
Matias De lellis
2022-05-19 10:14:04 -03:00
parent 2fe573eb5f
commit a9d5db57d6
4 changed files with 5 additions and 2 deletions

View File

@@ -15,8 +15,8 @@
<div class='note-body'> <div class='note-body'>
<div> <div>
{{#if sharedBy}} {{#if sharedBy}}
<div class="icon-header-note icon-share" title="{{tSB sharedBy.user_id }}"></div> <div class="icon-header-note icon-share" title="{{tSB sharedBy.0.user_id}}"></div>
<div class="icon-header-note icon-delete hide-header-icon icon-delete-note" title="{{t "quicknotes" "Delete shared note"}}"></div> <div class="icon-header-note icon-delete hide-header-icon icon-delete-note" title="{{t "quicknotes" "Leave this shared note"}}"></div>
{{else}} {{else}}
{{#if isPinned}} {{#if isPinned}}
<div class="icon-header-note icon-pinned fixed-header-icon" title="{{t "quicknotes" "Unpin note"}}"></div> <div class="icon-header-note icon-pinned fixed-header-icon" title="{{t "quicknotes" "Unpin note"}}"></div>

View File

@@ -46,6 +46,7 @@ OC.L10N.register(
"Shared" : "Compartidos", "Shared" : "Compartidos",
"Shared with others" : "Compartido con otros", "Shared with others" : "Compartido con otros",
"Shared with you" : "Compartido con usted", "Shared with you" : "Compartido con usted",
"Leave this shared note" : "Abandonar esta nota compartida",
"Close" : "Cerrar", "Close" : "Cerrar",
"Default color for new notes" : "Color predeterminado para nuevas notas", "Default color for new notes" : "Color predeterminado para nuevas notas",
"Settings" : "Ajustes" "Settings" : "Ajustes"

View File

@@ -44,6 +44,7 @@
"Shared" : "Compartidos", "Shared" : "Compartidos",
"Shared with others" : "Compartido con otros", "Shared with others" : "Compartido con otros",
"Shared with you" : "Compartido con usted", "Shared with you" : "Compartido con usted",
"Leave this shared note" : "Abandonar esta nota compartida",
"Close" : "Cerrar", "Close" : "Cerrar",
"Default color for new notes" : "Color predeterminado para nuevas notas", "Default color for new notes" : "Color predeterminado para nuevas notas",
"Settings" : "Ajustes" "Settings" : "Ajustes"

View File

@@ -9,5 +9,6 @@ p($l->t('Shared'));
p($l->t('Shared with others')); p($l->t('Shared with others'));
p($l->t('Shared with you')); p($l->t('Shared with you'));
p($l->t('Share note')); p($l->t('Share note'));
p($l->t('Leave this shared note'));
p($l->t('Close')); p($l->t('Close'));
p($l->t('Default color for new notes')); p($l->t('Default color for new notes'));