The branch, master has been updated via b2bd74469d6e283cb90cf5f1b0392e021e7faeb5 (commit) from e83f630458b1158f7b1c3d6f7e62a634e42efa0d (commit)
- Log ----------------------------------------------------------------- commit b2bd74469d6e283cb90cf5f1b0392e021e7faeb5 Author: Michal Čihař mcihar@suse.cz Date: Wed Aug 10 13:56:11 2011 +0200
Wrap long line
-----------------------------------------------------------------------
Summary of changes: js/messages.php | 10 ++++++++-- 1 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/js/messages.php b/js/messages.php index 54d1fe5..a631840 100644 --- a/js/messages.php +++ b/js/messages.php @@ -293,9 +293,15 @@ echo "if ($.datepicker) {\n"; /* l10n: Display text for calendar close link */ PMA_printJsValue("$.datepicker.regional['']['closeText']", __('Done')); /* l10n: Display text for previous month link in calendar */ -PMA_printJsValue("$.datepicker.regional['']['prevText']", _pgettext('Previous month', 'Prev')); +PMA_printJsValue( + "$.datepicker.regional['']['prevText']", + _pgettext('Previous month', 'Prev') +); /* l10n: Display text for next month link in calendar */ -PMA_printJsValue("$.datepicker.regional['']['nextText']", _pgettext('Next month', 'Next')); +PMA_printJsValue( + "$.datepicker.regional['']['nextText']", + _pgettext('Next month', 'Next') +); /* l10n: Display text for current month link in calendar */ PMA_printJsValue("$.datepicker.regional['']['currentText']", __('Today')); PMA_printJsValue("$.datepicker.regional['']['monthNames']",
hooks/post-receive