Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for long titles #355

Merged
merged 4 commits into from
Apr 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 7 additions & 7 deletions inc/languages/english/myalerts.lang.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

$l['myalerts_modal_title'] = 'Recent Alerts';
$l['myalerts_modal_display_alerts'] = 'View Alerts';
$l['myalerts_modal_unread_only'] = 'Unread Only';
$l['myalerts_modal_unread_only'] = 'Show Unread Only';
$l['myalerts_modal_delete_read'] = 'Delete Read Alerts';
$l['myalerts_modal_delete_all'] = 'Delete All Alerts';
$l['myalerts_modal_delete_read_confirm'] = 'Really delete all read alerts? This cannot be undone!';
Expand All @@ -43,13 +43,13 @@

$l['myalerts_no_alerts'] = 'No alerts to display';
$l['myalerts_rep'] = '{1} modified your reputation.';
$l['myalerts_pm'] = '{1} sent you a new private message titled <strong>"{2}"</strong>.';
$l['myalerts_pm'] = '{1} sent you a new private message titled<br><strong>"{2}"</strong>';
$l['myalerts_buddylist'] = '{1} added you to their buddy list.';
$l['myalerts_quoted'] = '{1} quoted you in <strong>"{2}"</strong>.';
$l['myalerts_post_threadauthor'] = '{1} replied to your thread <strong>"{2}"</strong>. There may be more posts after this.';
$l['myalerts_subscribed_thread'] = '{1} replied to your subscribed thread <strong>"{2}"</strong>.';
$l['myalerts_rated_threadauthor'] = '{1} rated your thread <strong>"{2}"</strong>.';
$l['myalerts_voted_threadauthor'] = '{1} voted in your poll in <strong>"{2}"</strong>.';
$l['myalerts_quoted'] = '{1} quoted you in<br><strong>"{2}"</strong>';
$l['myalerts_post_threadauthor'] = '{1} replied to your thread<br><strong>"{2}"</strong> (<i>There may be more posts after this.</i>)';
$l['myalerts_subscribed_thread'] = '{1} replied to your subscribed thread<br><strong>"{2}"</strong>';
$l['myalerts_rated_threadauthor'] = '{1} rated your thread<br><strong>"{2}"</strong>';
$l['myalerts_voted_threadauthor'] = '{1} voted in your poll in<br><strong>"{2}"</strong>';

$l['myalerts_setting_rep'] = 'Receive alert for reputation?';
$l['myalerts_setting_pm'] = 'Receive alert for Private Message (PM)?';
Expand Down
2 changes: 1 addition & 1 deletion inc/plugins/MybbStuff/MyAlerts/stylesheets/alerts.css
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ ul.panel_links a.myalerts {
}

#myalerts_alerts_modal {
width: 450px;
width: 460px;
}

#myalerts_modal_right_btns {
Expand Down