summaryrefslogtreecommitdiff
path: root/roundcubemail/program/steps
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-08-03 12:31:38 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-08-03 12:31:38 +0000
commitc5adb8a7071f15a5a1e953b9149241cdc8373733 (patch)
tree6661828decd38ea754e1961c9d0ee3bfdaa8b4da /roundcubemail/program/steps
parent7578e428cab62ff1d0c90e7c1d479bf498c0f1bd (diff)
- Add "loading" messages for contacts copying and groups assignment
git-svn-id: https://svn.roundcube.net/trunk@5014 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/steps')
-rw-r--r--roundcubemail/program/steps/addressbook/func.inc4
-rw-r--r--roundcubemail/program/steps/addressbook/show.inc1
2 files changed, 3 insertions, 2 deletions
diff --git a/roundcubemail/program/steps/addressbook/func.inc b/roundcubemail/program/steps/addressbook/func.inc
index 7fb1e2c29..4de463710 100644
--- a/roundcubemail/program/steps/addressbook/func.inc
+++ b/roundcubemail/program/steps/addressbook/func.inc
@@ -224,7 +224,7 @@ function rcmail_directory_list($attrib)
$OUTPUT->set_env('contactgroups', $jsdata);
$OUTPUT->add_gui_object('folderlist', $attrib['id']);
// add some labels to client
- $OUTPUT->add_label('deletegroupconfirm', 'groupdeleting');
+ $OUTPUT->add_label('deletegroupconfirm', 'groupdeleting', 'addingmember', 'removingmember');
return html::tag('ul', $attrib, $out, html::$common_attrib);
}
@@ -281,7 +281,7 @@ function rcmail_contacts_list($attrib)
$OUTPUT->include_script('list.js');
// add some labels to client
- $OUTPUT->add_label('deletecontactconfirm');
+ $OUTPUT->add_label('deletecontactconfirm', 'copyingcontact');
return $out;
}
diff --git a/roundcubemail/program/steps/addressbook/show.inc b/roundcubemail/program/steps/addressbook/show.inc
index 729cb3487..9ef83e9b7 100644
--- a/roundcubemail/program/steps/addressbook/show.inc
+++ b/roundcubemail/program/steps/addressbook/show.inc
@@ -201,6 +201,7 @@ function rcmail_contact_record_groups($contact_id)
$form_end = '</form>';
$RCMAIL->output->add_gui_object('editform', 'form');
+ $RCMAIL->output->add_label('addingmember', 'removingmember');
return $form_start . $table->show() . $form_end;
}