mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-13 03:27:39 +03:00
Small fixes
This commit is contained in:
parent
86295f6e5b
commit
2ac2168477
33 changed files with 51 additions and 35 deletions
|
|
@ -285,8 +285,7 @@
|
|||
});
|
||||
|
||||
this.hasUnreadMessages = ko.computed(function () {
|
||||
return 0 < this.messageCountUnread() &&
|
||||
(this.isSystemFolder() || this.checkable());
|
||||
return 0 < this.messageCountUnread();
|
||||
}, this);
|
||||
|
||||
this.hasSubScribedUnreadMessagesSubfolders = ko.computed(function () {
|
||||
|
|
|
|||
|
|
@ -12,6 +12,7 @@
|
|||
Enums = require('Common/Enums'),
|
||||
Utils = require('Common/Utils'),
|
||||
Links = require('Common/Links'),
|
||||
Plugins = require('Common/Plugins'),
|
||||
|
||||
Settings = require('Storage/Settings'),
|
||||
|
||||
|
|
@ -71,6 +72,8 @@
|
|||
oParameters['XToken'] = Settings.settingsGet('Token');
|
||||
}
|
||||
|
||||
Plugins.runHook('ajax-default-request', [sAction, oParameters, sAdditionalGetString]);
|
||||
|
||||
this.setTrigger(fTrigger, true);
|
||||
|
||||
oH = $.ajax({
|
||||
|
|
@ -83,12 +86,26 @@
|
|||
'global': true
|
||||
}).always(function (oData, sTextStatus) {
|
||||
|
||||
var bCached = false;
|
||||
var bCached = false, sType = Enums.StorageResultType.Error;
|
||||
if (oData && oData['Time'])
|
||||
{
|
||||
bCached = Utils.pInt(oData['Time']) > Utils.microtime() - iStart;
|
||||
}
|
||||
|
||||
// backward capability
|
||||
switch (true)
|
||||
{
|
||||
case 'success' === sTextStatus && oData && oData.Result && sAction === oData.Action:
|
||||
sType = Enums.StorageResultType.Success;
|
||||
break;
|
||||
case 'abort' === sTextStatus && (!oData || !oData.__aborted__):
|
||||
sType = Enums.StorageResultType.Abort;
|
||||
break;
|
||||
}
|
||||
|
||||
Plugins.runHook('ajax-default-response', [sAction,
|
||||
Enums.StorageResultType.Success === sType ? oData : null, sType, bCached, oParameters]);
|
||||
|
||||
if ('success' === sTextStatus)
|
||||
{
|
||||
if (oData && oData.Result && sAction === oData.Action)
|
||||
|
|
|
|||
|
|
@ -108,7 +108,7 @@
|
|||
self.folderListHelp(Translator.i18n('SETTINGS_FOLDERS/HELP_SHOW_HIDE_FOLDER'));
|
||||
})
|
||||
.on('mouseover', '.check-folder-parent', function () {
|
||||
self.folderListHelp(Translator.i18n('SETTINGS_FOLDERS/HELP_SHOW_HIDE_FOLDER_COUNT'));
|
||||
self.folderListHelp(Translator.i18n('SETTINGS_FOLDERS/HELP_CHECK_FOR_NEW_MESSAGES'));
|
||||
})
|
||||
.on('mouseout', '.subscribe-folder-parent, .check-folder-parent, .delete-folder-parent', function () {
|
||||
self.folderListHelp('');
|
||||
|
|
|
|||
|
|
@ -10,7 +10,7 @@
|
|||
}
|
||||
|
||||
@keyframes bounce-me {
|
||||
0% { transform: scale(1); } 50% { transform: scale(1.1); } 100% { transform: scale(1); }
|
||||
0% { transform: scale(1); } 50% { transform: scale(1.2); } 100% { transform: scale(1); }
|
||||
}
|
||||
|
||||
@keyframes textLoadingAnimationKeyFrame {
|
||||
|
|
|
|||
|
|
@ -570,8 +570,8 @@ gulp.task('owncloud', ['rainloop:owncloud:copy',
|
|||
|
||||
//WATCH
|
||||
gulp.task('watch', ['fast'], function() {
|
||||
gulp.watch(cfg.paths.globjs, {interval: 500}, ['js:app', 'js:admin']);
|
||||
gulp.watch(cfg.paths.less.main.watch, {interval: 500}, ['css:main']);
|
||||
gulp.watch(cfg.paths.globjs, {interval: 1000}, ['js:app', 'js:admin']);
|
||||
gulp.watch(cfg.paths.less.main.watch, {interval: 1000}, ['css:main']);
|
||||
});
|
||||
|
||||
// ALIASES
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
"name": "RainLoop",
|
||||
"title": "RainLoop Webmail",
|
||||
"version": "1.8.4",
|
||||
"release": "312",
|
||||
"release": "314",
|
||||
"description": "Simple, modern & fast web-based email client",
|
||||
"homepage": "http://rainloop.net",
|
||||
"main": "gulpfile.js",
|
||||
|
|
|
|||
|
|
@ -557,7 +557,7 @@ TO_MANY_FOLDERS_DESC_1 = "You have too many folders!"
|
|||
TO_MANY_FOLDERS_DESC_2 = "We have shown only a part of them, to avoid performance problems."
|
||||
HELP_DELETE_FOLDER = "Delete folder"
|
||||
HELP_SHOW_HIDE_FOLDER = "Show/hide folder"
|
||||
HELP_SHOW_HIDE_FOLDER_COUNT = "Show/hide unread messages counter"
|
||||
HELP_CHECK_FOR_NEW_MESSAGES = "Check/don't check for new messages"
|
||||
|
||||
[SETTINGS_ACCOUNTS]
|
||||
LEGEND_ACCOUNTS = "Списък с акаунти"
|
||||
|
|
|
|||
|
|
@ -556,7 +556,7 @@ TO_MANY_FOLDERS_DESC_1 = "Máte moc složek!"
|
|||
TO_MANY_FOLDERS_DESC_2 = "Můžeme zobrazit jen část z nich, abychom zabránili problémům s výkonem."
|
||||
HELP_DELETE_FOLDER = "Delete folder"
|
||||
HELP_SHOW_HIDE_FOLDER = "Show/hide folder"
|
||||
HELP_SHOW_HIDE_FOLDER_COUNT = "Show/hide unread messages counter"
|
||||
HELP_CHECK_FOR_NEW_MESSAGES = "Check/don't check for new messages"
|
||||
|
||||
[SETTINGS_ACCOUNTS]
|
||||
LEGEND_ACCOUNTS = "Seznam účtů"
|
||||
|
|
|
|||
|
|
@ -557,7 +557,7 @@ TO_MANY_FOLDERS_DESC_1 = "Sie haben zu viele Ordner!"
|
|||
TO_MANY_FOLDERS_DESC_2 = "Aus Leistungsgründen zeigen wir nur einen Teil davon an."
|
||||
HELP_DELETE_FOLDER = "Ordner löschen"
|
||||
HELP_SHOW_HIDE_FOLDER = "Ordner ein-/ausblenden"
|
||||
HELP_SHOW_HIDE_FOLDER_COUNT = "Ordner-Nachrichtenzähler ein-/ausblenden"
|
||||
HELP_CHECK_FOR_NEW_MESSAGES = "Check/don't check for new messages"
|
||||
|
||||
[SETTINGS_ACCOUNTS]
|
||||
LEGEND_ACCOUNTS = "Konten"
|
||||
|
|
|
|||
|
|
@ -557,7 +557,7 @@ TO_MANY_FOLDERS_DESC_1 = "You have too many folders!"
|
|||
TO_MANY_FOLDERS_DESC_2 = "We have shown only a part of them, to avoid performance problems."
|
||||
HELP_DELETE_FOLDER = "Delete folder"
|
||||
HELP_SHOW_HIDE_FOLDER = "Show/hide folder"
|
||||
HELP_SHOW_HIDE_FOLDER_COUNT = "Show/hide unread messages counter"
|
||||
HELP_CHECK_FOR_NEW_MESSAGES = "Check/don't check for new messages"
|
||||
|
||||
[SETTINGS_ACCOUNTS]
|
||||
LEGEND_ACCOUNTS = "Accounts"
|
||||
|
|
|
|||
|
|
@ -557,7 +557,7 @@ TO_MANY_FOLDERS_DESC_1 = "You have too many folders!"
|
|||
TO_MANY_FOLDERS_DESC_2 = "We have shown only a part of them, to avoid performance problems."
|
||||
HELP_DELETE_FOLDER = "Delete folder"
|
||||
HELP_SHOW_HIDE_FOLDER = "Show/hide folder"
|
||||
HELP_SHOW_HIDE_FOLDER_COUNT = "Show/hide unread messages counter"
|
||||
HELP_CHECK_FOR_NEW_MESSAGES = "Check/don't check for new messages"
|
||||
|
||||
[SETTINGS_ACCOUNTS]
|
||||
LEGEND_ACCOUNTS = "Accounts"
|
||||
|
|
|
|||
|
|
@ -557,7 +557,7 @@ TO_MANY_FOLDERS_DESC_1 = "You have too many folders!"
|
|||
TO_MANY_FOLDERS_DESC_2 = "We have shown only a part of them, to avoid performance problems."
|
||||
HELP_DELETE_FOLDER = "Delete folder"
|
||||
HELP_SHOW_HIDE_FOLDER = "Show/hide folder"
|
||||
HELP_SHOW_HIDE_FOLDER_COUNT = "Show/hide unread messages counter"
|
||||
HELP_CHECK_FOR_NEW_MESSAGES = "Check/don't check for new messages"
|
||||
|
||||
[SETTINGS_ACCOUNTS]
|
||||
LEGEND_ACCOUNTS = "Lista de cuentas"
|
||||
|
|
|
|||
|
|
@ -557,7 +557,7 @@ TO_MANY_FOLDERS_DESC_1 = "Vous avez trop de dossiers !"
|
|||
TO_MANY_FOLDERS_DESC_2 = "Seulement une partie d'entre eux ont été affichés afin de limiter les problèmes de performance."
|
||||
HELP_DELETE_FOLDER = "Supprimer le dossier"
|
||||
HELP_SHOW_HIDE_FOLDER = "Afficher/masquer le dossier"
|
||||
HELP_SHOW_HIDE_FOLDER_COUNT = "Afficher/masquer le nombre de messages dans le dossier"
|
||||
HELP_CHECK_FOR_NEW_MESSAGES = "Check/don't check for new messages"
|
||||
|
||||
[SETTINGS_ACCOUNTS]
|
||||
LEGEND_ACCOUNTS = "Liste des comptes"
|
||||
|
|
|
|||
|
|
@ -557,7 +557,7 @@ TO_MANY_FOLDERS_DESC_1 = "You have too many folders!"
|
|||
TO_MANY_FOLDERS_DESC_2 = "We have shown only a part of them, to avoid performance problems."
|
||||
HELP_DELETE_FOLDER = "Delete folder"
|
||||
HELP_SHOW_HIDE_FOLDER = "Show/hide folder"
|
||||
HELP_SHOW_HIDE_FOLDER_COUNT = "Show/hide unread messages counter"
|
||||
HELP_CHECK_FOR_NEW_MESSAGES = "Check/don't check for new messages"
|
||||
|
||||
[SETTINGS_ACCOUNTS]
|
||||
LEGEND_ACCOUNTS = "Fiók lista"
|
||||
|
|
|
|||
|
|
@ -557,7 +557,7 @@ TO_MANY_FOLDERS_DESC_1 = "You have too many folders!"
|
|||
TO_MANY_FOLDERS_DESC_2 = "We have shown only a part of them, to avoid performance problems."
|
||||
HELP_DELETE_FOLDER = "Delete folder"
|
||||
HELP_SHOW_HIDE_FOLDER = "Show/hide folder"
|
||||
HELP_SHOW_HIDE_FOLDER_COUNT = "Show/hide unread messages counter"
|
||||
HELP_CHECK_FOR_NEW_MESSAGES = "Check/don't check for new messages"
|
||||
|
||||
[SETTINGS_ACCOUNTS]
|
||||
LEGEND_ACCOUNTS = "Aðgangslisti"
|
||||
|
|
|
|||
|
|
@ -557,7 +557,7 @@ TO_MANY_FOLDERS_DESC_1 = "Ci sono troppe cartelle!"
|
|||
TO_MANY_FOLDERS_DESC_2 = "Vengono visualizzate solo una parte per evitare problemi di performance."
|
||||
HELP_DELETE_FOLDER = "Delete folder"
|
||||
HELP_SHOW_HIDE_FOLDER = "Show/hide folder"
|
||||
HELP_SHOW_HIDE_FOLDER_COUNT = "Show/hide unread messages counter"
|
||||
HELP_CHECK_FOR_NEW_MESSAGES = "Check/don't check for new messages"
|
||||
|
||||
[SETTINGS_ACCOUNTS]
|
||||
LEGEND_ACCOUNTS = "Lista degli account"
|
||||
|
|
|
|||
|
|
@ -557,7 +557,7 @@ TO_MANY_FOLDERS_DESC_1 = "You have too many folders!"
|
|||
TO_MANY_FOLDERS_DESC_2 = "We have shown only a part of them, to avoid performance problems."
|
||||
HELP_DELETE_FOLDER = "Delete folder"
|
||||
HELP_SHOW_HIDE_FOLDER = "Show/hide folder"
|
||||
HELP_SHOW_HIDE_FOLDER_COUNT = "Show/hide unread messages counter"
|
||||
HELP_CHECK_FOR_NEW_MESSAGES = "Check/don't check for new messages"
|
||||
|
||||
[SETTINGS_ACCOUNTS]
|
||||
LEGEND_ACCOUNTS = "Account List"
|
||||
|
|
|
|||
|
|
@ -554,7 +554,7 @@ TO_MANY_FOLDERS_DESC_1 = "You have too many folders!"
|
|||
TO_MANY_FOLDERS_DESC_2 = "We have shown only a part of them, to avoid performance problems."
|
||||
HELP_DELETE_FOLDER = "Delete folder"
|
||||
HELP_SHOW_HIDE_FOLDER = "Show/hide folder"
|
||||
HELP_SHOW_HIDE_FOLDER_COUNT = "Show/hide unread messages counter"
|
||||
HELP_CHECK_FOR_NEW_MESSAGES = "Check/don't check for new messages"
|
||||
|
||||
[SETTINGS_ACCOUNTS]
|
||||
LEGEND_ACCOUNTS = "계정 목록"
|
||||
|
|
|
|||
|
|
@ -557,7 +557,7 @@ TO_MANY_FOLDERS_DESC_1 = "Pas jus per daug katalogų!"
|
|||
TO_MANY_FOLDERS_DESC_2 = "Mes rodome ne visus juos, kad išvengti našumo problemų."
|
||||
HELP_DELETE_FOLDER = "Delete folder"
|
||||
HELP_SHOW_HIDE_FOLDER = "Show/hide folder"
|
||||
HELP_SHOW_HIDE_FOLDER_COUNT = "Show/hide unread messages counter"
|
||||
HELP_CHECK_FOR_NEW_MESSAGES = "Check/don't check for new messages"
|
||||
|
||||
[SETTINGS_ACCOUNTS]
|
||||
LEGEND_ACCOUNTS = "Paskyrų sąrašas"
|
||||
|
|
|
|||
|
|
@ -557,7 +557,7 @@ TO_MANY_FOLDERS_DESC_1 = "You have too many folders!"
|
|||
TO_MANY_FOLDERS_DESC_2 = "We have shown only a part of them, to avoid performance problems."
|
||||
HELP_DELETE_FOLDER = "Delete folder"
|
||||
HELP_SHOW_HIDE_FOLDER = "Show/hide folder"
|
||||
HELP_SHOW_HIDE_FOLDER_COUNT = "Show/hide unread messages counter"
|
||||
HELP_CHECK_FOR_NEW_MESSAGES = "Check/don't check for new messages"
|
||||
|
||||
[SETTINGS_ACCOUNTS]
|
||||
LEGEND_ACCOUNTS = "Kontu saraksts"
|
||||
|
|
|
|||
|
|
@ -557,7 +557,7 @@ TO_MANY_FOLDERS_DESC_1 = "U heeft te veel mappen!"
|
|||
TO_MANY_FOLDERS_DESC_2 = "Er worden er maar een deel weergegeven om prestatieproblemen te voorkomen."
|
||||
HELP_DELETE_FOLDER = "Verwijder map"
|
||||
HELP_SHOW_HIDE_FOLDER = "Toon/verberg map"
|
||||
HELP_SHOW_HIDE_FOLDER_COUNT = "Toon/verberg ongelezen teller"
|
||||
HELP_CHECK_FOR_NEW_MESSAGES = "Check/don't check for new messages"
|
||||
|
||||
[SETTINGS_ACCOUNTS]
|
||||
LEGEND_ACCOUNTS = "Account Lijst"
|
||||
|
|
|
|||
|
|
@ -556,7 +556,7 @@ TO_MANY_FOLDERS_DESC_1 = "You have too many folders!"
|
|||
TO_MANY_FOLDERS_DESC_2 = "We have shown only a part of them, to avoid performance problems."
|
||||
HELP_DELETE_FOLDER = "Delete folder"
|
||||
HELP_SHOW_HIDE_FOLDER = "Show/hide folder"
|
||||
HELP_SHOW_HIDE_FOLDER_COUNT = "Show/hide unread messages counter"
|
||||
HELP_CHECK_FOR_NEW_MESSAGES = "Check/don't check for new messages"
|
||||
|
||||
[SETTINGS_ACCOUNTS]
|
||||
LEGEND_ACCOUNTS = "Kontoer"
|
||||
|
|
|
|||
|
|
@ -557,7 +557,7 @@ TO_MANY_FOLDERS_DESC_1 = "Masz za dużo folderów!"
|
|||
TO_MANY_FOLDERS_DESC_2 = "Pokazaliśmy tylko część z nich aby uniknąć problemów z wydajnością."
|
||||
HELP_DELETE_FOLDER = "Usuń folder"
|
||||
HELP_SHOW_HIDE_FOLDER = "Pokaż/ukryj folder"
|
||||
HELP_SHOW_HIDE_FOLDER_COUNT = "Pokaż/ukryj liczbę wiadomoci w folderze"
|
||||
HELP_CHECK_FOR_NEW_MESSAGES = "Check/don't check for new messages"
|
||||
|
||||
[SETTINGS_ACCOUNTS]
|
||||
LEGEND_ACCOUNTS = "Lista kont"
|
||||
|
|
|
|||
|
|
@ -557,7 +557,7 @@ TO_MANY_FOLDERS_DESC_1 = "Você possui muitas pastas!"
|
|||
TO_MANY_FOLDERS_DESC_2 = "Mostraremos apenas uma parte delas, para evitar problemas de desempenho."
|
||||
HELP_DELETE_FOLDER = "Deletar pasta"
|
||||
HELP_SHOW_HIDE_FOLDER = "Mostrar/esconder pasta"
|
||||
HELP_SHOW_HIDE_FOLDER_COUNT = "Mostrar/esconder contagem de mensagens na pasta"
|
||||
HELP_CHECK_FOR_NEW_MESSAGES = "Check/don't check for new messages"
|
||||
|
||||
[SETTINGS_ACCOUNTS]
|
||||
LEGEND_ACCOUNTS = "Lista de contas"
|
||||
|
|
|
|||
|
|
@ -557,7 +557,7 @@ TO_MANY_FOLDERS_DESC_1 = "Você tem demasiadas pastas!"
|
|||
TO_MANY_FOLDERS_DESC_2 = "Apenas apresentámos parte delas, para evitar problemas de desempenho."
|
||||
HELP_DELETE_FOLDER = "Eliminar pasta"
|
||||
HELP_SHOW_HIDE_FOLDER = "Mostrar/ocultar pasta"
|
||||
HELP_SHOW_HIDE_FOLDER_COUNT = "Mostrar/ocultar contador de mensagens por pasta"
|
||||
HELP_CHECK_FOR_NEW_MESSAGES = "Check/don't check for new messages"
|
||||
|
||||
[SETTINGS_ACCOUNTS]
|
||||
LEGEND_ACCOUNTS = "Lista de contas"
|
||||
|
|
|
|||
|
|
@ -556,7 +556,7 @@ TO_MANY_FOLDERS_DESC_1 = "You have too many folders!"
|
|||
TO_MANY_FOLDERS_DESC_2 = "We have shown only a part of them, to avoid performance problems."
|
||||
HELP_DELETE_FOLDER = "Delete folder"
|
||||
HELP_SHOW_HIDE_FOLDER = "Show/hide folder"
|
||||
HELP_SHOW_HIDE_FOLDER_COUNT = "Show/hide unread messages counter"
|
||||
HELP_CHECK_FOR_NEW_MESSAGES = "Check/don't check for new messages"
|
||||
|
||||
[SETTINGS_ACCOUNTS]
|
||||
LEGEND_ACCOUNTS = "Lista de Conturi"
|
||||
|
|
|
|||
|
|
@ -557,7 +557,7 @@ TO_MANY_FOLDERS_DESC_1 = "У вас слишком много папок!"
|
|||
TO_MANY_FOLDERS_DESC_2 = "Мы показали только часть из них, чтобы избежать проблем с производительностью."
|
||||
HELP_DELETE_FOLDER = "Удалить папку"
|
||||
HELP_SHOW_HIDE_FOLDER = "Показывать/прятать папку"
|
||||
HELP_SHOW_HIDE_FOLDER_COUNT = "Показывать/прятать количество новых сообщений"
|
||||
HELP_CHECK_FOR_NEW_MESSAGES = "Проверять/не проверять новые сообщения"
|
||||
|
||||
[SETTINGS_ACCOUNTS]
|
||||
LEGEND_ACCOUNTS = "Список Аккаунтов"
|
||||
|
|
|
|||
|
|
@ -557,7 +557,7 @@ TO_MANY_FOLDERS_DESC_1 = "You have too many folders!"
|
|||
TO_MANY_FOLDERS_DESC_2 = "We have shown only a part of them, to avoid performance problems."
|
||||
HELP_DELETE_FOLDER = "Delete folder"
|
||||
HELP_SHOW_HIDE_FOLDER = "Show/hide folder"
|
||||
HELP_SHOW_HIDE_FOLDER_COUNT = "Show/hide unread messages counter"
|
||||
HELP_CHECK_FOR_NEW_MESSAGES = "Check/don't check for new messages"
|
||||
|
||||
[SETTINGS_ACCOUNTS]
|
||||
LEGEND_ACCOUNTS = "Zoznam účtov"
|
||||
|
|
|
|||
|
|
@ -557,7 +557,7 @@ TO_MANY_FOLDERS_DESC_1 = "You have too many folders!"
|
|||
TO_MANY_FOLDERS_DESC_2 = "We have shown only a part of them, to avoid performance problems."
|
||||
HELP_DELETE_FOLDER = "Delete folder"
|
||||
HELP_SHOW_HIDE_FOLDER = "Show/hide folder"
|
||||
HELP_SHOW_HIDE_FOLDER_COUNT = "Show/hide unread messages counter"
|
||||
HELP_CHECK_FOR_NEW_MESSAGES = "Check/don't check for new messages"
|
||||
|
||||
[SETTINGS_ACCOUNTS]
|
||||
LEGEND_ACCOUNTS = "Kontolista"
|
||||
|
|
|
|||
|
|
@ -555,7 +555,7 @@ TO_MANY_FOLDERS_DESC_1 = "You have too many folders!"
|
|||
TO_MANY_FOLDERS_DESC_2 = "We have shown only a part of them, to avoid performance problems."
|
||||
HELP_DELETE_FOLDER = "Delete folder"
|
||||
HELP_SHOW_HIDE_FOLDER = "Show/hide folder"
|
||||
HELP_SHOW_HIDE_FOLDER_COUNT = "Show/hide unread messages counter"
|
||||
HELP_CHECK_FOR_NEW_MESSAGES = "Check/don't check for new messages"
|
||||
|
||||
[SETTINGS_ACCOUNTS]
|
||||
LEGEND_ACCOUNTS = "Hesap Listesi"
|
||||
|
|
|
|||
|
|
@ -557,7 +557,7 @@ TO_MANY_FOLDERS_DESC_1 = "You have too many folders!"
|
|||
TO_MANY_FOLDERS_DESC_2 = "We have shown only a part of them, to avoid performance problems."
|
||||
HELP_DELETE_FOLDER = "Delete folder"
|
||||
HELP_SHOW_HIDE_FOLDER = "Show/hide folder"
|
||||
HELP_SHOW_HIDE_FOLDER_COUNT = "Show/hide unread messages counter"
|
||||
HELP_CHECK_FOR_NEW_MESSAGES = "Check/don't check for new messages"
|
||||
|
||||
[SETTINGS_ACCOUNTS]
|
||||
LEGEND_ACCOUNTS = "Список акаунтів"
|
||||
|
|
|
|||
|
|
@ -557,7 +557,7 @@ TO_MANY_FOLDERS_DESC_1 = "You have too many folders!"
|
|||
TO_MANY_FOLDERS_DESC_2 = "We have shown only a part of them, to avoid performance problems."
|
||||
HELP_DELETE_FOLDER = "Delete folder"
|
||||
HELP_SHOW_HIDE_FOLDER = "Show/hide folder"
|
||||
HELP_SHOW_HIDE_FOLDER_COUNT = "Show/hide unread messages counter"
|
||||
HELP_CHECK_FOR_NEW_MESSAGES = "Check/don't check for new messages"
|
||||
|
||||
[SETTINGS_ACCOUNTS]
|
||||
LEGEND_ACCOUNTS = "账户列表"
|
||||
|
|
|
|||
|
|
@ -557,7 +557,7 @@ TO_MANY_FOLDERS_DESC_1 = "You have too many folders!"
|
|||
TO_MANY_FOLDERS_DESC_2 = "We have shown only a part of them, to avoid performance problems."
|
||||
HELP_DELETE_FOLDER = "Delete folder"
|
||||
HELP_SHOW_HIDE_FOLDER = "Show/hide folder"
|
||||
HELP_SHOW_HIDE_FOLDER_COUNT = "Show/hide unread messages counter"
|
||||
HELP_CHECK_FOR_NEW_MESSAGES = "Check/don't check for new messages"
|
||||
|
||||
[SETTINGS_ACCOUNTS]
|
||||
LEGEND_ACCOUNTS = "帳戶列表"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue