mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-25 18:19:22 +03:00
Added: "You have too many folders!" description (#414)
This commit is contained in:
parent
71a141dbb4
commit
ec51bb0b9f
29 changed files with 66 additions and 12 deletions
|
|
@ -21,7 +21,6 @@
|
||||||
*/
|
*/
|
||||||
function FoldersUserSettings()
|
function FoldersUserSettings()
|
||||||
{
|
{
|
||||||
this.foldersListError = Data.foldersListError;
|
|
||||||
this.folderList = Data.folderList;
|
this.folderList = Data.folderList;
|
||||||
|
|
||||||
this.processText = ko.computed(function () {
|
this.processText = ko.computed(function () {
|
||||||
|
|
@ -105,7 +104,7 @@
|
||||||
Data.foldersRenaming(false);
|
Data.foldersRenaming(false);
|
||||||
if (Enums.StorageResultType.Success !== sResult || !oData || !oData.Result)
|
if (Enums.StorageResultType.Success !== sResult || !oData || !oData.Result)
|
||||||
{
|
{
|
||||||
Data.foldersListError(
|
Data.folderList.error(
|
||||||
oData && oData.ErrorCode ? Utils.getNotification(oData.ErrorCode) : Utils.i18n('NOTIFICATIONS/CANT_RENAME_FOLDER'));
|
oData && oData.ErrorCode ? Utils.getNotification(oData.ErrorCode) : Utils.i18n('NOTIFICATIONS/CANT_RENAME_FOLDER'));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -131,7 +130,7 @@
|
||||||
|
|
||||||
FoldersUserSettings.prototype.onShow = function ()
|
FoldersUserSettings.prototype.onShow = function ()
|
||||||
{
|
{
|
||||||
Data.foldersListError('');
|
Data.folderList.error('');
|
||||||
};
|
};
|
||||||
|
|
||||||
FoldersUserSettings.prototype.createFolder = function ()
|
FoldersUserSettings.prototype.createFolder = function ()
|
||||||
|
|
@ -176,7 +175,7 @@
|
||||||
Data.foldersDeleting(false);
|
Data.foldersDeleting(false);
|
||||||
if (Enums.StorageResultType.Success !== sResult || !oData || !oData.Result)
|
if (Enums.StorageResultType.Success !== sResult || !oData || !oData.Result)
|
||||||
{
|
{
|
||||||
Data.foldersListError(
|
Data.folderList.error(
|
||||||
oData && oData.ErrorCode ? Utils.getNotification(oData.ErrorCode) : Utils.i18n('NOTIFICATIONS/CANT_DELETE_FOLDER'));
|
oData && oData.ErrorCode ? Utils.getNotification(oData.ErrorCode) : Utils.i18n('NOTIFICATIONS/CANT_DELETE_FOLDER'));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -189,7 +188,7 @@
|
||||||
}
|
}
|
||||||
else if (0 < oFolderToRemove.privateMessageCountAll())
|
else if (0 < oFolderToRemove.privateMessageCountAll())
|
||||||
{
|
{
|
||||||
Data.foldersListError(Utils.getNotification(Enums.Notification.CantDeleteNonEmptyFolder));
|
Data.folderList.error(Utils.getNotification(Enums.Notification.CantDeleteNonEmptyFolder));
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -134,8 +134,8 @@
|
||||||
this.namespace = '';
|
this.namespace = '';
|
||||||
this.folderList = ko.observableArray([]);
|
this.folderList = ko.observableArray([]);
|
||||||
this.folderList.focused = ko.observable(false);
|
this.folderList.focused = ko.observable(false);
|
||||||
|
this.folderList.optimized = ko.observable(false);
|
||||||
this.foldersListError = ko.observable('');
|
this.folderList.error = ko.observable('');
|
||||||
|
|
||||||
this.foldersLoading = ko.observable(false);
|
this.foldersLoading = ko.observable(false);
|
||||||
this.foldersCreating = ko.observable(false);
|
this.foldersCreating = ko.observable(false);
|
||||||
|
|
|
||||||
|
|
@ -83,7 +83,7 @@
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
Data.foldersListError(
|
Data.folderList.error(
|
||||||
oData && oData.ErrorCode ? Utils.getNotification(oData.ErrorCode) : Utils.i18n('NOTIFICATIONS/CANT_CREATE_FOLDER'));
|
oData && oData.ErrorCode ? Utils.getNotification(oData.ErrorCode) : Utils.i18n('NOTIFICATIONS/CANT_CREATE_FOLDER'));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -15,9 +15,14 @@
|
||||||
|
|
||||||
<span class="i18n" data-i18n-text="SETTINGS_FOLDERS/BUTTON_SYSTEM"></span>
|
<span class="i18n" data-i18n-text="SETTINGS_FOLDERS/BUTTON_SYSTEM"></span>
|
||||||
</a>
|
</a>
|
||||||
<div class="alert folders-list-error" data-bind="visible: '' !== foldersListError()">
|
<div class="alert folders-list-error" data-bind="visible: folderList.optimized">
|
||||||
<button type="button" class="close" data-bind="click: function () { foldersListError(''); }">×</button>
|
<b class="i18n" data-i18n-text="SETTINGS_FOLDERS/TO_MANY_FOLDERS_DESC_1"></b>
|
||||||
<span data-bind="text: foldersListError"></span>
|
<br />
|
||||||
|
<span class="i18n" data-i18n-text="SETTINGS_FOLDERS/TO_MANY_FOLDERS_DESC_2"></span>
|
||||||
|
</div>
|
||||||
|
<div class="alert folders-list-error" data-bind="visible: '' !== folderList.error()">
|
||||||
|
<button type="button" class="close" data-bind="click: function () { folderList.error(''); }">×</button>
|
||||||
|
<span data-bind="text: folderList.error"></span>
|
||||||
</div>
|
</div>
|
||||||
<div class="process-place" data-bind="style: {'visibility': visibility }">
|
<div class="process-place" data-bind="style: {'visibility': visibility }">
|
||||||
<i class="icon-spinner animated"></i>
|
<i class="icon-spinner animated"></i>
|
||||||
|
|
|
||||||
|
|
@ -470,6 +470,8 @@ CREATING_PROCESS = "Creating a folder"
|
||||||
DELETING_PROCESS = "Deleting a folder"
|
DELETING_PROCESS = "Deleting a folder"
|
||||||
RENAMING_PROCESS = "Renaming a folder"
|
RENAMING_PROCESS = "Renaming a folder"
|
||||||
DELETING_ASK = "Are you sure?"
|
DELETING_ASK = "Are you sure?"
|
||||||
|
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."
|
||||||
|
|
||||||
[SETTINGS_ACCOUNTS]
|
[SETTINGS_ACCOUNTS]
|
||||||
LEGEND_ACCOUNTS = "Списък с акаунти"
|
LEGEND_ACCOUNTS = "Списък с акаунти"
|
||||||
|
|
|
||||||
|
|
@ -470,6 +470,8 @@ CREATING_PROCESS = "Ordner wird angelegt"
|
||||||
DELETING_PROCESS = "Ordner wird gelöscht"
|
DELETING_PROCESS = "Ordner wird gelöscht"
|
||||||
RENAMING_PROCESS = "Ordner wird umbenannt"
|
RENAMING_PROCESS = "Ordner wird umbenannt"
|
||||||
DELETING_ASK = "Sind Sie sicher?"
|
DELETING_ASK = "Sind Sie sicher?"
|
||||||
|
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."
|
||||||
|
|
||||||
[SETTINGS_ACCOUNTS]
|
[SETTINGS_ACCOUNTS]
|
||||||
LEGEND_ACCOUNTS = "Liste der Konten"
|
LEGEND_ACCOUNTS = "Liste der Konten"
|
||||||
|
|
|
||||||
|
|
@ -484,6 +484,8 @@ CREATING_PROCESS = "Creating a folder"
|
||||||
DELETING_PROCESS = "Deleting a folder"
|
DELETING_PROCESS = "Deleting a folder"
|
||||||
RENAMING_PROCESS = "Renaming a folder"
|
RENAMING_PROCESS = "Renaming a folder"
|
||||||
DELETING_ASK = "Are you sure?"
|
DELETING_ASK = "Are you sure?"
|
||||||
|
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."
|
||||||
|
|
||||||
[SETTINGS_ACCOUNTS]
|
[SETTINGS_ACCOUNTS]
|
||||||
LEGEND_ACCOUNTS = "Account List"
|
LEGEND_ACCOUNTS = "Account List"
|
||||||
|
|
|
||||||
|
|
@ -469,6 +469,8 @@ CREATING_PROCESS = "Creando carpeta"
|
||||||
DELETING_PROCESS = "Eliminado carpeta"
|
DELETING_PROCESS = "Eliminado carpeta"
|
||||||
RENAMING_PROCESS = "Renombrando carpeta"
|
RENAMING_PROCESS = "Renombrando carpeta"
|
||||||
DELETING_ASK = "¿Está usted seguro?"
|
DELETING_ASK = "¿Está usted seguro?"
|
||||||
|
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."
|
||||||
|
|
||||||
[SETTINGS_ACCOUNTS]
|
[SETTINGS_ACCOUNTS]
|
||||||
LEGEND_ACCOUNTS = "Lista de cuentas"
|
LEGEND_ACCOUNTS = "Lista de cuentas"
|
||||||
|
|
|
||||||
|
|
@ -469,6 +469,8 @@ CREATING_PROCESS = "Création d'un dossier"
|
||||||
DELETING_PROCESS = "Suppression d'un dossier"
|
DELETING_PROCESS = "Suppression d'un dossier"
|
||||||
RENAMING_PROCESS = "Renommer un dossier"
|
RENAMING_PROCESS = "Renommer un dossier"
|
||||||
DELETING_ASK = "Êtes-vous sûr ?"
|
DELETING_ASK = "Êtes-vous sûr ?"
|
||||||
|
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."
|
||||||
|
|
||||||
[SETTINGS_ACCOUNTS]
|
[SETTINGS_ACCOUNTS]
|
||||||
LEGEND_ACCOUNTS = "Liste des comptes"
|
LEGEND_ACCOUNTS = "Liste des comptes"
|
||||||
|
|
|
||||||
|
|
@ -468,7 +468,9 @@ LOADING_PROCESS = "Updating folder list"
|
||||||
CREATING_PROCESS = "Creating a folder"
|
CREATING_PROCESS = "Creating a folder"
|
||||||
DELETING_PROCESS = "Deleting a folder"
|
DELETING_PROCESS = "Deleting a folder"
|
||||||
RENAMING_PROCESS = "Renaming a folder"
|
RENAMING_PROCESS = "Renaming a folder"
|
||||||
DELETING_ASK = "Biztosak vagyunk benneAre you sure?"
|
DELETING_ASK = "Biztosak vagyunk benne?"
|
||||||
|
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."
|
||||||
|
|
||||||
[SETTINGS_ACCOUNTS]
|
[SETTINGS_ACCOUNTS]
|
||||||
LEGEND_ACCOUNTS = "Fiók lista"
|
LEGEND_ACCOUNTS = "Fiók lista"
|
||||||
|
|
|
||||||
|
|
@ -469,6 +469,8 @@ CREATING_PROCESS = "Bý til möppu"
|
||||||
DELETING_PROCESS = "Eyði möppu"
|
DELETING_PROCESS = "Eyði möppu"
|
||||||
RENAMING_PROCESS = "Endurnefna möppu"
|
RENAMING_PROCESS = "Endurnefna möppu"
|
||||||
DELETING_ASK = "Ertu viss?"
|
DELETING_ASK = "Ertu viss?"
|
||||||
|
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."
|
||||||
|
|
||||||
[SETTINGS_ACCOUNTS]
|
[SETTINGS_ACCOUNTS]
|
||||||
LEGEND_ACCOUNTS = "Aðgangslisti"
|
LEGEND_ACCOUNTS = "Aðgangslisti"
|
||||||
|
|
|
||||||
|
|
@ -470,6 +470,8 @@ CREATING_PROCESS = "Creazione della cartella..."
|
||||||
DELETING_PROCESS = "Cancellazione della cartella..."
|
DELETING_PROCESS = "Cancellazione della cartella..."
|
||||||
RENAMING_PROCESS = "Rinominazione della cartella..."
|
RENAMING_PROCESS = "Rinominazione della cartella..."
|
||||||
DELETING_ASK = "Ne sei sicuro?"
|
DELETING_ASK = "Ne sei sicuro?"
|
||||||
|
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."
|
||||||
|
|
||||||
[SETTINGS_ACCOUNTS]
|
[SETTINGS_ACCOUNTS]
|
||||||
LEGEND_ACCOUNTS = "Lista degli account"
|
LEGEND_ACCOUNTS = "Lista degli account"
|
||||||
|
|
|
||||||
|
|
@ -469,6 +469,8 @@ CREATING_PROCESS = "Creating a folder"
|
||||||
DELETING_PROCESS = "Deleting a folder"
|
DELETING_PROCESS = "Deleting a folder"
|
||||||
RENAMING_PROCESS = "Renaming a folder"
|
RENAMING_PROCESS = "Renaming a folder"
|
||||||
DELETING_ASK = "Are you sure?"
|
DELETING_ASK = "Are you sure?"
|
||||||
|
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."
|
||||||
|
|
||||||
[SETTINGS_ACCOUNTS]
|
[SETTINGS_ACCOUNTS]
|
||||||
LEGEND_ACCOUNTS = "Account List"
|
LEGEND_ACCOUNTS = "Account List"
|
||||||
|
|
|
||||||
|
|
@ -466,6 +466,8 @@ CREATING_PROCESS = "폴더를 생성하고 있습니다."
|
||||||
DELETING_PROCESS = "폴더를 삭제하고 있습니다."
|
DELETING_PROCESS = "폴더를 삭제하고 있습니다."
|
||||||
RENAMING_PROCESS = "폴더명을 변경하고 있습니다."
|
RENAMING_PROCESS = "폴더명을 변경하고 있습니다."
|
||||||
DELETING_ASK = "정말로 삭제하시겠습니까?"
|
DELETING_ASK = "정말로 삭제하시겠습니까?"
|
||||||
|
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."
|
||||||
|
|
||||||
[SETTINGS_ACCOUNTS]
|
[SETTINGS_ACCOUNTS]
|
||||||
LEGEND_ACCOUNTS = "계정 목록"
|
LEGEND_ACCOUNTS = "계정 목록"
|
||||||
|
|
|
||||||
|
|
@ -470,6 +470,8 @@ CREATING_PROCESS = "Kuriamas katalogas"
|
||||||
DELETING_PROCESS = "Šalinamas katalogas"
|
DELETING_PROCESS = "Šalinamas katalogas"
|
||||||
RENAMING_PROCESS = "Pervardinamas katalogas"
|
RENAMING_PROCESS = "Pervardinamas katalogas"
|
||||||
DELETING_ASK = "Ar Jūs įsitikinę?"
|
DELETING_ASK = "Ar Jūs įsitikinę?"
|
||||||
|
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."
|
||||||
|
|
||||||
[SETTINGS_ACCOUNTS]
|
[SETTINGS_ACCOUNTS]
|
||||||
LEGEND_ACCOUNTS = "Paskyrų sąrašas"
|
LEGEND_ACCOUNTS = "Paskyrų sąrašas"
|
||||||
|
|
|
||||||
|
|
@ -469,6 +469,8 @@ CREATING_PROCESS = "Izveidot mapi"
|
||||||
DELETING_PROCESS = "Dzēst mapi"
|
DELETING_PROCESS = "Dzēst mapi"
|
||||||
RENAMING_PROCESS = "Pārsaukt mapi"
|
RENAMING_PROCESS = "Pārsaukt mapi"
|
||||||
DELETING_ASK = "Tiešām?"
|
DELETING_ASK = "Tiešām?"
|
||||||
|
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."
|
||||||
|
|
||||||
[SETTINGS_ACCOUNTS]
|
[SETTINGS_ACCOUNTS]
|
||||||
LEGEND_ACCOUNTS = "Kontu saraksts"
|
LEGEND_ACCOUNTS = "Kontu saraksts"
|
||||||
|
|
|
||||||
|
|
@ -469,6 +469,8 @@ CREATING_PROCESS = "Map aan het aanmaken"
|
||||||
DELETING_PROCESS = "Map aan het wissen"
|
DELETING_PROCESS = "Map aan het wissen"
|
||||||
RENAMING_PROCESS = "Map hernoemen"
|
RENAMING_PROCESS = "Map hernoemen"
|
||||||
DELETING_ASK = "Weet u het zeker?"
|
DELETING_ASK = "Weet u het zeker?"
|
||||||
|
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."
|
||||||
|
|
||||||
[SETTINGS_ACCOUNTS]
|
[SETTINGS_ACCOUNTS]
|
||||||
LEGEND_ACCOUNTS = "Account Lijst"
|
LEGEND_ACCOUNTS = "Account Lijst"
|
||||||
|
|
|
||||||
|
|
@ -468,6 +468,8 @@ CREATING_PROCESS = "Oppretter mappen"
|
||||||
DELETING_PROCESS = "Slette en mappe"
|
DELETING_PROCESS = "Slette en mappe"
|
||||||
RENAMING_PROCESS = "Endre navn på en mappe"
|
RENAMING_PROCESS = "Endre navn på en mappe"
|
||||||
DELETING_ASK = "Er du sikker?"
|
DELETING_ASK = "Er du sikker?"
|
||||||
|
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."
|
||||||
|
|
||||||
[SETTINGS_ACCOUNTS]
|
[SETTINGS_ACCOUNTS]
|
||||||
LEGEND_ACCOUNTS = "Kontoer"
|
LEGEND_ACCOUNTS = "Kontoer"
|
||||||
|
|
|
||||||
|
|
@ -484,6 +484,8 @@ CREATING_PROCESS = "Tworzenie folderu"
|
||||||
DELETING_PROCESS = "Usuwanie folderu"
|
DELETING_PROCESS = "Usuwanie folderu"
|
||||||
RENAMING_PROCESS = "Zmiana nazwy folderu"
|
RENAMING_PROCESS = "Zmiana nazwy folderu"
|
||||||
DELETING_ASK = "Czy na pewno usunąć?"
|
DELETING_ASK = "Czy na pewno usunąć?"
|
||||||
|
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."
|
||||||
|
|
||||||
[SETTINGS_ACCOUNTS]
|
[SETTINGS_ACCOUNTS]
|
||||||
LEGEND_ACCOUNTS = "Lista kont"
|
LEGEND_ACCOUNTS = "Lista kont"
|
||||||
|
|
|
||||||
|
|
@ -470,6 +470,8 @@ CREATING_PROCESS = "Criando a pasta"
|
||||||
DELETING_PROCESS = "Excluindo a pasta"
|
DELETING_PROCESS = "Excluindo a pasta"
|
||||||
RENAMING_PROCESS = "Renomeando a pasta"
|
RENAMING_PROCESS = "Renomeando a pasta"
|
||||||
DELETING_ASK = "Você tem certeza?"
|
DELETING_ASK = "Você tem certeza?"
|
||||||
|
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."
|
||||||
|
|
||||||
[SETTINGS_ACCOUNTS]
|
[SETTINGS_ACCOUNTS]
|
||||||
LEGEND_ACCOUNTS = "Lista de contas"
|
LEGEND_ACCOUNTS = "Lista de contas"
|
||||||
|
|
|
||||||
|
|
@ -469,6 +469,8 @@ CREATING_PROCESS = "Criar a pasta"
|
||||||
DELETING_PROCESS = "Excluir a pasta"
|
DELETING_PROCESS = "Excluir a pasta"
|
||||||
RENAMING_PROCESS = "Renomear a pasta"
|
RENAMING_PROCESS = "Renomear a pasta"
|
||||||
DELETING_ASK = "Você tem certeza?"
|
DELETING_ASK = "Você tem certeza?"
|
||||||
|
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."
|
||||||
|
|
||||||
[SETTINGS_ACCOUNTS]
|
[SETTINGS_ACCOUNTS]
|
||||||
LEGEND_ACCOUNTS = "Lista de contas"
|
LEGEND_ACCOUNTS = "Lista de contas"
|
||||||
|
|
|
||||||
|
|
@ -468,6 +468,8 @@ CREATING_PROCESS = "Crearea dosarului..."
|
||||||
DELETING_PROCESS = "Șterg dosarul..."
|
DELETING_PROCESS = "Șterg dosarul..."
|
||||||
RENAMING_PROCESS = "Redenumesc dosarul"
|
RENAMING_PROCESS = "Redenumesc dosarul"
|
||||||
DELETING_ASK = "Sunteți sigur?"
|
DELETING_ASK = "Sunteți sigur?"
|
||||||
|
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."
|
||||||
|
|
||||||
[SETTINGS_ACCOUNTS]
|
[SETTINGS_ACCOUNTS]
|
||||||
LEGEND_ACCOUNTS = "Lista de Conturi"
|
LEGEND_ACCOUNTS = "Lista de Conturi"
|
||||||
|
|
|
||||||
|
|
@ -469,6 +469,8 @@ CREATING_PROCESS = "Cоздание папки"
|
||||||
DELETING_PROCESS = "Удаление папки"
|
DELETING_PROCESS = "Удаление папки"
|
||||||
RENAMING_PROCESS = "Переименование папки"
|
RENAMING_PROCESS = "Переименование папки"
|
||||||
DELETING_ASK = "Точно?"
|
DELETING_ASK = "Точно?"
|
||||||
|
TO_MANY_FOLDERS_DESC_1 = "У вас слишком много папок!"
|
||||||
|
TO_MANY_FOLDERS_DESC_2 = "Мы показали только часть из них, чтобы избежать проблем с производительностью."
|
||||||
|
|
||||||
[SETTINGS_ACCOUNTS]
|
[SETTINGS_ACCOUNTS]
|
||||||
LEGEND_ACCOUNTS = "Список Аккаунтов"
|
LEGEND_ACCOUNTS = "Список Аккаунтов"
|
||||||
|
|
|
||||||
|
|
@ -469,6 +469,8 @@ CREATING_PROCESS = "Vytváram priečinok"
|
||||||
DELETING_PROCESS = "Odstraňujem priečinok"
|
DELETING_PROCESS = "Odstraňujem priečinok"
|
||||||
RENAMING_PROCESS = "Premenovávam prečinok"
|
RENAMING_PROCESS = "Premenovávam prečinok"
|
||||||
DELETING_ASK = "Ste si istý?"
|
DELETING_ASK = "Ste si istý?"
|
||||||
|
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."
|
||||||
|
|
||||||
[SETTINGS_ACCOUNTS]
|
[SETTINGS_ACCOUNTS]
|
||||||
LEGEND_ACCOUNTS = "Zoznam účtov"
|
LEGEND_ACCOUNTS = "Zoznam účtov"
|
||||||
|
|
|
||||||
|
|
@ -484,6 +484,8 @@ CREATING_PROCESS = "Skapar en mapp"
|
||||||
DELETING_PROCESS = "Ta bort en mapp"
|
DELETING_PROCESS = "Ta bort en mapp"
|
||||||
RENAMING_PROCESS = "Byter namn på en mapp"
|
RENAMING_PROCESS = "Byter namn på en mapp"
|
||||||
DELETING_ASK = "Är du säker?"
|
DELETING_ASK = "Är du säker?"
|
||||||
|
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."
|
||||||
|
|
||||||
[SETTINGS_ACCOUNTS]
|
[SETTINGS_ACCOUNTS]
|
||||||
LEGEND_ACCOUNTS = "Kontolista"
|
LEGEND_ACCOUNTS = "Kontolista"
|
||||||
|
|
|
||||||
|
|
@ -468,6 +468,8 @@ CREATING_PROCESS = "Klasör oluşturuluyor"
|
||||||
DELETING_PROCESS = "Klasör siliniyor"
|
DELETING_PROCESS = "Klasör siliniyor"
|
||||||
RENAMING_PROCESS = "Klasör değiştiriliyor"
|
RENAMING_PROCESS = "Klasör değiştiriliyor"
|
||||||
DELETING_ASK = "Eminmisiniz?"
|
DELETING_ASK = "Eminmisiniz?"
|
||||||
|
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."
|
||||||
|
|
||||||
[SETTINGS_ACCOUNTS]
|
[SETTINGS_ACCOUNTS]
|
||||||
LEGEND_ACCOUNTS = "Hesap Listesi"
|
LEGEND_ACCOUNTS = "Hesap Listesi"
|
||||||
|
|
|
||||||
|
|
@ -469,6 +469,8 @@ CREATING_PROCESS = "Створення теки"
|
||||||
DELETING_PROCESS = "Видалення теки"
|
DELETING_PROCESS = "Видалення теки"
|
||||||
RENAMING_PROCESS = "Перейменування теки"
|
RENAMING_PROCESS = "Перейменування теки"
|
||||||
DELETING_ASK = "Впевнені?"
|
DELETING_ASK = "Впевнені?"
|
||||||
|
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."
|
||||||
|
|
||||||
[SETTINGS_ACCOUNTS]
|
[SETTINGS_ACCOUNTS]
|
||||||
LEGEND_ACCOUNTS = "Список акаунтів"
|
LEGEND_ACCOUNTS = "Список акаунтів"
|
||||||
|
|
|
||||||
|
|
@ -469,6 +469,8 @@ CREATING_PROCESS = "文件夹创建中"
|
||||||
DELETING_PROCESS = "文件夹删除中"
|
DELETING_PROCESS = "文件夹删除中"
|
||||||
RENAMING_PROCESS = "文件夹重命名"
|
RENAMING_PROCESS = "文件夹重命名"
|
||||||
DELETING_ASK = "确定?"
|
DELETING_ASK = "确定?"
|
||||||
|
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."
|
||||||
|
|
||||||
[SETTINGS_ACCOUNTS]
|
[SETTINGS_ACCOUNTS]
|
||||||
LEGEND_ACCOUNTS = "账户列表"
|
LEGEND_ACCOUNTS = "账户列表"
|
||||||
|
|
|
||||||
|
|
@ -470,6 +470,8 @@ CREATING_PROCESS = "資料夾創建中"
|
||||||
DELETING_PROCESS = "資料夾刪除中"
|
DELETING_PROCESS = "資料夾刪除中"
|
||||||
RENAMING_PROCESS = "資料夾重命名"
|
RENAMING_PROCESS = "資料夾重命名"
|
||||||
DELETING_ASK = "確定?"
|
DELETING_ASK = "確定?"
|
||||||
|
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."
|
||||||
|
|
||||||
[SETTINGS_ACCOUNTS]
|
[SETTINGS_ACCOUNTS]
|
||||||
LEGEND_ACCOUNTS = "帳戶列表"
|
LEGEND_ACCOUNTS = "帳戶列表"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue