mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-25 18:19:22 +03:00
Small GUI fixes (#1014)
This commit is contained in:
parent
f64b63c549
commit
3215c5f8d3
13 changed files with 73 additions and 48 deletions
|
|
@ -215,6 +215,7 @@ it_IT:
|
|||
BUTTON_CLOSE: "Chiudi"
|
||||
BUTTON_ADD: "Aggiungi"
|
||||
BUTTON_UPDATE: "Aggiorna"
|
||||
NEW_DOMAIN_DESC: "La configurazione di questo dominio ti permette di lavorare <br />con <i>%NAME%</i> indirizzi email."
|
||||
WHITE_LIST_ALERT: |
|
||||
Lista di domini a cui gli utenti sono autorizzati ad accedere.
|
||||
Utilizzare uno spazio come separatore.
|
||||
|
|
@ -291,6 +292,7 @@ it_IT:
|
|||
DEMO_SEND_MESSAGE_ERROR: "Per ragioni di sicurezza, questo account non è abilitato ad inviare email all'esterno."
|
||||
DEMO_ACCOUNT_ERROR: "Per ragioni di sicurezza, questa funzionalità è bloccata."
|
||||
ACCOUNT_ALREADY_EXISTS: "Questo account esiste già"
|
||||
ACCOUNT_DOES_NOT_EXIST: "L'account non esiste"
|
||||
MAIL_SERVER_ERROR: "Errore durante la connessione con il server mail"
|
||||
INVALID_INPUT_ARGUMENT: "Argomento non valido"
|
||||
UNKNOWN_ERROR: "Errore sconosciuto"
|
||||
|
|
|
|||
|
|
@ -50,7 +50,6 @@ en:
|
|||
FOLDER_LIST:
|
||||
BUTTON_COMPOSE: "Compose"
|
||||
BUTTON_CONTACTS: "Contacts"
|
||||
BUTTON_NEW: "New"
|
||||
BUTTON_NEW_MESSAGE: "New message"
|
||||
INBOX_NAME: "Inbox"
|
||||
STARRED_NAME: "Starred"
|
||||
|
|
|
|||
|
|
@ -50,7 +50,6 @@ en_GB:
|
|||
FOLDER_LIST:
|
||||
BUTTON_COMPOSE: "Compose"
|
||||
BUTTON_CONTACTS: "Contacts"
|
||||
BUTTON_NEW: "New"
|
||||
BUTTON_NEW_MESSAGE: "New message"
|
||||
INBOX_NAME: "Inbox"
|
||||
STARRED_NAME: "Starred"
|
||||
|
|
|
|||
|
|
@ -50,7 +50,6 @@ en_US:
|
|||
FOLDER_LIST:
|
||||
BUTTON_COMPOSE: "Compose"
|
||||
BUTTON_CONTACTS: "Contacts"
|
||||
BUTTON_NEW: "New"
|
||||
BUTTON_NEW_MESSAGE: "New message"
|
||||
INBOX_NAME: "Inbox"
|
||||
STARRED_NAME: "Starred"
|
||||
|
|
|
|||
|
|
@ -50,7 +50,9 @@ hu_HU:
|
|||
FOLDER_LIST:
|
||||
BUTTON_COMPOSE: "Levélírás"
|
||||
BUTTON_CONTACTS: "Névjegyek"
|
||||
BUTTON_NEW_MESSAGE: "Új üzenet"
|
||||
INBOX_NAME: "Beérkező levelek"
|
||||
STARRED_NAME: "Csillagozott"
|
||||
SENT_NAME: "Elküldött levelek"
|
||||
DRAFTS_NAME: "Piszkozatok"
|
||||
SPAM_NAME: "Levélszemét"
|
||||
|
|
@ -621,6 +623,7 @@ hu_HU:
|
|||
NO_PRIVATE_KEY_FOUND: "Nem találtam privát kulcsot"
|
||||
NO_PRIVATE_KEY_FOUND_FOR: "Nem találtam privát kulcsot ehhez az e-mailhez: \"%EMAIL%\""
|
||||
ADD_A_PUBLICK_KEY: "Publikus kulcs hozzáadás"
|
||||
SELECT_A_PRIVATE_KEY: "Privát kulcs választás"
|
||||
UNVERIFIRED_SIGNATURE: "Nem ellenőrzött aláírás"
|
||||
DECRYPTION_ERROR: "OpenPGP visszafejtési hiba"
|
||||
GOOD_SIGNATURE: "Jó aláírás tőle: %USER%"
|
||||
|
|
|
|||
|
|
@ -51,6 +51,7 @@ it_IT:
|
|||
BUTTON_COMPOSE: "Scrivi messaggio"
|
||||
BUTTON_CONTACTS: "Contatti"
|
||||
INBOX_NAME: "Posta in arrivo"
|
||||
STARRED_NAME: "Preferiti"
|
||||
SENT_NAME: "Posta inviata"
|
||||
DRAFTS_NAME: "Bozze"
|
||||
SPAM_NAME: "Spam"
|
||||
|
|
@ -620,6 +621,7 @@ it_IT:
|
|||
NO_PRIVATE_KEY_FOUND: "Nessuna chiave privata trovata"
|
||||
NO_PRIVATE_KEY_FOUND_FOR: "Nessuna chiave privata trovata per l'indirizzo email \"%EMAIL%\"\n"
|
||||
ADD_A_PUBLICK_KEY: "Add a public key"
|
||||
SELECT_A_PRIVATE_KEY: "Seleziona una chiave privata"
|
||||
UNVERIFIRED_SIGNATURE: "Firma non verificata"
|
||||
DECRYPTION_ERROR: "Decriptazione con OpenPGP fallita"
|
||||
GOOD_SIGNATURE: "Firma valida da %USER%"
|
||||
|
|
|
|||
|
|
@ -50,8 +50,7 @@ ru_RU:
|
|||
FOLDER_LIST:
|
||||
BUTTON_COMPOSE: "Написать"
|
||||
BUTTON_CONTACTS: "Контакты"
|
||||
BUTTON_NEW: "Новое"
|
||||
BUTTON_NEW_MESSAGE: "Написать"
|
||||
BUTTON_NEW_MESSAGE: "Новое сообщение"
|
||||
INBOX_NAME: "Входящие"
|
||||
STARRED_NAME: "Отмеченные"
|
||||
SENT_NAME: "Отправленные"
|
||||
|
|
|
|||
|
|
@ -1,13 +1,8 @@
|
|||
<div class="b-folders g-ui-user-select-none thm-folders" data-bind="css: {'focused': folderListFocused, 'single-root-inbox': foldersListWithSingleInboxRootFolder, 'inbox-is-starred': isInboxStarred}">
|
||||
<div class="b-toolbar btn-toolbar">
|
||||
<a class="btn btn-nowrap buttonCompose pull-left" data-tooltip-join="top" data-bind="visible: allowComposer, click: composeClick, tooltip: 'FOLDER_LIST/BUTTON_NEW_MESSAGE', css: {'btn-warning': composeInEdit, 'btn-success': !composeInEdit()}">
|
||||
<a class="btn buttonCompose pull-left" data-tooltip-join="top" data-bind="visible: allowComposer, click: composeClick, tooltip: 'FOLDER_LIST/BUTTON_NEW_MESSAGE', css: {'btn-warning': composeInEdit, 'btn-success': !composeInEdit()}">
|
||||
<i class="icon-paper-plane"></i>
|
||||
<span data-bind="visible: displayNewText">
|
||||
|
||||
<span class="i18n" data-i18n="FOLDER_LIST/BUTTON_NEW"></span>
|
||||
</span>
|
||||
<span data-bind="visible: displayNewMessageText">
|
||||
|
||||
<span class="btn-text-wrp buttonComposeText">
|
||||
<span class="i18n" data-i18n="FOLDER_LIST/BUTTON_NEW_MESSAGE"></span>
|
||||
</span>
|
||||
</a>
|
||||
|
|
|
|||
|
|
@ -72,32 +72,22 @@
|
|||
|
||||
<div class="message-fixed-button-toolbar clearfix" data-bind="visible: message">
|
||||
<nobr>
|
||||
<div class="btn-group pull-right">
|
||||
<div class="btn-group pull-right" data-bind="registrateBootstrapDropdown: true,
|
||||
visible: allowComposer || allowMessageListActions || allowMessageActions">
|
||||
|
||||
<a class="btn btn-thin last btn-dark-disabled-border dropdown-toggle buttonMore"
|
||||
id="more-view-dropdown-id" href="#" tabindex="-1"
|
||||
data-toggle="dropdown" data-tooltip-join="bottom"
|
||||
style="margin-left: -1px;"
|
||||
data-bind="command: messageVisibilityCommand, tooltip: 'MESSAGE/BUTTON_MORE',
|
||||
css: {'first': !allowComposer}">
|
||||
|
||||
<div class="btn-group pull-right" style="margin-right: -8px;">
|
||||
<div class="btn-group pull-right" data-bind="registrateBootstrapDropdown: true, visible: allowComposer || allowMessageListActions || allowMessageActions">
|
||||
<a class="btn btn-thin btn-transparent last btn-dark-disabled-border dropdown-toggle buttonMore" id="more-view-dropdown-id" href="#" tabindex="-1" data-toggle="dropdown" data-tooltip-join="bottom" style="margin-left: -1px;" data-bind="command: messageVisibilityCommand, tooltip: 'MESSAGE/BUTTON_MORE', css: {'first': !allowComposer}">
|
||||
<span data-bind="visible: !allowComposer" class="icon-ellipsis-alt"></span>
|
||||
<span data-bind="visible: allowComposer" class="caret"></span>
|
||||
</a>
|
||||
<ul class="dropdown-menu g-ui-menu" role="menu" aria-labelledby="more-view-dropdown-id">
|
||||
<div data-bind="visible: allowComposer && !isDraftFolder()">
|
||||
<li class="e-item" role="presentation"
|
||||
data-bind="visible: 'reply' !== lastReplyAction()">
|
||||
<li class="e-item" role="presentation" data-bind="visible: 'reply' !== lastReplyAction()">
|
||||
<a class="e-link menuitem" href="#" tabindex="-1" data-bind="command: replyCommand">
|
||||
<i class="icon-reply"></i>
|
||||
|
||||
<span class="i18n" data-i18n="MESSAGE/BUTTON_REPLY"></span>
|
||||
</a>
|
||||
</li>
|
||||
<li class="e-item" role="presentation"
|
||||
data-bind="visible: 'replyall' !== lastReplyAction()">
|
||||
<li class="e-item" role="presentation" data-bind="visible: 'replyall' !== lastReplyAction()">
|
||||
<a class="e-link menuitem" href="#" tabindex="-1" data-bind="command: replyAllCommand">
|
||||
<i class="icon-reply-all"></i>
|
||||
|
||||
|
|
@ -193,15 +183,15 @@
|
|||
</div>
|
||||
</ul>
|
||||
</div>
|
||||
<a class="btn first btn-dark-disabled-border buttonReply pull-right" data-tooltip-join="bottom"
|
||||
<a class="btn btn-thin btn-transparent first btn-dark-disabled-border buttonReply pull-right" data-tooltip-join="bottom"
|
||||
data-bind="visible: 'reply' === lastReplyAction() && allowComposer, command: replyCommand, tooltip: 'MESSAGE/BUTTON_REPLY'">
|
||||
<i class="icon-reply"></i>
|
||||
</a>
|
||||
<a class="btn first btn-dark-disabled-border buttonReplyAll pull-right" data-tooltip-join="bottom"
|
||||
<a class="btn btn-thin btn-transparent first btn-dark-disabled-border buttonReplyAll pull-right" data-tooltip-join="bottom"
|
||||
data-bind="visible: 'replyall' === lastReplyAction() && allowComposer, command: replyAllCommand, tooltip: 'MESSAGE/BUTTON_REPLY_ALL'">
|
||||
<i class="icon-reply-all"></i>
|
||||
</a>
|
||||
<a class="btn first btn-dark-disabled-border buttonForward pull-right" data-tooltip-join="bottom"
|
||||
<a class="btn btn-thin btn-transparent first btn-dark-disabled-border buttonForward pull-right" data-tooltip-join="bottom"
|
||||
data-bind="visible: 'forward' === lastReplyAction() && allowComposer, command: forwardCommand, tooltip: 'MESSAGE/BUTTON_FORWARD'">
|
||||
<i class="icon-forward"></i>
|
||||
</a>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue