Changeset 9a5762a in github
- Timestamp:
- Aug 13, 2008 1:00:35 PM (5 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- 1b5deba
- Parents:
- 7c2d30b
- Location:
- program
- Files:
-
- 5 edited
-
js/app.js (modified) (1 diff)
-
localization/en_GB/messages.inc (modified) (1 diff)
-
localization/en_US/messages.inc (modified) (1 diff)
-
localization/pl_PL/messages.inc (modified) (1 diff)
-
steps/mail/sendmail.inc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
program/js/app.js
rd224551 r9a5762a 2207 2207 2208 2208 2209 this.sent_successfully = function( msg)2209 this.sent_successfully = function(type, msg) 2210 2210 { 2211 2211 this.list_mailbox(); 2212 this.display_message(msg, 'confirmation', true);2212 this.display_message(msg, type, true); 2213 2213 } 2214 2214 -
program/localization/en_GB/messages.inc
rf5e9367 r9a5762a 41 41 $messages['contactnotfound'] = 'The requested contact was not found'; 42 42 $messages['sendingfailed'] = 'Failed to send message'; 43 $messages['errorsavingsent'] = 'An error occured while saving sent message'; 43 44 $messages['errorsaving'] = 'An error occured while saving'; 44 45 $messages['errormoving'] = 'Could not move the message'; -
program/localization/en_US/messages.inc
r134eafd r9a5762a 41 41 $messages['contactnotfound'] = 'The requested contact was not found'; 42 42 $messages['sendingfailed'] = 'Failed to send message'; 43 $messages['errorsavingsent'] = 'An error occured while saving sent message'; 43 44 $messages['errorsaving'] = 'An error occured while saving'; 44 45 $messages['errormoving'] = 'Could not move the message'; -
program/localization/pl_PL/messages.inc
r6eaac22 r9a5762a 52 52 $messages['contactnotfound'] = 'Szukany kontakt nie zostaÅ odnaleziony'; 53 53 $messages['sendingfailed'] = 'Nie udaÅo siÄ wysÅaÄ wiadomoÅci!'; 54 $messages['errorsaving'] = 'BÅÄ 54 $messages['errorsavingsent'] = 'WystÄ 55 piÅ bÅÄ 56 d podczas zapisu wysÅanej wiadomoÅci!'; 57 $messages['errorsaving'] = 'WystÄ 58 piÅ bÅÄ 55 59 d podczas zapisu!'; 56 60 $messages['errormoving'] = 'Nie moÅŒna przenieÅÄ wybranej wiadomoÅci!'; -
program/steps/mail/sendmail.inc
rfaf8766 r9a5762a 378 378 'message' => "Could not save message in $store_target"), TRUE, FALSE); 379 379 380 $OUTPUT->show_message('errorsaving', 'error'); 381 $OUTPUT->send('iframe'); 380 if ($savedraft) { 381 $OUTPUT->show_message('errorsaving', 'error'); 382 $OUTPUT->send('iframe'); 383 } 382 384 } 383 385 … … 435 437 436 438 rcmail_compose_cleanup(); 437 $OUTPUT->command('sent_successfully', rcube_label('messagesent')); 439 440 if ($store_folder && !$saved) 441 $OUTPUT->command('sent_successfully', 'error', rcube_label('errorsavingsent')); 442 else 443 $OUTPUT->command('sent_successfully', 'confirmation', rcube_label('messagesent')); 438 444 $OUTPUT->send('iframe'); 439 445 }
Note: See TracChangeset
for help on using the changeset viewer.
