| Anonymous | Login | Signup for a new account | 2010-09-04 12:10 MDT |
| Main | My View | View Issues | Change Log | Roadmap | Docs |
| Viewing Issue Simple Details [ Jump to Notes ] | [ << ] [ >> ] | [ View Advanced ] [ Issue History ] [ Print ] | |||||
| ID | Category | Severity | Reproducibility | Date Submitted | Last Update | ||
| 0000058 | [WoW Raid Manager (WRM)] Localization Issue | minor | always | 2008-09-17 15:02 | 2008-10-08 14:22 | ||
| Reporter | crocodille | View Status | public | ||||
| Assigned To | douglasw | ||||||
| Priority | normal | Resolution | fixed | ||||
| Status | closed | Product Version | HEAD | ||||
| Summary | 0000058: The Month and Year tag in calendar view are not shown in set locale | ||||||
| Description |
In the upper right corner of the calendar view, in front of the year and month selector, the month and year tags are not shown in the currently set locale. To correct there should be two more entries in the $phprlang array: $phprlang['year'] = 'Year'; $phprlang['month'] = 'Month'; You than have to change the calender.php to: 78: - $yearSelect = '<select name="year">'; + $yearSelect = $phprlang['year'] . ': <select name="year">'; 85: - $monthSelect = '<select name="month">'; + $monthSelect = $phprlang['month'] . ': <select name="month">'; and the templates/SpiffyJr/calendar.htm to: 12: - <td>Month: {month_select}</td> + <td>{month_select}</td> 15: - <td>Year: {year_select}</td> + <td>{year_select}</td> I attached a patch file to play with ;) Just create a new branch, and apply the patch with e.g. git-am. |
||||||
| Additional Information | |||||||
| Tags | No tags attached. | ||||||
| Attached Files |
|
||||||
|
|
|||||||
| There are no notes attached to this issue. |
| Copyright © 2000 - 2008 Mantis Group |